/* =========================================
   index.css — 메인 페이지 전용 스타일
   슬라이더 스타일은 sliders.css 에서 관리합니다.
   ========================================= */

/* sliders.css 는 head.php 자동 감지로 로드되므로
   여기서는 index.php 고유 스타일만 작성합니다.   */

/* 평형안내 카드 (unit.css 공용 컴포넌트) */
@import url('/assets/css/pages/unit.css');

/* =========================================
   LANDSCAPE SECTION — 조경 설계
   ========================================= */
.ls-feature {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 0;
  align-items: stretch;
  margin-top: 40px;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.ls-feature__text {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ls-en {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: var(--fw-light);
  color: var(--color-text-light);
  line-height: 1.1;
  letter-spacing: 0.08em;
  margin-bottom: 28px;
}

.ls-dl dt {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  margin-bottom: 10px;
}

.ls-dl dd {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  line-height: 1.9;
}

.ls-feature__img {
  display: block;
}

.ls-feature__img img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

/* 어반클러스터 소개 */
.ls-cluster-intro {
  text-align: center;
  margin: 64px 0 36px;
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
  line-height: 2;
}

.ls-cluster-en {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: var(--fw-light);
  color: var(--color-text-light);
  letter-spacing: 0.12em;
  margin: 6px 0;
}

/* 4카드 그리드 */
.ls-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.ls-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 0.7px solid var(--color-border);
  transition: box-shadow 0.3s, transform 0.3s;
}

.ls-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.ls-card picture img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.ls-card__body {
  padding: 20px 24px 26px;
}

.ls-num {
  font-style: normal;
  color: var(--color-accent);
  font-weight: var(--fw-bold);
  margin-right: 2px;
}

/* 주의 문구 */
.ls-notice {
  font-size: var(--fs-xs);
  color: var(--color-text-light);
  text-align: center;
  margin-top: 32px;
}

/* 모바일 */
@media screen and (max-width: 768px) {
  .ls-feature {
    grid-template-columns: 1fr;
  }
  .ls-feature__text {
    padding: 32px 24px;
  }
  .ls-feature__img img {
    min-height: 220px;
    max-height: 280px;
  }
  .ls-cluster-intro {
    margin: 44px 0 24px;
  }
  .ls-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 480px) {
  .ls-feature__text {
    padding: 24px 20px;
  }
}
