/* ── 입지환경 페이지 전용 스타일 ── */

/* ── 히어로 ── */
.loc-hero {
  background: linear-gradient(160deg, #07090e 0%, #0d1b2a 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: clamp(80px, 12vw, 130px) 20px clamp(60px, 8vw, 100px);
}

.loc-hero-label {
  font-size: 0.75rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(201, 169, 110, 0.9);
  margin-bottom: 16px;
}

.loc-hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: 3px;
  margin-bottom: 14px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.loc-hero-sub {
  font-size: clamp(0.88rem, 1.6vw, 1.05rem);
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 1.5px;
  font-weight: 300;
}

/* ── 핵심 입지 칩 마퀴 ── */
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.loc-chips {
  background: #07090e;
  padding: 20px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.loc-chips:hover .loc-chips-track {
  animation-play-state: paused;
}

.loc-chips-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.loc-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  border-radius: 30px;
  border: 1px solid rgba(201, 169, 110, 0.4);
  color: rgba(201, 169, 110, 0.9);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── 입지 이미지 섹션 ── */
.loc-image-section {
  background: #0d1117;
  padding: clamp(48px, 6vw, 80px) clamp(16px, 5vw, 60px);
}

.loc-image-section img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.5);
}

/* ── 카테고리 그리드 섹션 ── */
.loc-info-section {
  background: #0d1117;
  padding: clamp(60px, 8vw, 96px) clamp(16px, 5vw, 60px);
}

.loc-info-header {
  text-align: center;
  margin-bottom: clamp(44px, 6vw, 72px);
}

.loc-info-header-label {
  font-size: 0.72rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 12px;
}

.loc-info-header-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
}

/* 2×2 그리드 */
.loc-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(14px, 2vw, 28px);
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .loc-info-grid {
    grid-template-columns: 1fr;
  }
}

/* 카드 */
.loc-info-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: clamp(22px, 2.5vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color 0.25s, background 0.25s;
}

.loc-info-card:hover {
  border-color: rgba(201, 169, 110, 0.3);
  background: rgba(255, 255, 255, 0.06);
}

/* 카드 헤더 */
.loc-info-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.loc-info-icon {
  font-size: 1.6rem;
  line-height: 1;
  flex-shrink: 0;
}

.loc-info-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
}

/* 리스트 */
.loc-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.loc-info-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.loc-info-item-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.loc-info-item-name {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.45;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.loc-info-item-name::before {
  content: '–';
  color: #c9a96e;
  flex-shrink: 0;
}

.loc-info-item-sub {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.5;
  padding-left: 14px;
}

.loc-info-badge {
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 700;
  color: #c9a96e;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.22);
  border-radius: 20px;
  padding: 2px 9px;
  white-space: nowrap;
  align-self: flex-start;
  margin-top: 2px;
}

/* ── 지도 섹션 ── */
.loc-map-section {
  background: #07090e;
  padding: clamp(60px, 8vw, 96px) clamp(16px, 5vw, 60px);
}

.loc-map-header {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.loc-map-header-label {
  font-size: 0.72rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 12px;
}

.loc-map-header-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.loc-map-header-sub {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.4);
}

.loc-map-wrap {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.loc-map-wrap iframe {
  display: block;
  width: 100%;
  height: clamp(320px, 45vw, 520px);
  border: none;
}
