/* NOL pSEO Content Page Styles */
/* Figma spec: page 1920px, content 1280px (x:320–1600), left col 400px, right col ~830px */
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body { overflow-x: hidden; }

body {
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ─── Layout Container (1280px) ──────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================================
   Hero + Search Bar (Figma: image 1280×580, rounded, search overlaid)
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  margin-top: 40px;
  border-radius: 16px;
  overflow: hidden;                /* clip image corners */
  margin-bottom: 0;                /* 검색바 겹침용 여백 제거 */
}

.hero__image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.hero__overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.05) 0%,
    rgba(0,0,0,0.35) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 60px 0;
  pointer-events: none;
}

.hero__title {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.35;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  text-align: center;
}

/* ─── Search Bar (hero 바깥, 데스크톱에서 negative margin으로 겹침) ──── */
.search-bar {
  position: relative;
  margin: -96px 40px 40px;          /* 히어로 위로 올려 절반 겹침 */
  z-index: 10;
  display: flex;
  align-items: center;
  background: #fff;
  border: 2px solid #4A6CF7;
  border-radius: 12px;
  height: 72px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.search-bar__field {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  height: 100%;
  border-right: 1px solid #e0e0e0;
  white-space: nowrap;
}
.search-bar__field--keyword { flex: 2; }
.search-bar__field--date    { flex: 1.5; }
.search-bar__field--guest   { flex: 1; border-right: none; }

.search-bar__chip {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 6px 12px;
  border: 1px solid #4A6CF7; border-radius: 20px;
  font-size: 13px; font-weight: 600; color: #4A6CF7;
  background: #fff; flex-shrink: 0;
}
.search-bar__chip-x { font-size: 15px; line-height: 1; opacity: 0.6; }
.search-bar__placeholder { font-size: 15px; color: #999; }

.search-bar__field-icon { width: 18px; height: 18px; flex-shrink: 0; color: #666; }
.search-bar__field-label { font-size: 14px; color: #1a1a1a; font-weight: 500; }
.search-bar__change-btn {
  margin-left: auto; padding: 6px 14px;
  border: 1px solid #ddd; border-radius: 6px;
  font-size: 13px; color: #666; background: #fff; flex-shrink: 0;
}
.search-bar__change-btn:hover { border-color: #999; color: #333; }

.search-bar__btn {
  background: #4A6CF7; color: #fff; border: none;
  padding: 0 32px; height: 100%; border-radius: 0 10px 10px 0;
  font-size: 16px; font-weight: 700; cursor: pointer;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.search-bar__btn:hover { background: #3b5de7; }

.search-bar__input {
  flex: 1; border: none; outline: none;
  font-size: 15px; color: #1a1a1a;
  font-family: inherit; background: transparent;
  min-width: 0;
}
.search-bar__input::placeholder { color: #999; }

/* ─── Modal ──────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1000;
  align-items: center; justify-content: center;
}
.modal-overlay.is-open {
  display: flex;
}
.modal {
  background: #fff; border-radius: 16px;
  width: 400px; max-width: 90vw;
  padding: 28px; box-shadow: 0 8px 40px rgba(0,0,0,0.15);
}
.modal__header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
}
.modal__title { font-size: 18px; font-weight: 700; }
.modal__close {
  width: 32px; height: 32px; border: none; background: none;
  font-size: 22px; color: #666; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.modal__body {
  display: flex; flex-direction: column; gap: 16px;
  margin-bottom: 24px;
}
.modal__label {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 15px; font-weight: 600; color: #333;
}
.modal__input {
  padding: 10px 14px; border: 1px solid #ddd; border-radius: 8px;
  font-size: 15px; font-family: inherit; color: #1a1a1a;
  width: 200px;
}
.modal__counter {
  display: flex; align-items: center; gap: 16px;
}
.modal__counter-btn {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid #ddd; background: #fff;
  font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #333;
}
.modal__counter-btn:hover { background: #f5f5f5; }
.modal__counter-value {
  font-size: 18px; font-weight: 700; min-width: 24px; text-align: center;
}
.modal__apply {
  width: 100%; height: 52px; border: none; border-radius: 10px;
  background: #4A6CF7; color: #fff;
  font-size: 16px; font-weight: 700; cursor: pointer;
  font-family: inherit;
}
.modal__apply:hover { background: #3b5de7; }

/* Info modal (단순 안내용 — 헤더/입력 없음) */
.modal--info { padding: 24px; }
.modal--info .modal__title {
  font-size: 17px; font-weight: 700; color: #1a1a1a;
  margin-bottom: 10px;
}
.modal__text {
  font-size: 14px; line-height: 1.6; color: #555;
  margin-bottom: 20px;
}

/* Sort tab help button ("?" 아이콘) */
.sort-tab__help {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 11px; font-weight: 700;
  margin-left: 6px;
  cursor: pointer;
  line-height: 1;
  flex-shrink: 0;
  transition: background 0.15s;
  user-select: none;
}
.sort-tab__help:hover { background: rgba(255, 255, 255, 0.4); }
.sort-tab__help:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }

/* ============================================================
   Two-Column Layout  (Figma: left 400 + gap 50 + right ~830)
   ============================================================ */
.content-layout {
  display: flex;
  gap: 50px;
  margin-top: 56px;
  align-items: flex-start;
}

/* ─── LEFT Column: Sidebar (400px) ───────────────── */
.sidebar {
  width: 400px;
  flex-shrink: 0;
}

.sidebar__map {
  display: block; position: relative;
  width: 100%; height: 220px;
  border-radius: 20px; overflow: hidden;
  margin-bottom: 8px;
  background: #e1e4ea;
}
.sidebar__map-img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.sidebar__map-label {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: #4A6CF7; color: #fff;
  text-align: center; font-size: 16px; font-weight: 700;
  padding: 14px 32px; border-radius: 8px;
  white-space: nowrap;
}
.sidebar__map:hover .sidebar__map-label { background: #3b5de7; }

.sidebar__filter-group {
  padding: 20px 0;
  border-top: 1px solid #e8e8e8;
}
.sidebar__filter-title {
  font-size: 15px; font-weight: 700; color: #1a1a1a;
  margin-bottom: 14px;
}
.sidebar__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.sidebar__chip {
  display: inline-block; padding: 8px 16px;
  border: 1px solid #ddd; border-radius: 20px;
  font-size: 14px; color: #333; background: #fff;
  transition: all 0.15s;
}
.sidebar__chip:hover { border-color: #1a1a1a; color: #1a1a1a; background: #f5f5f5; }

/* ─── RIGHT Column: Main Content (~830px) ────────── */
.main-content {
  flex: 1;
  min-width: 0;
}

/* ─── Content Header (right column top) ──────────── */
.content-header {
  padding-bottom: 20px;
}
.content-header__title {
  font-size: 30px; font-weight: 700; color: #1a1a1a;
  margin-bottom: 14px; line-height: 1.35;
}
.content-header__desc {
  font-size: 16px; color: #555; line-height: 1.75;
}

/* ─── Sort Tabs ──────────────────────────────────── */
.sort-tabs {
  display: flex;
  border: 1px solid #c5cff7;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 8px;
}
.sort-tab {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  height: 64px;
  font-size: 16px; font-weight: 500; color: #4A6CF7;
  border-right: 1px solid #c5cff7;
  background: #fff;
  transition: all 0.2s; text-decoration: none;
}
.sort-tab:last-child { border-right: none; }
.sort-tab:hover { color: #1a1a1a; background: #f8f8f8; }
.sort-tab--active {
  color: #fff; font-weight: 700;
  background: #4A6CF7;
  border-right-color: #4A6CF7;
}
.sort-tab--active:hover {
  color: #fff; background: #3b5de7;
}

/* ─── Accommodation List ─────────────────────────── */
.accommodation-list { margin-top: 0; }

.accommodation-card {
  display: flex; flex-wrap: wrap; gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid #e8e8e8;
}
.accommodation-card:last-child { border-bottom: none; }

.accommodation-card__link {
  display: flex; flex: 1; gap: 20px;
  text-decoration: none; color: inherit;
  border-radius: 12px; padding: 12px;
  margin: -12px;
  transition: background 0.15s;
}
.accommodation-card__link:hover {
  background: rgba(53, 74, 255, 0.05);
}
.accommodation-card__link:hover .accommodation-card__cta {
  opacity: 1;
}

.accommodation-card__rank {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  width: 32px; height: 32px; border-radius: 50%;
  background: #4A6CF7; color: #fff;
  font-size: 15px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.accommodation-card__image-wrap {
  position: relative; flex: 1; min-width: 0; aspect-ratio: 4/3;
  border-radius: 12px; overflow: hidden;
}
.accommodation-card__image { width: 100%; height: 100%; object-fit: cover; }

.accommodation-card__badges {
  position: absolute; top: 8px; left: 52px;
  display: flex; gap: 4px; flex-wrap: wrap;
}
.accommodation-card__badge {
  padding: 4px 8px; border-radius: 4px;
  font-size: 12px; font-weight: 600; color: #fff;
}
.accommodation-card__badge--primary { background: #ff3478; }
.accommodation-card__badge--accent  { background: #5b5ff6; }

.accommodation-card__body {
  flex: 1; min-width: 0;
  display: flex; flex-direction: column; gap: 4px;
}
.accommodation-card__category { font-size: 13px; color: #999; font-weight: 500; margin-bottom: 2px; }
.accommodation-card__name    { font-size: 18px; font-weight: 700; color: #1a1a1a; margin-bottom: 4px; }
.accommodation-card__name a:hover { text-decoration: underline; }
.accommodation-card__location {
  font-size: 14px; color: #1a1a1a; margin-bottom: 4px;
  display: flex; align-items: center; gap: 4px;
}
.accommodation-card__location-icon { flex-shrink: 0; color: #1a1a1a; }

.accommodation-card__review { display: flex; align-items: center; gap: 5px; margin-bottom: 4px; }
.accommodation-card__review-star  { color: #ffb800; font-size: 15px; }
.accommodation-card__review-score { font-size: 15px; font-weight: 700; color: #1a1a1a; }
.accommodation-card__review-count { font-size: 14px; color: #888; }

.accommodation-card__tags {
  display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 6px;
}
.accommodation-card__tag {
  padding: 3px 8px; border-radius: 4px;
  font-size: 12px; font-weight: 600; color: #4A6CF7;
  border: 1px solid #c5cff7; background: #fff;
}
.accommodation-card__tag--accent { color: #ff3478; border-color: #ff3478; }

.accommodation-card__price-section {
  display: flex; flex-direction: column; gap: 8px; margin-top: auto;
  align-items: flex-end;
}
.accommodation-card__price-block {
  display: flex; flex-direction: column; gap: 2px;
}
.accommodation-card__price-row {
  display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap;
  justify-content: flex-end;
}
.accommodation-card__price-badge {
  font-size: 12px; color: #1a1a1a; font-weight: 700;
  border: 1px solid #ddd; border-radius: 4px;
  padding: 2px 6px; background: #fff;
}
.accommodation-card__price-info          { font-size: 13px; color: #999; flex-basis: 100%; text-align: right; }
.accommodation-card__price-original      { font-size: 14px; color: #bbb; text-decoration: line-through; }
.accommodation-card__price-discount-rate { font-size: 18px; font-weight: 800; color: #ff3478; }
.accommodation-card__price-current       { font-size: 20px; font-weight: 800; color: #1a1a1a; }
.accommodation-card__price-unit          { font-size: 14px; color: #1a1a1a; font-weight: 500; }
.accommodation-card__price-check         { color: #ff3478; font-weight: 600; font-size: 15px; }

.accommodation-card__desc-box {
  background: #f5f5f5; border-radius: 8px;
  padding: 10px 14px; margin-top: 6px;
  display: flex; flex-direction: column; gap: 2px;
}
.accommodation-card__desc-text {
  font-size: 13px; color: #666; line-height: 1.5;
}

.accommodation-card__cta {
  display: inline-block; margin-top: 8px; margin-left: auto;
  padding: 10px 24px; border-radius: 8px;
  font-size: 14px; font-weight: 600; color: #fff;
  background: #4A6CF7; text-align: center;
  opacity: 0; transition: opacity 0.15s;
}

/* ─── "모두 보러가기" Button ─────────────────────── */
.view-all-btn {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 72px; margin-top: 8px; margin-bottom: 40px;
  border: 1px solid #c5cff7; border-radius: 12px;
  font-size: 16px; font-weight: 600; color: #4A6CF7;
  background: #fff; transition: background 0.15s;
}
.view-all-btn:hover { background: #f0f3ff; }

/* ─── Per-Card Review Summary ────────────────────── */
.review-summary {
  display: flex; gap: 28px;
  background: #fafafa; border-radius: 12px;
  padding: 24px 28px; margin-top: 4px; width: 100%;
}
.review-summary__eval { flex: 1; min-width: 0; max-width: 50%; max-height: 180px; overflow: hidden; }
.review-summary__ai   { flex: 1; min-width: 0; }
.review-summary__eval:only-child { max-width: 50%; }
.review-summary__heading { font-size: 15px; font-weight: 700; color: #1a1a1a; margin-bottom: 16px; }

.review-summary__bars { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.review-bar { display: flex; align-items: center; gap: 20px; }
.review-bar__label { font-size: 14px; color: #333; white-space: nowrap; width: 130px; flex-shrink: 0; }
.review-bar__track  { flex: 1; height: 8px; background: #e8e8e8; border-radius: 4px; overflow: hidden; max-width: 200px; }
.review-bar__fill   { height: 100%; background: #FFD666; border-radius: 4px; min-width: 8px; }
.review-bar__count  { font-size: 14px; font-weight: 700; color: #1a1a1a; min-width: 36px; text-align: right; }

.review-summary__text {
  font-size: 14px; color: #555; line-height: 1.75;
  display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical;
  overflow: hidden; text-overflow: ellipsis;
}

/* ============================================================
   Full-Width Sections (below the 2-column area)
   ============================================================ */

/* ─── Price Tier Recommendations ─────────────────── */
/* Figma: 3 cards visible, each ~400px, with left/right arrows */
.price-tier {
  padding: 40px 0;
}

.price-tier__title {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 24px;
}

.review-top-section__desc {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin: -16px 0 24px;
}

.price-tier__carousel {
  position: relative;
  overflow: hidden;
}

.price-tier__track {
  display: flex;
  gap: 16px;
  transition: transform 0.35s ease;
}

.price-card {
  flex: 0 0 calc(50% - 8px);          /* 2 visible */
  display: flex;
  flex-direction: row;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.15s;
}
.price-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.price-card__image {
  flex: 0 0 45%; padding: 0;
}
.price-card__image img {
  width: 100%; height: 100%;
  object-fit: cover; border-radius: 0;
}

.price-card__body {
  flex: 1; min-width: 0;
  padding: 16px;
  display: flex; flex-direction: column;
}
.price-card__category {
  font-size: 12px; color: #999; font-weight: 500;
}
.price-card__name {
  font-size: 15px; font-weight: 700; color: #1a1a1a;
  margin: 2px 0 4px; line-height: 1.3;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.price-card__location {
  font-size: 12px; color: #888;
  display: flex; align-items: center; gap: 3px;
  margin-bottom: 4px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.price-card__location svg { flex-shrink: 0; color: #aaa; }

.price-card__review {
  display: flex; align-items: center; gap: 4px;
  margin-bottom: 6px;
}
.price-card__review-star  { color: #ffb800; font-size: 13px; }
.price-card__review-score { font-size: 13px; font-weight: 700; color: #1a1a1a; }
.price-card__review-count { font-size: 12px; color: #888; }

.price-card__badges {
  display: flex; gap: 4px; flex-wrap: wrap; margin-bottom: 4px;
}
.price-card__badge {
  font-size: 11px; font-weight: 600; color: #ff3478;
  padding: 2px 6px; border: 1px solid #ff3478; border-radius: 3px;
}

.price-card__price {
  margin-top: auto;
  display: flex; flex-direction: column; gap: 2px;
  align-items: flex-end;
}
.price-card__price-line {
  display: flex; align-items: baseline; gap: 6px;
  justify-content: flex-end; flex-wrap: wrap;
}
.price-card__price-info {
  font-size: 12px; color: #999;
  flex-basis: 100%; text-align: right;
}
.price-card__price-rate {
  font-size: 14px; font-weight: 700; color: #ff3478;
}
.price-card__price-original {
  font-size: 13px; color: #bbb; text-decoration: line-through;
}
.price-card__price-badge-text {
  font-size: 11px; color: #1a1a1a; font-weight: 700;
  border: 1px solid #ddd; border-radius: 4px;
  padding: 1px 5px; margin-right: 4px;
}
.price-card__price-amount {
  font-size: 18px; font-weight: 800; color: #1a1a1a;
}

.price-card__dayuse {
  font-size: 12px; color: #888;
  margin-top: 4px;
}

/* Tier arrows */
.price-tier__arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px; border-radius: 50%;
  background: #fff; border: 1px solid #ddd;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  cursor: pointer; display: flex;
  align-items: center; justify-content: center; z-index: 2;
}
.price-tier__arrow:hover { background: #f5f5f5; }
.price-tier__arrow--prev { left: 0; }
.price-tier__arrow--next { right: 0; }
.price-tier__arrow svg { color: #333; }

/* ─── Section Title (공통) ───────────────────────── */
.section-divider {
  border-top: 1px solid #e8e8e8;
  padding-top: 40px;
}
.section-title {
  font-size: 22px; font-weight: 700; color: #1a1a1a;
  margin-bottom: 8px;
}
.section-desc {
  font-size: 15px; color: #666; line-height: 1.6;
  margin-bottom: 24px;
}

/* ─── Promotion Banner Carousel ──────────────────── */
/* Figma: 1280px wide, 2 banners visible (632×254 each, 16px gap) */
.promo-section {
  padding: 40px 0;
  border-top: 1px solid #e8e8e8;
}

.promo-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.promo-carousel__track {
  display: flex;
  gap: 16px;
  transition: transform 0.4s ease;
}

.promo-carousel__slide {
  flex: 0 0 calc(50% - 8px);     /* 2 visible at a time */
  display: block;
  border-radius: 12px;
  overflow: hidden;
}

.promo-carousel__slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 1264 / 509;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.promo-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.15s;
}

.promo-carousel__arrow:hover {
  background: #fff;
}

.promo-carousel__arrow--prev { left: 8px; }
.promo-carousel__arrow--next { right: 8px; }

.promo-carousel__arrow svg {
  width: 20px;
  height: 20px;
  color: #333;
}

/* ─── Insights Section ────────────────────────────── */
/* Figma: grey bg, 2-column grid of 8 cards */
.insights-section {
  background: #f5f5f5;
  padding: 60px 0;
}

.insights-section__title {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 28px;
}

.insights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.insight-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border-radius: 12px;
  padding: 28px 24px;
}

.insight-card__icon {
  font-size: 36px;
  line-height: 1;
  flex-shrink: 0;
}

.insight-card__body {
  flex: 1;
  min-width: 0;
}

.insight-card__title {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.insight-card__desc {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

/* ─── FAQ Section ────────────────────────────────── */
.faq-section { padding: 60px 0; }
.faq-section__title { font-size: 24px; font-weight: 700; color: #1a1a1a; margin-bottom: 32px; }
.faq-item { border-bottom: 1px solid #e8e8e8; }
.faq-item:first-child { border-top: 1px solid #e8e8e8; }
.faq-item__question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0; margin: 0; font-size: 17px; font-weight: 600;
  color: #1a1a1a; cursor: pointer; user-select: none;
}
.faq-item__question::after {
  content: ''; width: 12px; height: 12px;
  border-right: 2px solid #999; border-bottom: 2px solid #999;
  transform: rotate(45deg); transition: transform 0.3s;
  flex-shrink: 0; margin-left: 16px;
}
.faq-item--open .faq-item__question::after { transform: rotate(-135deg); }
.faq-item__answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-item--open .faq-item__answer { max-height: 800px; padding-bottom: 24px; }
.faq-item__answer-text { font-size: 15px; color: #666; line-height: 1.7; }

/* ─── Related Keywords Section ───────────────────── */
.related-section { padding: 60px 0; background: #f8f8f8; }
.related-section__title { font-size: 24px; font-weight: 700; color: #1a1a1a; margin-bottom: 24px; }
.related-links { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px 40px; }
.related-link { font-size: 15px; color: #555; padding: 4px 0; }
.related-link:hover { color: #ff3478; }

/* ─── SEO Content Section ────────────────────────── */
.seo-section { padding: 48px 0; border-top: 1px solid #e8e8e8; }
.seo-section__title { font-size: 20px; font-weight: 700; color: #1a1a1a; margin-bottom: 16px; }
.seo-section__text  { font-size: 15px; color: #666; line-height: 1.8; }

/* ─── CTA Banner ─────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #ff3478 0%, #ff6b35 100%);
  border-radius: 16px; padding: 48px; text-align: center;
  margin: 48px 0; color: #fff;
}
.cta-banner__title { font-size: 24px; font-weight: 700; margin-bottom: 12px; }
.cta-banner__desc  { font-size: 16px; opacity: 0.9; margin-bottom: 24px; }
.cta-banner__btn {
  display: inline-block; background: #fff; color: #ff3478;
  padding: 14px 40px; border-radius: 8px;
  font-size: 16px; font-weight: 700; transition: transform 0.2s;
}
.cta-banner__btn:hover { transform: translateY(-2px); }

/* ─── Footer ─────────────────────────────────────── */
.footer { padding: 40px 0; border-top: 1px solid #e8e8e8; text-align: center; }
.footer__text { font-size: 13px; color: #999; line-height: 1.8; }
.footer__link { color: #666; text-decoration: underline; }

/* ============================================================
   Responsive — Tablet
   ============================================================ */
@media (max-width: 1024px) {
  /* ── 히어로: 검색창 하단까지 커버 ── */
  .hero { margin-bottom: 0; }
  .hero__image { height: 480px; }
  .hero__title { font-size: 28px; line-height: 1.35; }

  /* ── 검색바: 세로 스택으로 전환 ── */
  .search-bar {
    flex-wrap: wrap; height: auto; overflow: visible;
    margin: -200px 20px 24px;
  }
  .search-bar__field {
    border-right: none; border-bottom: 1px solid #e0e0e0;
    padding: 12px 16px; min-width: 0;
  }
  .search-bar__field--keyword { flex: 1 1 100%; }
  .search-bar__field--date    { flex: 1 1 50%; }
  .search-bar__field--guest   { flex: 1 1 50%; border-bottom: none; }
  .search-bar__btn {
    width: 100%; border-radius: 0 0 10px 10px;
    padding: 14px 0; flex: 1 1 100%;
  }

  /* ── 사이드바: 태블릿에서 숨김 ── */
  .content-layout { flex-direction: column; gap: 24px; }
  .sidebar { display: none; }
  .related-links { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   Responsive — Mobile (Figma MO: 단일 컬럼, 사이드바 숨김)
   ============================================================ */
@media (max-width: 768px) {
  /* ── Global: 390px 기준 모바일 ── */
  body { overflow-x: hidden; }
  .container { padding: 0 16px; max-width: 390px; margin: 0 auto; }

  /* ── Hero: 이미지가 검색창 하단까지 커버 ── */
  .hero {
    margin-top: 12px; border-radius: 16px;
    overflow: hidden; margin-bottom: 0;
  }
  .hero__image {
    width: 100%; height: auto;
    aspect-ratio: 358 / 200;
    object-fit: cover;
  }
  .hero__overlay { padding: 0 20px; }
  .hero__title { font-size: 16px; line-height: 1.35; }

  /* ── Search Bar: 히어로 아래 별도 배치, 세로 스택 ── */
  .search-bar {
    flex-direction: column; height: auto;
    margin: 12px 0 24px;
    border-radius: 12px; overflow: visible;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border-width: 1.5px;
  }
  .search-bar__btn {
    width: calc(100% - 16px); margin: 8px;
    border-radius: 8px; height: 44px; font-size: 14px;
  }
  .search-bar__field {
    width: 100%; border-right: none;
    border-bottom: 1px solid #e0e0e0; padding: 12px 14px;
  }
  .search-bar__field--keyword,
  .search-bar__field--date,
  .search-bar__field--guest { flex: unset; }
  .search-bar__field--guest { border-bottom: none; }
  .search-bar__input { font-size: 14px; }
  .search-bar__field-label { font-size: 13px; }
  .search-bar__change-btn { font-size: 12px; padding: 5px 10px; }
  .search-bar__chip { font-size: 12px; padding: 5px 10px; }
  .search-bar__btn {
    width: calc(100% - 20px); margin: 10px;
    border-radius: 10px; height: 48px; font-size: 15px;
  }

  /* ── 2-Column → Single Column: 사이드바 숨김 ── */
  .content-layout { flex-direction: column; gap: 0; margin-top: 20px; }
  .sidebar { display: none; }
  .main-content { width: 100%; }

  /* ── Content Header ── */
  .content-header { padding-bottom: 12px; }
  .content-header__title { font-size: 18px; margin-bottom: 8px; }
  .content-header__desc { font-size: 13px; line-height: 1.6; }

  /* ── Sort Tabs: 4등분, 컨텐츠 너비 안에 맞춤 ── */
  .sort-tabs {
    display: flex; flex-wrap: nowrap;
    border-radius: 8px;
  }
  .sort-tab {
    flex: 1 1 0; min-width: 0;
    font-size: 12px; height: 40px; white-space: nowrap;
    padding: 0 4px;
  }
  .sort-tab__help {
    width: 14px; height: 14px;
    font-size: 9px;
    margin-left: 4px;
  }

  /* ── Accommodation Cards ── */
  .accommodation-card { flex-direction: column; gap: 10px; padding: 16px 0; }
  .accommodation-card__link { flex-direction: column; gap: 10px; }
  .accommodation-card__image-wrap {
    width: 100%; height: auto;
    aspect-ratio: 358 / 200;
    border-radius: 12px;
  }
  .accommodation-card__image {
    width: 100%; height: 100%; object-fit: cover;
  }
  .accommodation-card__rank { width: 28px; height: 28px; font-size: 13px; top: 10px; left: 10px; }
  .accommodation-card__badges { left: 46px; }
  .accommodation-card__name { font-size: 15px; }
  .accommodation-card__category { font-size: 12px; }
  .accommodation-card__location { font-size: 13px; }
  .accommodation-card__review-score { font-size: 14px; }
  .accommodation-card__price-row { flex-wrap: wrap; }
  .accommodation-card__price-current { font-size: 18px; }
  .accommodation-card__desc-box { padding: 8px 12px; }
  .accommodation-card__desc-text { font-size: 12px; }
  .accommodation-card__tag { font-size: 11px; padding: 2px 6px; }
  .accommodation-card__cta { font-size: 13px; opacity: 1; }
  .accommodation-card__link { margin: 0; padding: 0; flex-wrap: wrap; }

  /* ── Review Summary: 세로 스택 ── */
  .review-summary { flex-direction: column; gap: 16px; padding: 14px; }
  .review-summary__eval { max-width: 100%; max-height: none; }
  .review-summary__eval:only-child { max-width: 100%; }
  .review-bar { gap: 10px; }
  .review-bar__label { width: 140px; flex-shrink: 0; font-size: 12px; white-space: nowrap; }
  .review-bar__track { max-width: none; }
  .review-summary__heading { font-size: 14px; margin-bottom: 12px; }
  .review-summary__text { font-size: 12px; }

  /* ── "모두 보러가기" Button ── */
  .view-all-btn { height: 48px; font-size: 14px; border-radius: 10px; }

  /* ── Promotion Banner Carousel: 스와이프 캐러셀 ── */
  .promo-section { padding: 24px 0; }
  .promo-carousel { overflow: visible; }
  .promo-carousel__track {
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin; scrollbar-color: #ccc transparent;
    transform: none !important;
  }
  .promo-carousel__track::-webkit-scrollbar { height: 4px; }
  .promo-carousel__track::-webkit-scrollbar-thumb { background: #ccc; border-radius: 2px; }
  .promo-carousel__track::-webkit-scrollbar-track { background: transparent; }
  .promo-carousel__slide {
    flex: 0 0 85%; scroll-snap-align: start;
  }
  .promo-carousel__slide img {
    width: 100%; height: auto;
    aspect-ratio: 632 / 254;        /* 배너 이미지 비율 유지 */
    object-fit: cover;
  }
  .promo-carousel__arrow { display: none; }

  /* ── Price Tier: 스와이프 캐러셀 ── */
  .price-tier { padding: 24px 0; }
  .price-tier__title { font-size: 17px; margin-bottom: 12px; }
  .price-tier__carousel { overflow: visible; }
  .price-tier__track {
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin; scrollbar-color: #ccc transparent;
    transform: none !important;
  }
  .price-tier__track::-webkit-scrollbar { height: 4px; }
  .price-tier__track::-webkit-scrollbar-thumb { background: #ccc; border-radius: 2px; }
  .price-tier__track::-webkit-scrollbar-track { background: transparent; }
  .price-tier__arrow { display: none; }
  .price-card {
    flex: 0 0 85%; max-width: none;
    scroll-snap-align: start;
  }
  .price-card__image { flex: 0 0 40%; }
  .price-card__body { padding: 12px; }
  .price-card__name { font-size: 14px; }
  .price-card__price-amount { font-size: 16px; }

  /* ── Insights: 단일 컬럼 풀너비 ── */
  .insights-section { padding: 28px 0; }
  .insights-section__title { font-size: 18px; margin-bottom: 16px; }
  .insights-grid { grid-template-columns: 1fr; gap: 10px; }
  .insight-card { padding: 18px 14px; }
  .insight-card__icon { font-size: 26px; }
  .insight-card__title { font-size: 14px; }
  .insight-card__desc { font-size: 13px; line-height: 1.65; }

  /* ── FAQ ── */
  .faq-section { padding: 28px 0; }
  .faq-section__title { font-size: 18px; margin-bottom: 16px; }
  .faq-item__question { font-size: 14px; padding: 16px 0; }
  .faq-item__answer-text { font-size: 13px; }

  /* ── Related Keywords ── */
  .related-section { padding: 28px 0; }
  .related-section__title { font-size: 18px; margin-bottom: 12px; }
  .related-links { grid-template-columns: repeat(2, 1fr); gap: 6px 16px; }
  .related-link { font-size: 13px; }

  /* ── CTA / Footer ── */
  .cta-banner { padding: 24px 16px; border-radius: 12px; margin: 24px 0; }
  .footer { padding: 20px 0; }
}
