:root {
  --bg: #ffffff;
  --surface: #f4fbfd;
  --card: #ffffff;
  --ink: #24323a;
  --muted: #61717d;
  --line: #dbeaf0;
  --accent: #22a8c9;
  --accent-deep: #0b7287;
  --accent-soft: #e9f8fb;
  --gold: #d86f55;
  --shadow: 0 18px 45px rgba(39, 137, 165, 0.12);
  --radius: 22px;
  --max: 1180px;
  font-family: "Pretendard Variable", Pretendard, "Apple SD Gothic Neo", "Malgun Gothic", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans, "Pretendard Variable", Pretendard, "Apple SD Gothic Neo", "Malgun Gothic", Arial, sans-serif);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

button,
input {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 64px;
  padding: 0 max(22px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand strong {
  display: block;
  font-size: 19px;
  letter-spacing: -0.02em;
}

.brand small {
  display: none;
  color: var(--muted);
  font-size: 12px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 20;
}

.primary-nav a {
  padding: 8px 9px;
  border-radius: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.primary-nav a:hover {
  background: transparent;
  color: var(--accent-deep);
}

.language-switch {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.language-switch button {
  min-width: 38px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #4d4741;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.language-switch button.is-active {
  background: var(--accent);
  color: #fff;
}

.menu-toggle {
  display: none;
  position: relative;
  z-index: 30;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

main {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 70px;
}

.eyebrow,
.category-label {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.keyword-list {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.keyword-list a {
  flex: 0 0 auto;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #3b3732;
  font-size: 13px;
  font-weight: 700;
}

.keyword-list a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: stretch;
  padding: 26px 0 52px;
}

.hero-actions,
.section-heading.row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.primary-button,
.secondary-button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 800;
}

.primary-button {
  background: var(--accent);
  color: #fff;
}

.secondary-button,
.text-link {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--accent);
}

.hero-grid {
  order: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  min-width: 0;
}

.hero-featured,
.article-card,
.booking-card,
.category-group,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
}

.hero-featured {
  overflow: hidden;
}

.hero-featured a {
  display: grid;
  height: 100%;
  grid-template-rows: minmax(0, 1fr) auto;
}

.hero-featured__body {
  display: grid;
  gap: 10px;
  padding: 22px 24px 26px;
}

.hero-featured h2,
.article-card h3,
.booking-card h3,
.category-group h3 {
  margin: 0;
  letter-spacing: -0.035em;
}

.hero-featured h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.hero-featured p,
.article-card p,
.booking-card p,
.category-group p,
.faq-list p {
  margin: 0;
  color: var(--muted);
}

.hero-side {
  display: grid;
  gap: 14px;
}

.side-card,
.curation-card {
  min-width: 0;
}

.side-card a,
.curation-card a {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 118px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.side-card strong,
.curation-card strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.side-card em,
.curation-card em {
  display: block;
  margin-bottom: 4px;
  color: var(--gold);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.side-card small,
.curation-card small,
.article-meta {
  color: var(--muted);
  font-size: 13px;
}

.image-frame {
  overflow: hidden;
  background: linear-gradient(135deg, #ece5da, #f7f4ef);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.image-frame--api img {
  position: relative;
  z-index: 1;
  object-fit: contain;
  background: transparent;
}

.image-frame--api {
  position: relative;
  isolation: isolate;
  background: #f7f3ec;
}

.image-frame--api::before {
  position: absolute;
  inset: -16px;
  z-index: 0;
  content: "";
  background-image: var(--api-image);
  background-position: center;
  background-size: cover;
  filter: blur(18px) saturate(0.78);
  opacity: 0.28;
  transform: scale(1.06);
}

/* Keep recommendation cards aligned while showing the complete API poster. */
.news-recommend-card .image-frame--api img,
.news-list-card .image-frame--api img {
  object-fit: contain !important;
  background: transparent;
}

.image-frame--hero {
  aspect-ratio: 16 / 11;
}

.image-frame--card {
  aspect-ratio: 1 / 1;
  border-radius: 18px 18px 0 0;
}

.image-frame--thumb {
  aspect-ratio: 1 / 1;
  border-radius: 14px;
}

.image-frame--recommend {
  aspect-ratio: 4 / 3;
  border-radius: 20px 20px 0 0;
}

.image-frame--feed {
  aspect-ratio: 4 / 3;
  border-radius: 16px;
}

.image-frame--magazine {
  aspect-ratio: 16 / 10;
  border-radius: 4px;
}

.image-frame--categoryHero {
  aspect-ratio: 16 / 9;
  border-radius: 0;
}

.image-frame--mini {
  aspect-ratio: 1 / 1;
  border-radius: 14px;
}

.article-card a:hover img,
.hero-featured a:hover img,
.side-card a:hover img,
.curation-card a:hover img,
.news-feature-card a:hover img,
.news-recommend-card a:hover img,
.news-list-card a:hover img,
.category-feature-card a:hover img,
.category-mini-card a:hover img,
.category-list-card a:hover img {
  transform: scale(1.035);
}

.content-section,
.booking-section,
.category-hub,
.faq-section {
  padding: 54px 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.section-heading p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
}

.section-status {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}

.section-status[hidden] {
  display: none !important;
}

.mobile-news-feed {
  display: grid;
  gap: 18px;
  padding: 0 0 44px;
}

.coupang-section {
  display: grid;
  gap: 16px;
  padding: 8px 0 44px;
  border-bottom: 1px solid var(--line);
}

.coupang-section[hidden] {
  display: none !important;
}

.coupang-section .section-heading {
  margin: 0;
  padding: 0;
}

.coupang-section .section-heading a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--accent);
  font-weight: 900;
}

.coupang-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.coupang-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(20, 20, 20, 0.05);
}

.coupang-card a {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  min-height: 134px;
  color: inherit;
}

.coupang-card img,
.coupang-placeholder {
  width: 118px;
  height: 100%;
  min-height: 134px;
  object-fit: cover;
  background: #f0eadf;
}

.coupang-placeholder {
  display: grid;
  place-items: center;
  color: var(--accent);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.coupang-card span {
  display: grid;
  align-content: center;
  gap: 8px;
  min-width: 0;
  padding: 14px;
}

.coupang-card em {
  color: var(--warm);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.coupang-card strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.32;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.coupang-card small {
  color: var(--accent);
  font-size: 14px;
  font-weight: 900;
}

.coupang-disclosure {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.top-region-bar {
  position: sticky;
  top: 76px;
  z-index: 8;
  margin: -18px calc(50% - 50vw) 4px;
  padding: 10px max(16px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.top-region-bar .region-chip-list {
  flex-wrap: nowrap;
  gap: 8px;
  margin: 0;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}

.top-region-bar .region-chip-list::-webkit-scrollbar {
  display: none;
}

.top-region-bar .region-button {
  flex: 0 0 auto;
  min-width: auto;
  min-height: 38px;
  padding: 8px 15px;
  font-size: 15px;
}

.tripview-summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 12px 0 18px;
  border-bottom: 1px solid var(--line);
}

.tripview-summary > div {
  display: flex;
  align-items: baseline;
  gap: 10px;
  min-width: 0;
}

.tripview-summary h1 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.025em;
  white-space: nowrap;
}

.top-category-bar {
  margin: 0;
  padding: 0;
  background: transparent;
}

.section-status:empty,
.recommend-news-row:empty,
.news-list-feed:empty {
  display: none;
}

.is-loading-news .category-news-wrapper,
.is-loading-news .faq-section {
  display: none;
}

.is-loading-news #julyStatus {
  display: none;
}

.category-tab-list {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 2px 0 4px;
  scrollbar-width: none;
}

.category-tab-list::-webkit-scrollbar {
  display: none;
}

.category-tab {
  display: inline-grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  gap: 8px;
  flex: 0 0 auto;
  min-height: 44px;
  padding: 9px 16px;
  border: 1px solid #cfe5ed;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  white-space: nowrap;
}

.category-tab strong {
  color: var(--accent-deep);
  font-size: 14px;
}

.category-tab:hover,
.category-tab.is-active {
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--accent), #58c7da);
  color: #fff;
  box-shadow: 0 10px 24px rgba(45, 156, 189, 0.2);
}

.category-tab:hover strong,
.category-tab.is-active strong {
  color: #fff;
}

.tripview-section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding-top: 4px;
}

.tripview-section-title > div {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.tripview-section-title h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.landing-lead {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.section-kicker {
  display: block;
  margin-bottom: 2px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tripview-section-title a {
  flex: 0 0 auto;
  color: var(--accent);
  font-size: 15px;
  font-weight: 900;
}

.tripview-section-title--all {
  margin-top: 12px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.tripview-section-title--all span {
  color: var(--gold);
  font-size: 0.72em;
}

.news-feed-heading {
  display: none;
  gap: 8px;
  max-width: 760px;
}

.featured-news {
  display: none !important;
}

.news-feed-heading h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.news-feed-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.news-feature-card,
.news-recommend-card,
.news-list-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
}

.news-feature-card {
  box-shadow: var(--shadow);
}

.featured-news-card {
  display: grid;
}

.featured-news-card:empty {
  display: none;
}

.featured-news-card .news-feature-card {
  border-radius: 24px;
}

.news-feature-card a {
  display: grid;
}

.news-feature-body {
  display: grid;
  gap: 10px;
  padding: 18px 18px 20px;
}

.news-feature-body h2 {
  margin: 0;
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.14;
  letter-spacing: -0.04em;
}

.news-feature-body p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.recommend-news-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.news-recommend-card a {
  display: grid;
  gap: 9px;
  height: 100%;
}

.news-recommend-card strong {
  display: -webkit-box;
  overflow: hidden;
  min-height: 42px;
  padding: 0 12px 14px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.32;
  letter-spacing: -0.025em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.news-list-feed {
  display: grid;
  gap: 12px;
}

.news-loading-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
}

.news-loading-card--recommend {
  display: grid;
  gap: 9px;
}

.news-loading-card--feature {
  min-height: 420px;
}

.news-loading-card--feature .news-loading-thumb {
  aspect-ratio: 16 / 10;
  border-radius: 22px 22px 0 0;
}

.news-loading-card--list {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 116px;
  padding: 10px;
}

.news-loading-thumb,
.news-loading-lines span,
.news-loading-lines strong,
.news-loading-lines small {
  display: block;
  border-radius: 14px;
  background: linear-gradient(90deg, #f3f0ea 0%, #faf8f3 46%, #f3f0ea 100%);
  background-size: 220% 100%;
  animation: loadingShimmer 1.25s ease-in-out infinite;
}

.news-loading-card--recommend .news-loading-thumb {
  aspect-ratio: 4 / 3;
  border-radius: 20px 20px 0 0;
}

.news-loading-card--list .news-loading-thumb {
  aspect-ratio: 4 / 3;
}

.news-loading-lines {
  display: grid;
  gap: 9px;
  padding: 0 12px 14px;
}

.news-loading-card--list .news-loading-lines {
  padding: 0;
}

.news-loading-lines span {
  width: 42%;
  height: 12px;
}

.news-loading-lines strong {
  width: 92%;
  height: 20px;
}

.news-loading-lines small {
  width: 62%;
  height: 13px;
}

@keyframes loadingShimmer {
  0% {
    background-position: 110% 0;
  }

  100% {
    background-position: -110% 0;
  }
}

.news-list-card a {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 116px;
  padding: 10px;
}

.news-list-card span {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.news-list-card em {
  color: var(--gold);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.news-list-card strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.32;
  letter-spacing: -0.03em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.news-list-card small {
  color: var(--muted);
  font-size: 13px;
}

.category-magazine-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 22px;
}

.category-magazine-card a {
  display: grid;
  gap: 7px;
}

.category-magazine-card strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.38;
  letter-spacing: -0.025em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.category-magazine-card p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.category-magazine-card small {
  color: var(--muted);
  font-size: 12px;
}

.editorial-section {
  display: grid;
  gap: 18px;
  padding: 18px 0 44px;
  border-bottom: 1px solid var(--line);
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.editorial-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
}

.editorial-card--lead {
  grid-column: span 2;
  grid-row: span 2;
}

.editorial-card a {
  display: grid;
  height: 100%;
}

.editorial-card span {
  display: grid;
  gap: 7px;
  padding: 16px;
}

.editorial-card em {
  color: var(--gold);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.editorial-card strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.32;
  letter-spacing: -0.03em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.editorial-card--lead strong {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
}

.editorial-card small {
  display: -webkit-box;
  overflow: hidden;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.editorial-card b {
  color: var(--muted);
  font-size: 13px;
}

.mrt-feed-card {
  border-color: #d8e5dd;
  background: linear-gradient(0deg, #f8fbf9, #fff);
}

.mrt-feed-card a {
  min-height: 112px;
}

.mrt-feed-card em {
  color: var(--accent);
}

.mrt-feed-card small {
  color: var(--accent);
  font-weight: 800;
}

.mrt-feed-thumb {
  background: var(--accent-soft);
}

.mrt-feed-thumb span {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: var(--accent);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.mrt-feed-card--flight {
  border-color: #e0d4c4;
  background: #fffaf2;
}

.mrt-feed-card--flight .mrt-feed-thumb {
  background: #efe2cf;
}

.mrt-feed-card--cta {
  border-style: dashed;
  background: #fbfaf6;
}

.mrt-feed-card--cta .mrt-feed-thumb {
  background: #f0eadf;
}

.mrt-feed-module {
  display: grid;
  gap: 14px;
  padding: 20px 0 18px;
  border-top: 8px solid #f5f2ec;
  border-bottom: 8px solid #f5f2ec;
  background: #fff;
}

.coupang-widget-ad {
  display: grid;
  gap: 8px;
  width: 100%;
  max-width: 768px;
  margin: 18px auto;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.coupang-widget-label {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.coupang-widget-frame {
  width: 100%;
  min-height: 140px;
  overflow: hidden;
}

.coupang-widget-frame ins,
.coupang-widget-frame iframe {
  max-width: 100% !important;
}

.coupang-widget-disclosure {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.mrt-feed-module-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
}

.mrt-feed-module-head h3 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.mrt-feed-module-head a {
  flex: 0 0 auto;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.mrt-feed-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}

.mrt-feed-tabs::-webkit-scrollbar,
.mrt-rail::-webkit-scrollbar {
  display: none;
}

.mrt-feed-tabs button {
  flex: 0 0 auto;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  background: #fff;
  font-family: inherit;
  cursor: pointer;
}

.mrt-feed-tabs .is-active {
  border-color: var(--accent);
  color: #fff;
  background: var(--accent);
}

.mrt-feed-module[data-active-filter="tour"] .mrt-rail-card:not([data-filter="tour"]),
.mrt-feed-module[data-active-filter="stay"] .mrt-rail-card:not([data-filter="stay"]),
.mrt-feed-module[data-active-filter="ticket"] .mrt-rail-card:not([data-filter="ticket"]),
.mrt-feed-module[data-active-filter="flight"] .mrt-rail-card:not([data-filter="flight"]) {
  display: none;
}

.mrt-rail {
  display: grid;
  grid-auto-columns: minmax(155px, 190px);
  grid-auto-flow: column;
  gap: 12px;
  overflow-x: auto;
  padding: 2px 0 4px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.mrt-rail-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  scroll-snap-align: start;
}

.mrt-rail-card a {
  display: grid;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.mrt-rail-image {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f1eadf;
}

.mrt-rail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mrt-rail-image span {
  color: var(--accent);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.mrt-rail-copy {
  display: grid;
  gap: 5px;
  padding: 11px 11px 13px;
}

.mrt-rail-copy em {
  color: var(--gold);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.mrt-rail-copy strong {
  display: -webkit-box;
  overflow: hidden;
  min-height: 42px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.32;
  letter-spacing: -0.025em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.mrt-rail-copy small {
  display: -webkit-box;
  overflow: hidden;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.mrt-rail-card--cta {
  border-style: dashed;
  background: #fbfaf6;
}

.mrt-rail-card--flight {
  background: #fffaf2;
}

.mrt-rail-card--flight .mrt-rail-image {
  background: #efe2cf;
}

.category-news-wrapper {
  padding: 18px 0 50px;
  border-top: 1px solid var(--line);
}

.mrt-section {
  display: grid;
  gap: 18px;
  padding: 10px 0 46px;
  border-top: 1px solid var(--line);
}

body.booking-search-open {
  overflow: hidden;
}

.booking-search-panel {
  display: none;
}

.booking-search-panel.is-open {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  align-content: start;
  gap: 16px;
  overflow-y: auto;
  width: 100%;
  max-width: none;
  padding: 82px max(18px, calc((100vw - var(--max)) / 2)) 34px;
  border-top: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.booking-search-panel .section-heading,
.booking-search-panel .mrt-search-box,
.booking-search-panel .section-status,
.booking-search-panel .mrt-grid {
  width: min(100%, 760px);
  margin-right: auto;
  margin-left: auto;
}

.booking-search-panel:not(.has-results) .section-status,
.booking-search-panel:not(.has-results) .mrt-grid {
  display: none;
}

.booking-search-panel .section-heading {
  position: relative;
  padding-right: 84px;
}

.booking-search-close {
  position: absolute;
  top: 0;
  right: 0;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.mrt-search-box {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(20, 20, 20, 0.04);
}

.mrt-search-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.mrt-search-tabs button,
.mrt-search-form > button {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.mrt-search-tabs button.is-active,
.mrt-search-form > button {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.mrt-flight-promo {
  display: none;
  grid-template-columns: minmax(0, 1.35fr) minmax(150px, 0.65fr);
  gap: 10px;
}

.mrt-search-box.is-flight-mode .mrt-flight-promo {
  display: grid;
}

.mrt-flight-promo article {
  display: grid;
  align-content: end;
  min-height: 108px;
  padding: 16px;
  overflow: hidden;
  border-radius: 16px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(11, 44, 68, 0.85), rgba(15, 92, 74, 0.5)),
    url("https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=900&q=80") center / cover;
}

.mrt-flight-promo article:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.78), rgba(188, 125, 50, 0.45)),
    url("https://images.unsplash.com/photo-1464037866556-6812c9d1c72e?auto=format&fit=crop&w=600&q=80") center / cover;
}

.mrt-flight-promo span {
  font-size: 12px;
  font-weight: 900;
  opacity: 0.88;
}

.mrt-flight-promo strong {
  max-width: 320px;
  font-size: 24px;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.mrt-search-form {
  display: none;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  gap: 10px;
  align-items: end;
}

.mrt-search-form.is-active {
  display: grid;
}

.mrt-search-form label {
  display: grid;
  gap: 6px;
  min-width: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.mrt-quick-search {
  display: grid;
  grid-column: 1 / -1;
  gap: 14px;
}

.mrt-search-field {
  position: relative;
  display: block;
}

.mrt-search-field > span {
  position: absolute;
  top: 50%;
  left: 16px;
  z-index: 1;
  color: var(--muted);
  font-size: 24px;
  line-height: 1;
  transform: translateY(-50%);
}

.mrt-search-field input {
  padding-left: 48px;
}

.mrt-chip-group {
  display: grid;
  gap: 10px;
}

.mrt-chip-group h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
}

.mrt-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mrt-chip-list button {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.mrt-chip-list button.is-selected {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.mrt-search-options {
  grid-column: 1 / -1;
}

.mrt-search-options summary {
  width: fit-content;
  cursor: pointer;
  color: var(--accent);
  font-weight: 900;
}

.mrt-option-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.mrt-search-form input,
.mrt-search-form select {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
}

.mrt-search-form > button {
  min-width: 128px;
  padding: 0 18px;
}

.mrt-flight-trip-tabs {
  display: none;
}

.mrt-search-form[data-mrt-form="flight"].is-active {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 18px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(20, 20, 20, 0.08);
}

.mrt-search-form[data-mrt-form="flight"].is-active .mrt-flight-trip-tabs {
  display: flex;
  grid-column: 1 / -1;
  gap: 12px;
}

.mrt-flight-trip-tabs span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 900;
}

.mrt-flight-trip-tabs .is-active {
  color: var(--ink);
}

.mrt-search-form[data-mrt-form="flight"].is-active > button {
  grid-column: 1 / -1;
  min-height: 54px;
  border-color: var(--accent-deep);
  border-radius: 12px;
  background: var(--accent-deep);
  color: #fff;
}

.mrt-coupon-panel {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px dashed #d7c6ad;
  border-radius: 20px;
  background: #fffaf2;
}

.mrt-coupon-panel[hidden] {
  display: none !important;
}

.mrt-coupon-panel h3 {
  margin: 0;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.mrt-coupon-panel p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.mrt-coupon-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.mrt-coupon-grid article {
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.mrt-coupon-grid strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.3;
}

.mrt-coupon-grid span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.mrt-coupon-link {
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  background: var(--accent);
}

.mrt-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.mrt-grid.is-single {
  grid-template-columns: minmax(0, 760px);
}

.mrt-grid.is-single .mrt-panel {
  width: 100%;
}

.mrt-panel {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
}

.mrt-panel-heading {
  display: grid;
  gap: 4px;
  margin-bottom: 14px;
}

.mrt-panel-heading h3 {
  margin: 0;
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.mrt-panel-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.mrt-card-list {
  display: grid;
  gap: 12px;
}

.mrt-product-card {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-width: 0;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.mrt-product-card:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.mrt-product-card img,
.mrt-placeholder {
  width: 104px;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  object-fit: cover;
  background: var(--surface);
}

.mrt-placeholder {
  display: grid;
  place-items: center;
  color: var(--accent);
  font-weight: 900;
}

.mrt-product-card div {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.mrt-product-card em {
  color: var(--gold);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.mrt-product-card h3 {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.32;
  letter-spacing: -0.025em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.mrt-product-card p,
.mrt-product-card small,
.mrt-flight-card small {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.mrt-product-card small {
  color: var(--accent);
  font-weight: 800;
}

.mrt-link {
  width: fit-content;
  margin-top: 4px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.mrt-flight-card {
  display: grid;
  gap: 3px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.mrt-flight-card:last-child {
  border-bottom: 0;
}

.mrt-flight-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.mrt-flight-card strong {
  color: var(--ink);
  font-size: 21px;
  line-height: 1.2;
}

.mrt-grid.is-flight {
  grid-template-columns: minmax(0, 760px);
}

.mrt-flight-discovery {
  display: grid;
  gap: 14px;
}

.mrt-flight-destination-head {
  display: grid;
  gap: 5px;
}

.mrt-flight-destination-head h3 {
  margin: 0;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.22;
  letter-spacing: -0.035em;
}

.mrt-flight-destination-head p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.mrt-flight-region-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}

.mrt-flight-region-tabs::-webkit-scrollbar {
  display: none;
}

.mrt-flight-region-tabs span {
  flex: 0 0 auto;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
  background: #fff;
}

.mrt-flight-region-tabs .is-active {
  border-color: var(--accent);
  color: #fff;
  background: var(--accent);
}

.mrt-flight-destination-list {
  display: grid;
  overflow: hidden;
  border-radius: 18px;
  background: #f6f8f7;
}

.mrt-flight-destination {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 28px;
  gap: 13px;
  align-items: center;
  min-height: 82px;
  padding: 14px 16px;
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(20, 20, 20, 0.06);
}

.mrt-flight-destination:last-child {
  border-bottom: 0;
}

.mrt-flight-destination > span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: #c90025;
  font-size: 13px;
  font-weight: 900;
  background: #fff;
}

.mrt-flight-destination strong {
  display: block;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.25;
}

.mrt-flight-destination em {
  color: #1687c9;
  font-style: normal;
}

.mrt-flight-destination small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.mrt-flight-destination b {
  color: #9aa1a6;
  font-size: 34px;
  font-weight: 300;
}

.mrt-empty {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

#categoryNewsSections {
  display: grid;
  gap: 40px;
}

.category-news-block {
  display: grid;
  gap: 14px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.category-news-block:last-child {
  border-bottom: 0;
}

.category-news-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  padding-top: 4px;
}

.category-news-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.category-news-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.category-news-heading a {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

@media (min-width: 861px) {
  main {
    width: min(1180px, calc(100% - 48px));
    padding-top: 16px;
  }

  .tripview-summary {
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 14px;
    padding: 10px 0 14px;
  }

  .tripview-summary > div {
    display: grid;
    gap: 0;
  }

  .tripview-summary .eyebrow {
    color: #e53c51;
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  .tripview-summary h1 {
    font-size: 14px;
    font-weight: 800;
    color: var(--muted);
  }

  .category-tab-list {
    gap: 8px;
    justify-content: flex-start;
    overflow: hidden;
  }

  .category-tab {
    min-height: 30px;
    padding: 5px 12px;
    border-color: transparent;
    background: #f6f8fa;
    font-size: 12px;
    font-weight: 800;
  }

  .category-tab strong {
    font-size: 11px;
  }

  .mobile-news-feed {
    grid-template-columns: minmax(0, 1.58fr) minmax(360px, 0.82fr);
    grid-template-areas:
      "title title"
      "status status"
      "feature recommend"
      "all all"
      "feed feed";
    gap: 16px 18px;
    padding-top: 38px;
    border-bottom: 1px solid var(--line);
  }

  .mobile-news-feed > .tripview-section-title:first-child {
    grid-area: title;
    display: flex;
    margin-bottom: 10px;
  }

  #julyStatus {
    grid-area: status;
  }

  .featured-news-card {
    grid-area: feature;
    min-height: 560px;
  }

  .news-feature-card,
  .news-recommend-card {
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .featured-news-card .news-feature-card {
    border-radius: 0;
  }

  .featured-news-card .news-feature-card,
  .featured-news-card .news-feature-card a {
    height: 100%;
  }

  .news-feature-card a {
    position: relative;
    display: block;
  }

  .news-feature-card .image-frame--hero {
    height: 100%;
    aspect-ratio: auto;
  }

  .news-feature-body {
    position: absolute;
    inset: auto 0 0;
    gap: 10px;
    padding: 140px 34px 34px;
    color: #fff;
    background: linear-gradient(180deg, rgba(3, 15, 24, 0), rgba(3, 15, 24, 0.84));
  }

  .news-feature-body h2,
  .news-feature-body p,
  .news-feature-body .article-meta,
  .news-feature-body .category-label {
    color: #fff;
  }

  .news-feature-body h2 {
    max-width: 720px;
    font-size: clamp(36px, 3.8vw, 56px);
    line-height: 1.06;
  }

  .recommend-news-row {
    grid-area: recommend;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: 8px;
    min-height: 560px;
  }

  .news-recommend-card a {
    position: relative;
    display: block;
    height: 100%;
  }

  .news-recommend-card .image-frame--recommend {
    height: 100%;
    aspect-ratio: auto;
    border-radius: 0;
  }

  .news-recommend-card strong {
    position: absolute;
    inset: auto 0 0;
    min-height: 0;
    padding: 48px 14px 14px;
    color: #fff;
    background: linear-gradient(180deg, rgba(3, 15, 24, 0), rgba(3, 15, 24, 0.82));
    font-size: 16px;
  }

  .tripview-section-title--all {
    grid-area: all;
    margin-top: 38px;
    padding-top: 0;
    border-top: 0;
  }

  .tripview-section-title--all h2 {
    font-size: 25px;
    line-height: 1.1;
  }

  .news-list-feed {
    grid-area: feed;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 42px 24px;
  }

  .news-list-feed .mrt-feed-module {
    grid-column: 1 / -1;
  }

  .news-list-card {
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .news-list-card a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 0;
    padding: 0;
  }

  .news-list-card .image-frame--feed {
    aspect-ratio: 16 / 9;
    border-radius: 3px;
  }

  .news-list-card strong {
    font-size: 17px;
    line-height: 1.38;
    -webkit-line-clamp: 2;
  }

  .category-news-wrapper {
    padding-top: 32px;
    border-top: 0;
  }

  #categoryNewsSections {
    gap: 48px;
  }

  .category-news-block {
    gap: 18px;
    padding-bottom: 40px;
  }

  .category-magazine-grid {
    gap: 34px 22px;
  }

  .category-magazine-card .image-frame--magazine {
    aspect-ratio: 16 / 9;
  }
}

.category-feature-card,
.category-mini-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}

.category-feature-card a {
  display: grid;
}

.category-feature-card strong {
  padding: 15px 16px 18px;
  color: var(--ink);
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.category-mini-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.category-mini-card a {
  display: grid;
  gap: 8px;
  height: 100%;
  padding: 8px;
}

.category-mini-card strong {
  display: -webkit-box;
  overflow: hidden;
  min-height: 38px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.35;
  letter-spacing: -0.02em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.category-list-feed {
  display: grid;
}

.category-list-card {
  border-bottom: 1px solid var(--line);
}

.category-list-card:last-child {
  border-bottom: 0;
}

.category-list-feed .mrt-feed-card {
  margin: 8px 0;
  border: 1px solid #d8e5dd;
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(20, 20, 20, 0.04);
}

.category-list-feed .mrt-feed-card a {
  padding: 10px;
}

.category-list-feed .mrt-feed-module {
  margin: 14px 0;
}

.category-list-card a {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  padding: 12px 0;
}

.category-list-card strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: -0.025em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.region-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -8px 0 26px;
}

.region-button {
  min-width: 74px;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.region-button:hover,
.region-button.is-active {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.july-grid {
  align-items: stretch;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.article-card {
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.article-card:hover,
.booking-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(30, 25, 20, 0.12);
}

.article-card a {
  display: grid;
  gap: 12px;
}

.article-card .category-label,
.article-card h3,
.article-card p,
.article-card .article-meta {
  margin-right: 18px;
  margin-left: 18px;
}

.article-card h3 {
  font-size: 22px;
  line-height: 1.25;
}

.article-card p {
  display: -webkit-box;
  overflow: hidden;
  min-height: 48px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.article-card .category-label {
  margin-top: 4px;
}

.article-card .article-meta {
  margin-bottom: 20px;
}

.article-meta {
  display: flex;
  gap: 10px;
  align-items: center;
}

.article-meta span + span::before {
  content: "·";
  margin-right: 10px;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 42px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  text-align: center;
}

.empty-state h3 {
  margin: 0 0 8px;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.25;
}

.empty-state p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--muted);
}

.booking-section {
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding-right: max(16px, calc((100vw - var(--max)) / 2));
  padding-left: max(16px, calc((100vw - var(--max)) / 2));
  background: var(--surface);
}

.booking-grid,
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.booking-card {
  display: grid;
  gap: 12px;
  padding: 22px;
  box-shadow: none;
}

.booking-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.booking-card h3 {
  font-size: 25px;
}

.booking-card a {
  justify-self: start;
  margin-top: 6px;
  color: var(--accent);
  font-weight: 800;
}

.curation-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.curation-card a {
  grid-template-columns: 140px minmax(0, 1fr);
  min-height: 142px;
}

.curation-card small {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 6px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.category-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.category-group {
  display: grid;
  gap: 14px;
  padding: 24px;
  box-shadow: none;
}

.category-group div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.category-group a {
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 18px 20px;
  box-shadow: none;
}

.faq-list summary {
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin-top: 12px;
}

.site-footer {
  padding: 46px max(16px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--line);
  background: #111;
  color: #fff;
}

.footer-intro {
  display: grid;
  gap: 12px;
  max-width: 520px;
  margin-bottom: 32px;
}

.footer-intro p,
.footer-brand small,
.copyright {
  color: rgba(255, 255, 255, 0.66);
}

.footer-brand .brand-mark {
  background: #fff;
  color: #111;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
}

.footer-grid nav {
  display: grid;
  gap: 8px;
  align-content: start;
}

.footer-grid h2 {
  margin: 0 0 4px;
  font-size: 15px;
}

.footer-grid a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.copyright {
  margin: 36px 0 0;
  font-size: 13px;
}

.noscript {
  margin: 20px;
  color: #9b2d20;
}

@media (max-width: 1000px) {
  .hero-section,
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    order: initial;
  }

  .card-grid,
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto 40px;
    grid-template-areas: "brand language menu";
    gap: 8px;
    min-height: auto;
    padding: 8px 12px;
  }

  .brand {
    grid-area: brand;
    min-width: 0;
  }

  .brand strong {
    overflow: hidden;
    font-size: 17px;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-mark {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    font-size: 12px;
  }

  .brand small {
    display: none;
  }

  .language-switch {
    grid-area: language;
    width: auto;
    max-width: 100%;
    gap: 2px;
    padding: 2px;
  }

  .language-switch button {
    flex: 0 0 auto;
    min-width: 0;
    width: 28px;
    height: 26px;
    font-size: 10px;
  }

  .menu-toggle {
    grid-area: menu;
    display: block;
    justify-self: end;
    width: 36px;
    height: 36px;
  }

  .primary-nav {
    position: fixed;
    top: 58px;
    right: 14px;
    left: 14px;
    z-index: 50;
    display: none;
    gap: 6px;
    max-height: calc(100dvh - 76px);
    overflow-y: auto;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: grid;
  }

  .primary-nav.is-open a {
    min-height: 42px;
    padding: 10px 12px;
    border-radius: 12px;
    background: var(--surface);
  }

  main {
    width: min(100% - 28px, var(--max));
    padding-top: 0;
    overflow-x: hidden;
  }

  .mobile-news-feed,
  .editorial-section,
  .editorial-grid,
  .mrt-section,
  .mrt-grid,
  .mrt-panel,
  .category-news-wrapper,
  #categoryNewsSections,
  .category-magazine-grid,
  .category-magazine-card,
  .news-feature-card,
  .news-recommend-card,
  .news-list-card,
  .category-news-block {
    min-width: 0;
    max-width: 100%;
  }

  .news-feature-body *,
  .news-list-card *,
  .news-recommend-card *,
  .editorial-card *,
  .mrt-section *,
  .category-news-block * {
    overflow-wrap: anywhere;
  }

  .hero-section {
    padding: 28px 0 44px;
  }

  .mobile-news-feed {
    gap: 16px;
    padding-top: 0;
  }

  .tripview-summary {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px 0 18px;
  }

  .tripview-summary > div {
    display: grid;
    gap: 6px;
  }

  .tripview-summary h1 {
    font-size: 30px;
    line-height: 1.12;
    white-space: normal;
  }

  .top-region-bar {
    top: 94px;
    margin-top: -8px;
    padding: 9px 12px;
  }

  .top-category-bar {
    position: static;
    z-index: auto;
    margin: 0;
    padding: 0;
  }

  .category-tab-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    overflow: visible;
    padding: 0;
  }

  .top-region-bar .region-button {
    min-height: 36px;
    padding: 7px 14px;
    font-size: 14px;
  }

  .category-tab {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 1px;
    width: 100%;
    min-height: 46px;
    padding: 8px 6px;
    border-radius: 16px;
    font-size: 13px;
    letter-spacing: -0.035em;
    white-space: normal;
  }

  .category-tab strong {
    font-size: 12px;
    line-height: 1;
  }

  .tripview-section-title h2 {
    font-size: 26px;
  }

  .landing-lead {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.62;
  }

  .tripview-section-title a {
    font-size: 13px;
  }

  .news-feed-heading h1 {
    font-size: 28px;
    line-height: 1.16;
    letter-spacing: -0.03em;
  }

  .news-feed-heading p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.65;
  }

  .news-feature-card,
  .news-recommend-card,
  .news-list-card {
    border-radius: 18px;
  }

  .news-feature-body {
    padding: 16px;
  }

  .news-feature-body h2 {
    font-size: 24px;
    line-height: 1.22;
  }

  .recommend-news-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    overflow: visible;
    margin-right: 0;
    padding: 0;
    clear: both;
  }

  .news-recommend-card {
    min-width: 0;
    border-radius: 14px;
  }

  .news-recommend-card strong {
    min-height: 34px;
    padding: 0 8px 10px;
    font-size: 12px;
    line-height: 1.35;
  }

  .recommend-news-row .news-recommend-card:nth-child(n+4) {
    display: none;
  }

  .news-list-card a {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 10px;
    min-height: 92px;
    padding: 8px;
  }

  .news-list-card strong {
    font-size: 16px;
    line-height: 1.34;
  }

  .news-list-card small,
  .news-list-card em {
    font-size: 11px;
  }

  .editorial-section {
    gap: 14px;
    padding: 12px 0 34px;
  }

  .editorial-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .editorial-card--lead {
    grid-column: auto;
    grid-row: auto;
  }

  .editorial-card a {
    grid-template-columns: 104px minmax(0, 1fr);
    align-items: stretch;
    min-height: 126px;
  }

  .editorial-card .image-frame {
    width: 104px;
    max-width: 104px;
    height: auto;
    min-height: 126px;
    aspect-ratio: auto;
    align-self: stretch;
    border-radius: 0;
  }

  .editorial-card .image-frame img {
    min-height: 126px;
  }

  .editorial-card span {
    min-width: 0;
    padding: 12px;
    align-content: center;
  }

  .editorial-card strong,
  .editorial-card--lead strong {
    font-size: 17px;
    line-height: 1.32;
    -webkit-line-clamp: 2;
  }

  .editorial-card small {
    font-size: 13px;
    line-height: 1.45;
    -webkit-line-clamp: 2;
  }

  .editorial-card b {
    font-size: 11px;
  }

  .category-news-wrapper {
    padding-top: 8px;
  }

  .mrt-section {
    gap: 14px;
    padding: 12px 0 34px;
  }

  .booking-search-panel.is-open {
    align-content: start;
    justify-items: center;
    gap: 0;
    height: 100dvh;
    overflow-y: auto;
    padding: 18px 0 calc(120px + env(safe-area-inset-bottom));
    background: #fff;
    backdrop-filter: none;
  }

  .booking-search-panel .section-heading {
    width: min(430px, calc(100vw - 32px));
    padding: 20px 20px 12px;
    border-radius: 24px 24px 0 0;
    background: #fff;
    box-shadow: none;
  }

  .booking-search-close {
    position: absolute;
    top: 14px;
    right: 12px;
    width: 44px;
    min-height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 0;
  }

  .booking-search-close::before {
    content: "×";
    color: var(--ink);
    font-size: 34px;
    font-weight: 500;
    line-height: 1;
  }

  .booking-search-panel .section-heading::before {
    display: none;
  }

  .booking-search-panel .section-heading .eyebrow,
  .booking-search-panel .section-heading p {
    display: none;
  }

  .booking-search-panel .section-heading h2 {
    max-width: calc(100% - 60px);
    font-size: 24px;
    line-height: 1.25;
  }

  .booking-search-panel .mrt-search-box,
  .booking-search-panel .section-status,
  .booking-search-panel .mrt-grid {
    width: min(430px, calc(100vw - 32px));
    border-radius: 0;
    background: #fff;
  }

  .mrt-search-box {
    min-height: auto;
    align-content: start;
    padding: 8px 20px 36px;
    border: 0;
    border-radius: 0 0 24px 24px;
    box-shadow: none;
  }

  .mrt-search-tabs {
    order: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    width: 100%;
    margin: 0 0 22px;
    padding: 4px;
    overflow: visible;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #f6f5f2;
    scrollbar-width: none;
  }

  .mrt-search-tabs::-webkit-scrollbar {
    display: none;
  }

  .mrt-search-tabs button {
    min-height: 42px;
    padding: 0 6px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--ink);
    font-size: 13px;
    white-space: nowrap;
  }

  .mrt-search-tabs button.is-active {
    border: 0;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
  }

  .mrt-search-form > button {
    min-height: 46px;
    font-size: 15px;
  }

  .mrt-search-form,
  .mrt-search-form.is-active {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .mrt-flight-promo {
    display: none !important;
  }

  .mrt-flight-promo::-webkit-scrollbar {
    display: none;
  }

  .mrt-flight-promo article {
    min-height: 106px;
  }

  .mrt-flight-promo strong {
    font-size: 21px;
  }

  .mrt-quick-search {
    gap: 24px;
  }

  .mrt-search-field input {
    min-height: 54px;
    padding-right: 18px;
    padding-left: 52px;
    border: 0;
    border-radius: 999px;
    background: #f4f5f6;
    font-size: 17px;
  }

  .mrt-search-field > span {
    left: 18px;
    font-size: 26px;
  }

  .mrt-chip-group {
    gap: 16px;
  }

  .mrt-chip-group h3 {
    font-size: 18px;
  }

  .mrt-chip-list {
    gap: 10px 8px;
  }

  .mrt-chip-list button {
    min-height: 44px;
    padding: 0 17px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    box-shadow: 0 2px 6px rgba(20, 20, 20, 0.03);
    font-size: 15px;
  }

  .mrt-search-form > button {
    width: 100%;
    margin-top: 2px;
    min-height: 50px;
    border-radius: 999px;
  }

  .mrt-search-options {
    border-top: 1px solid var(--line);
    padding-top: 12px;
  }

  .booking-search-panel.has-results .mrt-grid {
    margin-top: 14px;
    padding: 0;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(20, 20, 20, 0.08);
  }

  .booking-search-panel.has-results .mrt-panel {
    border: 0;
    box-shadow: none;
  }

  .mrt-search-options summary {
    font-size: 14px;
  }

  .mrt-option-grid {
    grid-template-columns: 1fr;
  }

  .mrt-search-form[data-mrt-form="flight"].is-active {
    grid-template-columns: 1fr;
    padding: 0;
    box-shadow: none;
  }

  .mrt-search-form[data-mrt-form="flight"].is-active .mrt-chip-list {
    gap: 10px;
  }

  .mrt-search-form[data-mrt-form="flight"].is-active .mrt-chip-list button {
    min-width: 74px;
    min-height: 44px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    color: var(--ink);
    box-shadow: none;
  }

  .mrt-search-form[data-mrt-form="flight"].is-active .mrt-chip-list button.is-selected {
    border-color: var(--accent);
    background: var(--accent);
    color: #fff;
  }

  .mrt-search-form[data-mrt-form="flight"].is-active > button {
    border-color: var(--accent-deep);
    background: var(--accent-deep);
    color: #fff;
  }

  .mrt-search-form[data-mrt-form="flight"].is-active .mrt-flight-trip-tabs {
    display: flex;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .mrt-search-form[data-mrt-form="flight"].is-active > label {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
  }

  .mrt-coupon-panel {
    padding: 14px;
    border-radius: 18px;
  }

  .mrt-coupon-panel h3 {
    font-size: 21px;
  }

  .mrt-coupon-grid {
    grid-template-columns: 1fr;
  }

  .mrt-search-form input,
  .mrt-search-form select {
    min-height: 46px;
  }

  .mrt-search-form > button {
    width: 100%;
  }

  .mrt-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .mrt-flight-destination-head h3 {
    font-size: 23px;
  }

  .mrt-flight-destination {
    grid-template-columns: 48px minmax(0, 1fr) 22px;
    gap: 11px;
    min-height: 76px;
    padding: 13px 14px;
  }

  .mrt-flight-destination > span {
    width: 48px;
    height: 48px;
  }

  .mrt-flight-destination strong {
    font-size: 17px;
  }

  .mrt-panel {
    padding: 14px;
    border-radius: 18px;
  }

  .mrt-panel-heading h3 {
    font-size: 21px;
  }

  .mrt-product-card {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 11px;
  }

  .mrt-product-card img,
  .mrt-placeholder {
    width: 92px;
    border-radius: 14px;
  }

  .mrt-product-card h3 {
    font-size: 16px;
  }

  .mrt-feed-module {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    padding: 16px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
  }

  .mrt-feed-module-head h3 {
    font-size: 22px;
  }

  .mrt-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-columns: unset;
    grid-auto-flow: row;
    gap: 10px;
    overflow: visible;
    padding: 0;
    scroll-snap-type: none;
  }

  .mrt-rail-card {
    width: 100%;
  }

  .mrt-rail-image {
    aspect-ratio: 4 / 3;
  }

  .mrt-rail-copy strong {
    min-height: 40px;
    font-size: 15px;
  }

  .mrt-flight-card strong {
    font-size: 19px;
  }

  #categoryNewsSections {
    gap: 34px;
  }

  .category-news-block {
    gap: 12px;
    padding-bottom: 30px;
  }

  .category-news-heading h2 {
    font-size: 27px;
    line-height: 1.18;
  }

  .category-news-heading {
    align-items: start;
  }

  .category-magazine-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .category-magazine-card a {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 10px 12px;
    align-items: start;
  }

  .category-magazine-card .image-frame {
    grid-row: span 4;
    aspect-ratio: 4 / 3;
  }

  .category-magazine-card strong {
    font-size: 16px;
  }

  .category-magazine-card p {
    -webkit-line-clamp: 1;
  }

  .category-feature-card,
  .category-mini-card {
    border-radius: 16px;
  }

  .category-feature-card strong {
    padding: 13px 14px 16px;
    font-size: 21px;
    line-height: 1.22;
  }

  .category-mini-row {
    gap: 8px;
  }

  .category-mini-card a {
    padding: 7px;
  }

  .category-mini-card strong {
    min-height: 36px;
    font-size: 13px;
  }

  .category-list-card a {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 12px;
    padding: 11px 0;
  }

  .category-list-card strong {
    font-size: 15px;
  }

  .hero-grid {
    gap: 14px;
  }

  .hero-actions {
    justify-content: stretch;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .side-card a,
  .curation-card a {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .coupang-section {
    gap: 14px;
    padding: 4px 0 34px;
  }

  .coupang-section .section-heading {
    display: grid;
    gap: 10px;
  }

  .coupang-section .section-heading h2 {
    font-size: 24px;
    line-height: 1.2;
  }

  .coupang-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .coupang-card {
    border-radius: 18px;
    box-shadow: none;
  }

  .coupang-card a {
    grid-template-columns: 96px minmax(0, 1fr);
    min-height: 112px;
  }

  .coupang-card img,
  .coupang-placeholder {
    width: 96px;
    min-height: 112px;
  }

  .coupang-card strong {
    font-size: 15px;
  }

  .card-grid,
  .booking-grid,
  .curation-list,
  .category-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .content-section,
  .booking-section,
  .category-hub,
  .faq-section {
    padding: 40px 0;
  }
}

/* Landing magazine layout: separate the hero story from its artwork and use a clean card grid. */
@media (min-width: 861px) {
  .landing-news-feed {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "status"
      "recommend"
      "all"
      "feed";
    gap: 28px;
    padding-top: 28px;
  }

  .landing-news-feed .featured-news-card {
    min-height: 0;
  }

  .landing-news-feed .news-feature-card {
    border: 1px solid var(--line);
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .landing-news-feed .news-feature-card a {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    height: auto;
    position: static;
  }

  .landing-news-feed .news-feature-card .image-frame--hero {
    height: auto;
    min-height: 420px;
    aspect-ratio: 4 / 3;
    border-radius: 27px 0 0 27px;
  }

  .landing-news-feed .news-feature-body {
    position: static;
    inset: auto;
    display: grid;
    align-content: center;
    padding: 44px;
    color: var(--ink);
    background: var(--surface);
  }

  .landing-news-feed .news-feature-body h2,
  .landing-news-feed .news-feature-body p,
  .landing-news-feed .news-feature-body .article-meta,
  .landing-news-feed .news-feature-body .category-label {
    color: inherit;
  }

  .landing-news-feed .news-feature-body h2 {
    max-width: 560px;
    font-size: clamp(32px, 3.2vw, 52px);
    line-height: 1.1;
  }

  .landing-news-feed .news-feature-body p {
    max-width: 500px;
    color: var(--muted);
  }

  .landing-news-feed .recommend-news-row {
    grid-area: recommend;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: auto;
    gap: 16px;
    min-height: 0;
  }

  .landing-news-feed .news-recommend-card {
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(20, 20, 20, 0.05);
  }

  .landing-news-feed .news-recommend-card a {
    display: grid;
    height: auto;
    gap: 0;
  }

  .landing-news-feed .news-recommend-card .image-frame--recommend {
    height: auto;
    aspect-ratio: 4 / 3;
    border-radius: 19px 19px 0 0;
  }

  .landing-news-feed .news-recommend-body {
    display: grid;
    gap: 7px;
    padding: 14px 15px 17px;
  }

  .landing-news-feed .news-recommend-body .category-label {
    color: var(--warm);
  }

  .landing-news-feed .news-recommend-body strong {
    position: static;
    min-height: 48px;
    padding: 0;
    color: var(--ink);
    background: transparent;
    font-size: 17px;
    line-height: 1.35;
  }
}

/* Keep the magazine composition readable on tablet and phone widths. */
@media (max-width: 860px) {
  .landing-news-feed .featured-news-card {
    min-height: 0;
  }

  .landing-news-feed .news-feature-card {
    border-radius: 22px;
    box-shadow: 0 12px 26px rgba(20, 20, 20, 0.05);
  }

  .landing-news-feed .news-feature-card a {
    display: grid;
    height: auto;
  }

  .landing-news-feed .news-feature-card .image-frame--hero {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
    border-radius: 21px 21px 0 0;
  }

  .landing-news-feed .news-feature-body {
    position: static;
    padding: 24px 22px 26px;
    color: var(--ink);
    background: var(--surface);
  }

  .landing-news-feed .news-feature-body h2,
  .landing-news-feed .news-feature-body p,
  .landing-news-feed .news-feature-body .article-meta,
  .landing-news-feed .news-feature-body .category-label {
    color: inherit;
  }

  .landing-news-feed .news-feature-body p {
    color: var(--muted);
  }

  .landing-news-feed .recommend-news-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
    gap: 12px;
    min-height: 0;
  }

  .landing-news-feed .news-recommend-card {
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
  }

  .landing-news-feed .news-recommend-card a {
    display: grid;
    height: auto;
    gap: 0;
  }

  .landing-news-feed .news-recommend-card .image-frame--recommend {
    height: auto;
    aspect-ratio: 4 / 3;
    border-radius: 15px 15px 0 0;
  }

  .landing-news-feed .news-recommend-body {
    display: grid;
    gap: 5px;
    padding: 11px 12px 14px;
  }

  .landing-news-feed .news-recommend-body .category-label {
    color: var(--warm);
    font-size: 11px;
  }

  .landing-news-feed .news-recommend-body strong {
    position: static;
    min-height: 0;
    padding: 0;
    color: var(--ink);
    background: transparent;
    font-size: 15px;
    line-height: 1.35;
  }
}

@media (max-width: 720px) {
  .landing-news-feed .news-feature-body {
    padding: 21px 18px 23px;
  }

  .landing-news-feed .news-feature-body h2 {
    font-size: 27px;
    line-height: 1.18;
  }

  .landing-news-feed .recommend-news-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-news-feed .recommend-news-row .news-recommend-card:nth-child(n+4) {
    display: block;
  }

  .landing-news-feed .recommend-news-row .news-recommend-card:nth-child(n+5) {
    display: none;
  }
}

/* Keep the landing feed structure consistent across desktop and mobile.
   Only the available width changes; the article content remains in the same flow. */
@media (min-width: 861px) {
  .landing-news-feed .news-feature-card a {
    display: grid;
    grid-template-columns: 1fr;
  }

  .landing-news-feed .news-feature-card .image-frame--hero {
    aspect-ratio: 16 / 8;
    min-height: 0;
    border-radius: 27px 27px 0 0;
  }

  .landing-news-feed .news-feature-card .news-feature-body {
    position: static;
    padding: 30px 40px 36px;
  }

  .landing-news-feed .news-feature-card .news-feature-body h2 {
    max-width: 860px;
    font-size: clamp(32px, 3vw, 48px);
    line-height: 1.2;
  }
}
