.sales-support {
    width: 100%;
    height: auto;
}

.sales-support .container {
    width: 100%;
    height: auto;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 100px;
    margin-bottom: 100px;
}

.sales-support .container .wrap {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.sales-support .entry {
  position: relative;
  width: 100%;
  height: auto;
}

.sales-support .entry-header {
  width: 100%;
  height: auto;
  background: var(--primary);
  padding-top: 15px;
  padding-bottom: 15px;
}

.sales-support .entry-header .menu-list {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-left: 80px;
}

.sales-support .entry-header .menu-item {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: var(--color-0);
  font-family: var(--font-regular);
  text-decoration: none;
  transition: all 0.3s ease;
}

.sales-support .entry-header .menu-item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  width: fit-content;
  margin-left: 6px;
  margin-right: 6px;
}

.sales-support .entry-header a.menu-item:hover {
  text-decoration: underline;
}

.sales-support .entry-wrap {
  width: 100%;
  height: 280px;
  position: relative;
  overflow: hidden;
}

.sales-support .entry-wrap .media {
  width: 100%;
  height: 100%;
  background: #32313d;
}

.sales-support .entry-wrap .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  user-select: none;
  appearance: none;
  opacity: 0.4;
}

.sales-support .entry-wrap .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: fit-content;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.sales-support .entry-wrap .content .title {
  font-weight: 800;
  font-size: 56px;
  line-height: 1.2;
  letter-spacing: 0.4px;
  color: var(--color-0);
  text-align: left;
  font-family: var(--font-bold);
  margin-bottom: 0;
  margin-top: 0;
}

.sales-support .entry-wrap .content .sub-title {
  font-size: 17px;
  line-height: 1.2;
  font-weight: 600;
  color: var(--color-0);
  font-family: var(--font-regular);
  margin-top: 0;
  margin-bottom: 10px;
}

.sales-support .card-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
}

.sales-support .card-item {
  width: calc(50% - 20px);
  height: auto;
  position: relative;
  overflow: hidden;
  margin-right: 40px;
  margin-bottom: 40px;
  text-decoration: none;
}

.sales-support .card-item:hover .media img {
  transform: scale(1.1);
}

.sales-support .card-item:nth-child(2n) {
  margin-right: 0;
}

.sales-support .card-item .media {
  width: 100%;
  height: 280px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: black;
}

.sales-support .card-item .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  user-select: none;
  appearance: none;
  transition: all 0.3s ease-in;
  opacity: 0.7;
}

.sales-support .card-item .content {
  width: 100%;
  height: auto;
  margin-top: 20px;
}

.sales-support .card-item .content .text {
  font-size: 22px;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--color-9);
  font-family: var(--font-regular);
}