/* 오시는 길 서브페이지 전용 스타일 */

/* ── 상단: 주소 카드 + 연락처 리스트 ── */
.vst__top {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 24px;
  margin-bottom: 28px;
  align-items: stretch;
}

.vst__addr {
  display: flex;
  flex-direction: column;
  padding: 36px;
  border-radius: 20px;
  /* 드론샷을 그대로 보여주되 균일하게 살짝 어둡게 처리해 흰 글자 가독성 확보 */
  background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url('images/hero/batch_드론샷-1.jpeg');
  background-size: cover, cover;
  background-position: center, center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.vst__addr::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}
.vst__addr-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.85;
}
.vst__addr-title {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 10px 0 8px;
  line-height: 1.3;
}
.vst__addr-sub {
  font-size: 15px;
  opacity: 0.85;
  margin: 0 0 28px;
  flex: 1;
}
.vst__addr-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  position: relative;
}
.vst__cta-primary {
  background: #fff;
  color: #1d3868;
  border: 0;
}
.vst__cta-primary:hover {
  background: #f7f8fa;
}
.vst__cta-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.vst__cta-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* 노안 사용자 가독성 — 라벨 16px / 번호 34px 로 대폭 확대 */
.vst__contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vst__contact li {
  padding: 22px 26px;
  border-radius: 16px;
  background: var(--color-background-elevated-normal);
  border: 1px solid var(--color-line-normal-normal);
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  justify-content: center;
}
.vst__contact-lab {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-label-neutral);
  letter-spacing: -0.01em;
  line-height: 1.4;
}
.vst__contact li strong {
  font-size: 34px;
  font-weight: 800;
  color: var(--color-label-strong);
  letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}

/* ── 카카오맵 임베드 ── */
.vst__kakaomap-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-2);
  margin-bottom: 32px;
  background: var(--color-background-alternative);
}
.vst__kakaomap {
  width: 100%;
  height: 100%;
  transform: scale(1.18);
  transform-origin: center center;
}
/* 카카오 RoughMap 이 지도 아래에 자동 삽입하는 주소·전화 정보 블록 숨김 */
.vst__kakaomap .roughmap_lebel,
.vst__kakaomap [class*="roughmap_lebel"] { display: none !important; }
.vst__kakaomap-status {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 32px;
  text-align: center;
  background: var(--color-background-alternative);
  color: var(--color-label-alternative);
  font-size: 15px;
}
.vst__kakaomap-status strong {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-label-strong);
  letter-spacing: -0.02em;
}
.vst__kakaomap-status code {
  background: #FDECEA;
  color: #E94335;
  padding: 2px 8px;
  border-radius: 6px;
  font-family: "SF Mono", Menlo, monospace;
  font-size: 13px;
  font-weight: 600;
}
.vst__kakaomap-chip {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 14px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  z-index: 10;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  pointer-events: none;
}
.vst__kakaomap-debug {
  position: absolute;
  bottom: 14px;
  left: 14px;
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  z-index: 10;
  font-variant-numeric: tabular-nums;
  pointer-events: none;
}

/* ── (구) 지도 placeholder — 사용 안 함, 보존만 ── */
.vst__map {
  position: relative;
  aspect-ratio: 16 / 7;
  border-radius: 20px;
  overflow: hidden;
  background: #E8EDE3;
  margin-bottom: 32px;
  box-shadow: var(--shadow-2);
}
.vst__map svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.vst__map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-100% - 8px));
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #E94335;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(233, 67, 53, 0.45);
  z-index: 2;
}
.vst__map-pin::after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid #E94335;
}
.vst__map-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.vst__map-info strong {
  font-size: 16px;
  font-weight: 800;
  color: var(--color-label-strong);
  letter-spacing: -0.02em;
}
.vst__map-info span {
  font-size: 13px;
  color: var(--color-label-neutral);
}
.vst__map-chip {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 14px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  z-index: 2;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

/* ── 교통편 3카드 ── */
.vst__transit {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.vst__card {
  padding: 28px 24px;
  border-radius: 18px;
  background: var(--color-background-elevated-normal);
  border: 1px solid var(--color-line-normal-normal);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vst__card-ico {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  flex-shrink: 0;
}

.vst__card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--color-label-strong);
  letter-spacing: -0.03em;
  margin: 0;
}

.vst__card p {
  font-size: 15px;
  color: var(--color-label-neutral);
  line-height: 1.6;
  margin: 0;
  letter-spacing: -0.01em;
}
.vst__card p strong {
  color: var(--color-label-strong);
  font-weight: 700;
}

.vst__card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}
.vst__tag {
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--color-primary-bg);
  color: var(--color-primary-strong);
  font-size: 13px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.vst__card-stats {
  display: flex;
  gap: 28px;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--color-line-normal-alternative);
}
.vst__card-stats div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.vst__card-stats span {
  font-size: 30px;
  font-weight: 800;
  color: var(--color-label-strong);
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.vst__card-stats em {
  font-size: 13px;
  font-style: normal;
  color: var(--color-label-alternative);
  font-weight: 600;
}

/* ── 다크 모드 보정 ── */
[data-dark="true"] .vst__contact li,
[data-dark="true"] .vst__card {
  background: var(--color-background-elevated-normal);
  border-color: var(--color-line-normal-normal);
}
[data-dark="true"] .vst__map-info {
  background: rgba(40, 40, 45, 0.92);
}
[data-dark="true"] .vst__map-info strong { color: #fff; }
[data-dark="true"] .vst__map-info span { color: rgba(255, 255, 255, 0.75); }

/* ── 반응형 ── */
@media (max-width: 980px) {
  .vst__top { grid-template-columns: 1fr; }
  .vst__transit { grid-template-columns: 1fr; }
  .vst__map { aspect-ratio: 4 / 3; }
}
@media (max-width: 720px) {
  .vst__addr { padding: 28px; }
  .vst__addr-title { font-size: 24px; }
  .vst__contact li strong { font-size: 19px; }
  .vst__card { padding: 24px 20px; }
}

/* ===== 모바일(480px 이하) 최적화 — 오시는 길 ===== */
@media (max-width: 480px) {
  .vst__addr { padding: 20px; }
  .vst__addr::before { display: none; }
  .vst__addr-title,
  .vst__title { font-size: 20px; }
  .vst__contact li strong { font-size: 24px; }
  .vst__kakaomap-wrap { aspect-ratio: 4 / 3; }
  .vst__kakaomap { transform: none; }
  .vst__card-stats { flex-direction: column; gap: 12px; }
  .vst__card-stats span { font-size: 24px; }
  .vst__card h3 { font-size: 18px; }
  .vst__card-ico { width: 44px; height: 44px; }
  .vst__addr-cta { flex-direction: column; }
  .vst__addr-cta > a,
  .vst__addr-cta > button,
  .vst__addr-cta .wt-btn--lg { flex: 1 1 100%; width: 100%; }
}
