/* =========================================
   LANDSCAPE SECTION — 조경 설계
   ========================================= */
.ls-feature {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 0;
  box-shadow: var(--shadow-md);
}

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

.ls-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  line-height: 1.25;
  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);
  font-weight: 500;
  color: var(--color-text);
  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);
  font-size: var(--fs-base);
  font-weight: 500;
  line-height: 2;
}

.ls-cluster-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--color-text-muted);
  letter-spacing: 0.12em;
  display: block;
}

/* 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: 1px 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: 4px;
}

/* 주의 문구 */
.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;
  }
}
