/* ================================
   ADJUST-360 Feature Section
   (기존 CSS와 충돌 방지를 위해 범위 한정)
=================================== */

.adjust-360-feature {
  --accent: #203c92;
  --accent-2: #2d4478;
  --ink: #000;
  --muted: #666;
  --bg-soft: #f8fafc;
}

.adjust-360-specs .spec-hero__media {
  text-align: center; /* 가운데 정렬 */
  margin: 20px auto;
}

.adjust-360-specs .spec-hero__media img {
  max-width: 700px; /* 이미지 최대 너비 제한 */
  width: 100%; /* 반응형 비율 유지 */
  height: auto; /* 세로 비율 자동 유지 */
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  object-fit: contain;
}

/* ==========================
   Specs Highlights (4-카드 그리드)
========================== */
.adjust-360-specs .specs-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)); /* 데스크톱: 4개 */
  gap: 20px;
  margin: 28px 20px;
}

.adjust-360-specs .specs-card {
  background: #fff;
  border: 1px solid #e6e8ee;
  border-radius: 14px;
  padding: 20px 18px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.adjust-360-specs .specs-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
}

.adjust-360-specs .specs-card__icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
  filter: grayscale(0); /* 필요 시 아이콘 톤 조절 */
}

.adjust-360-specs .specs-card h4 {
  font-size: 16px;
  line-height: 24px;
  margin: 4px 0 2px;
  font-weight: 700;
  color: #111;
}
.adjust-360-specs .specs-card p {
  font-size: 14px;
  line-height: 22px;
  color: #555;
  margin: 0;
}

/* 반응형: 태블릿 2열, 모바일 1열 */
@media (max-width: 1024px) {
  .adjust-360-specs .specs-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .adjust-360-specs .specs-highlights {
    grid-template-columns: 1fr;
  }
}

/* Hero */
.adjust-360-feature .feature-hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 20px 20px 10px;
}
.adjust-360-feature .feature-hero__copy .h3_tit {
  margin-top: 0;
}
.adjust-360-feature .feature-hero__lead {
  font-size: 18px;
  line-height: 30px;
  color: var(--muted);
  margin: 10px 0 18px;
}
.adjust-360-feature .feature-spec-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.adjust-360-feature .feature-spec-tags li {
  display: inline-block;
  padding: 8px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  font-size: 14px;
  color: #444;
  background: #fff;
}
.adjust-360-feature .feature-hero__media {
  margin: 0;
  text-align: right;
}
.adjust-360-feature .feature-hero__media img {
  width: 100%;
  max-width: 520px;
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(32, 60, 146, 0.08);
  object-fit: cover;
}

/* Grid */
.adjust-360-feature .feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 45px 20px 10px;
  list-style: none;
  padding: 0;
}
.adjust-360-feature .feature-card {
  background: #fff;
  border: 1px solid #e6e8ee;
  border-radius: 14px;
  padding: 22px 22px 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.adjust-360-feature .feature-card:hover {
  transform: translateY(-4px);
  border-color: #dbe1f1;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
}
.adjust-360-feature .feature-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.adjust-360-feature .feature-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.adjust-360-feature .feature-title {
  font-size: 18px;
  line-height: 26px;
  color: var(--ink);
  font-weight: 600;
  margin: 0;
}
.adjust-360-feature .feature-num {
  color: var(--accent);
  font-weight: 800;
  margin-right: 6px;
}
.adjust-360-feature .feature-desc {
  color: #444;
  line-height: 26px;
  margin: 6px 0 8px;
  min-height: 52px;
}
.adjust-360-feature .feature-bullets {
  margin: 0 0 12px 18px;
  color: #666;
  line-height: 24px;
  font-size: 15px;
}
.adjust-360-feature .feature-media {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-soft);
}
.adjust-360-feature .feature-media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

/* Scenes strip */
.adjust-360-feature .feature-scenes {
  margin: 40px 20px 20px;
}
.adjust-360-feature .feature-scenes__title {
  font-size: 20px;
  color: var(--ink);
  margin: 0 0 14px;
  position: relative;
  padding-left: 10px;
}
.adjust-360-feature .feature-scenes__title:before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 4px;
  height: 18px;
  background: var(--accent);
  border-radius: 2px;
}
.adjust-360-feature .feature-scenes__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.adjust-360-feature .feature-scenes__list li {
  background: #fff;
  border: 1px solid #e6e8ee;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
}
.adjust-360-feature .feature-scenes__list img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}
.adjust-360-feature .feature-scenes__list span {
  display: block;
  padding: 8px 6px 10px;
  font-size: 14px;
  color: #333;
}

/* Specs table tweak (재활용 + 여백 조정) */
.adjust-360-feature .feature-specs {
  margin: 28px 20px 10px;
}

/* --------- Responsive --------- */

/* mobile ≤ 690px */
@media screen and (max-width: 690px) {
  .adjust-360-feature .feature-hero {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .adjust-360-feature .feature-hero__media {
    text-align: left;
  }
  .adjust-360-feature .feature-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 25px 0 0;
  }
  .adjust-360-feature .feature-media img {
    height: 180px;
  }
  .adjust-360-feature .feature-scenes__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* tablet 691~899px */
@media screen and (min-width: 691px) and (max-width: 899px) {
  .adjust-360-feature .feature-hero {
    grid-template-columns: 1fr 1fr;
  }
  .adjust-360-feature .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* desktop mid 900~1599px */
@media screen and (min-width: 900px) and (max-width: 1599px) {
  .adjust-360-feature .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
