:root {
  color-scheme: light;
  --ink: #1a1a1a;
  --ink-light: #2d2d2d;
  --muted: #6b7280;
  --muted-light: #9ca3af;
  --line: #e5e0d5;
  --paper: #faf8f4;
  --soft: #f2ede3;
  --soft-2: #ede8dc;
  --accent: #0f6b57;
  --accent-dark: #0a4f41;
  --accent-light: #e8f5f2;
  --accent-mid: #c8e8e1;
  --warm: #b83b2f;
  --warm-light: #fdf1ef;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.7;
}

a {
  color: var(--accent-dark);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

/* ── Header ── */
.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(250, 248, 244, 0.96);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header__inner,
.page,
.site-footer__inner {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 64px;
}

.brand {
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand::before {
  content: "🍜";
  font-size: 17px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  font-size: 13.5px;
  font-weight: 500;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 8px;
  transition:
    background 0.15s,
    color 0.15s;
}

.nav a:hover {
  background: var(--soft);
  color: var(--ink);
}

/* ── Hero ── */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 48px;
  padding: 72px 0 64px;
  align-items: center;
}

.eyebrow {
  color: var(--warm);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 14px;
}

h1,
h2,
h3 {
  line-height: 1.18;
  letter-spacing: -0.02em;
}

h1 {
  max-width: 780px;
  margin: 0 0 20px;
  font-size: clamp(34px, 5vw, 60px);
  color: var(--ink);
}

h2 {
  margin: 0 0 22px;
  font-size: clamp(22px, 3vw, 36px);
}

h3 {
  margin: 0 0 12px;
  font-size: 19px;
}

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

.hero-panel {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 32px;
}

.hero-panel p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.65;
}

.cta-link {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--accent-dark);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 9px 18px;
  background: var(--accent-light);
  border: 1px solid var(--accent-mid);
  border-radius: 8px;
  transition:
    background 0.15s,
    border-color 0.15s;
}

.cta-link:hover {
  background: var(--accent-mid);
  border-color: var(--accent);
  text-decoration: none;
}

/* ── Section ── */
.section {
  padding: 56px 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 32px;
}

.section > h2 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-bottom: 32px;
}

/* ── Featured card ── */
.featured-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 0;
  text-decoration: none;
  margin-bottom: 28px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
  position: relative;
  overflow: hidden;
  color: var(--ink);
  min-height: 240px;
}

.featured-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    180deg,
    var(--accent) 0%,
    var(--accent-dark) 100%
  );
  border-radius: 16px 0 0 16px;
}

.featured-card:hover {
  border-color: var(--accent);
  box-shadow:
    0 12px 40px rgba(15, 107, 87, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.04);
  transform: translateY(-2px);
  color: var(--ink);
  text-decoration: none;
}

.featured-card * {
  text-decoration: none;
}

.featured-card__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.featured-badge {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: var(--accent-light);
  border: 1px solid var(--accent-mid);
  border-radius: 999px;
  padding: 3px 10px;
}

.featured-card h2 {
  font-size: clamp(20px, 2.2vw, 30px);
  margin: 0 0 14px;
  color: var(--ink);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.featured-card p {
  color: var(--muted);
  font-size: 15px;
  margin: 0 0 20px;
  line-height: 1.65;
}

.featured-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted-light);
  font-weight: 500;
}

.featured-card__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent-dark);
  font-size: 18px;
  flex-shrink: 0;
  align-self: flex-end;
  margin: 0 36px 36px 0;
  transition:
    background 0.2s,
    transform 0.2s;
}

.featured-card:hover .featured-card__arrow {
  background: var(--accent-mid);
  transform: translateX(2px);
}

/* ── Post grid ── */
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.post-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 26px 28px;
  text-decoration: none;
  color: var(--ink);
  transition:
    border-color 0.18s,
    box-shadow 0.18s,
    transform 0.18s;
  min-height: 220px;
}

.post-card:hover {
  border-color: var(--accent);
  box-shadow: 0 6px 24px rgba(15, 107, 87, 0.08);
  transform: translateY(-2px);
  color: var(--ink);
  text-decoration: none;
}

.post-card * {
  text-decoration: none;
}

.post-card h3 {
  margin: 8px 0 10px;
  font-size: 17px;
  color: var(--ink);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.post-card:hover h3 {
  color: var(--accent-dark);
}

.post-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.read-more {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-dark);
  white-space: nowrap;
}

/* ── Shared ── */
.meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  color: var(--muted-light);
  font-size: 12.5px;
}

.dot {
  opacity: 0.5;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 0;
}

.tag {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--soft);
  font-size: 11.5px;
  font-weight: 600;
  padding: 3px 10px;
}

/* ── Article layout ── */
.article {
  display: grid;
  grid-template-columns: minmax(0, 760px) 240px;
  gap: 64px;
  padding: 56px 0 80px;
  align-items: start;
}

/* ── Article header ── */
.article-header {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.article-header .eyebrow {
  margin-bottom: 16px;
}

.article-header h1 {
  font-size: clamp(28px, 4.5vw, 52px);
  margin: 0 0 16px;
}

.article-excerpt {
  font-size: 19px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 20px;
  max-width: 680px;
}

.article-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
}

/* ── Article body ── */
.article-body {
  font-size: 17px;
  line-height: 1.78;
}

.article-content p {
  margin: 0 0 22px;
}

.article-content h2 {
  font-size: clamp(20px, 2.5vw, 28px);
  margin: 48px 0 16px;
  padding-top: 8px;
  color: var(--ink);
  border-top: 2px solid var(--accent-light);
}

.article-content h3 {
  font-size: 18px;
  margin: 32px 0 12px;
  color: var(--accent-dark);
}

.article-content ul,
.article-content ol {
  padding-left: 24px;
  margin: 0 0 22px;
}

.article-content li {
  margin-bottom: 8px;
}

.article-content hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 40px 0;
}

.article-content strong {
  color: var(--ink);
  font-weight: 700;
}

.article-content em {
  color: var(--muted);
}

.article-content a {
  color: var(--accent-dark);
  text-decoration-thickness: 0.1em;
}

.article-content blockquote {
  border-left: 4px solid var(--accent);
  background: var(--soft);
  margin: 28px 0;
  padding: 18px 20px;
  border-radius: 0 8px 8px 0;
}

.data-brief,
.trust-box,
.next-actions,
.related-posts,
.trip-faq {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  margin: 32px 0;
}

.data-brief h2,
.trust-box h2,
.next-actions h2,
.related-posts h2,
.trip-faq h2 {
  font-size: 18px;
  margin: 0 0 14px;
  padding: 0;
  border: 0;
}

.data-brief p,
.trust-box p,
.next-actions p,
.related-posts p,
.trip-faq p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  margin: 0 0 14px;
}

.data-brief__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0 0;
}

.data-brief__grid div {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 8px;
  padding: 14px;
}

.data-brief__grid dt {
  color: var(--muted-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.data-brief__grid dd {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  margin: 0;
}

.data-brief__notes {
  margin-top: 18px;
}

.trust-box {
  background: var(--accent-light);
  border-color: var(--accent-mid);
}

.trust-box ul {
  margin: 0 0 12px;
  padding-left: 20px;
}

.trust-box li {
  color: var(--ink-light);
  font-size: 14px;
  margin-bottom: 6px;
}

.trust-box__note {
  color: var(--accent-dark) !important;
  font-weight: 700;
}

.next-actions__links,
.related-posts__grid {
  display: grid;
  gap: 10px;
}

.next-actions__links a,
.related-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  display: block;
  padding: 14px 16px;
  text-decoration: none;
}

.next-actions__links a:hover,
.related-card:hover {
  border-color: var(--accent);
  background: var(--accent-light);
}

.related-card span {
  color: var(--warm);
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.related-card strong {
  color: var(--ink);
  display: block;
  font-size: 15px;
  line-height: 1.35;
  margin-bottom: 8px;
}

.trip-faq__list {
  display: grid;
  gap: 10px;
}

.trip-faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 14px 16px;
}

.trip-faq summary {
  color: var(--ink);
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.trip-faq details p {
  margin: 10px 0 0;
}

/* ── TOC ── */
.toc {
  position: sticky;
  top: 88px;
  align-self: start;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 22px 20px;
}

.toc__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-light);
  margin: 0 0 14px;
}

.toc__link {
  display: block;
  padding: 5px 0;
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  line-height: 1.4;
  border-left: 2px solid transparent;
  padding-left: 12px;
  margin-left: -12px;
  transition:
    color 0.15s,
    border-color 0.15s;
}

.toc__link--h3 {
  padding-left: 24px;
  margin-left: -12px;
  font-size: 12px;
}

.toc__link:hover {
  color: var(--accent-dark);
  border-left-color: var(--accent);
}

/* ── Callout ── */
.callout {
  border-left: 4px solid var(--accent);
  background: var(--soft);
  margin: 28px 0;
  padding: 18px 20px;
  border-radius: 0 8px 8px 0;
}

/* ── Article footer ── */
.article-footer {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.back-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-dark);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  transition:
    border-color 0.15s,
    background 0.15s,
    box-shadow 0.15s;
}

.back-link:hover {
  border-color: var(--accent);
  background: var(--accent-light);
  box-shadow: 0 2px 8px rgba(15, 107, 87, 0.1);
}

/* ── Site footer ── */
.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 40px 0;
  margin-top: 24px;
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13.5px;
}

/* ── Cover image ── */
.article-cover {
  margin: 0 0 40px;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 7;
  background: var(--soft);
}

.article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Inline post images ── */
.post-image {
  margin: 32px 0;
}

.post-image img {
  width: 100%;
  border-radius: 10px;
  display: block;
  border: 1px solid var(--line);
}

.post-image figcaption {
  margin-top: 10px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

/* ── Card cover image ── */
.post-card__cover {
  margin: -26px -28px 16px;
  border-radius: 14px 14px 0 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--soft);
}

.post-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.post-card:hover .post-card__cover img {
  transform: scale(1.03);
}

.post-card__body {
  flex: 1;
}

/* ── Featured card cover (left side image) ── */
.featured-card__cover {
  width: 340px;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--soft);
  border-radius: 16px 0 0 16px;
}

.featured-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.featured-card:hover .featured-card__cover img {
  transform: scale(1.04);
}

.featured-card__body {
  flex: 1;
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ── YouTube embed ── */
.youtube-embed {
  margin: 32px 0;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.youtube-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* ── Restaurant links ── */
.restaurant-links {
  margin-top: 56px;
  padding-top: 36px;
  border-top: 2px solid var(--accent-light);
}

.restaurant-links h2 {
  font-size: 18px;
  margin: 0 0 20px;
  color: var(--ink);
  font-weight: 700;
}

.restaurant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}

.restaurant-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  text-decoration: none;
  background: #fff;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}

.restaurant-card:hover {
  border-color: var(--accent);
  box-shadow: 0 2px 12px rgba(15, 107, 87, 0.1);
}

.restaurant-card__icon {
  font-size: 20px;
  flex-shrink: 0;
}

.restaurant-card__name {
  display: block;
  font-weight: 600;
  color: var(--ink);
  font-size: 14px;
  margin-bottom: 2px;
}

.restaurant-card__meta,
.restaurant-card__guide {
  color: var(--muted);
  display: block;
  font-size: 12px;
  line-height: 1.45;
  margin-bottom: 4px;
}

.restaurant-card__icon {
  align-items: center;
  background: var(--accent-light);
  border: 1px solid var(--accent-mid);
  border-radius: 8px;
  color: var(--accent-dark);
  display: inline-flex;
  font-size: 11px;
  font-weight: 800;
  justify-content: center;
  min-height: 34px;
  min-width: 42px;
}

.restaurant-card__name-ko {
  font-weight: 400;
  color: var(--muted);
  font-size: 13px;
}

.restaurant-card__youtube {
  display: inline-block;
  font-size: 11px;
  color: #c00;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 4px;
}

.restaurant-card__youtube:hover {
  text-decoration: underline;
}

.restaurant-card__cta {
  display: block;
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .site-header__inner {
    flex-direction: row;
    align-items: center;
    padding: 0;
    min-height: 56px;
    gap: 12px;
  }

  .nav {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 2px;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 40px;
    padding-bottom: 40px;
    gap: 28px;
  }

  .section {
    padding: 36px 0;
  }

  .article {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 0 56px;
  }

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


  .featured-card {
    flex-direction: column;
    min-height: unset;
  }

  .featured-card::after {
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    width: auto;
    height: 3px;
    border-radius: 16px 16px 0 0;
  }

  .featured-card__cover {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 8;
    border-radius: 16px 16px 0 0;
  }

  .featured-card__body {
    padding: 28px 28px 20px;
  }

  .featured-card__arrow {
    display: none;
  }

  .post-card__cover {
    margin: -26px -28px 16px;
  }

  .toc {
    position: static;
    order: -1;
  }

  /* TOC collapsible on tablet */
  .toc {
    padding: 16px 18px;
  }
}

@media (max-width: 600px) {
  .site-header__inner,
  .page,
  .site-footer__inner {
    width: min(1160px, calc(100% - 28px));
  }

  .site-header__inner {
    min-height: 52px;
  }

  .brand {
    font-size: 16px;
    white-space: nowrap;
  }

  .nav a {
    padding: 6px 10px;
    font-size: 13px;
  }

  .hero {
    padding-top: 28px;
    padding-bottom: 28px;
    gap: 20px;
  }

  h1 {
    font-size: 26px;
  }

  .lead {
    font-size: 15px;
  }

  .hero-panel {
    padding: 20px 20px;
  }

  .section {
    padding: 28px 0;
  }

  .section > h2 {
    margin-bottom: 20px;
  }

  /* Featured card – tighter on mobile */
  .featured-card {
    border-radius: 12px;
    margin-bottom: 16px;
  }

  .featured-card__cover {
    aspect-ratio: 16 / 7;
    border-radius: 12px 12px 0 0;
  }

  .featured-card h2 {
    font-size: 18px;
  }

  .featured-card p {
    font-size: 14px;
    margin-bottom: 14px;
  }

  .featured-card__body {
    padding: 18px 18px 16px;
  }

  /* Post grid → compact horizontal cards on mobile */
  .post-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }


  .post-card {
    flex-direction: row;
    align-items: stretch;
    padding: 0;
    gap: 0;
    min-height: unset;
    border-radius: 12px;
    overflow: hidden;
  }

  .post-card__cover {
    width: 110px;
    flex-shrink: 0;
    margin: 0;
    border-radius: 0;
    aspect-ratio: unset;
    align-self: stretch;
  }

  .post-card__cover img {
    height: 100%;
    object-fit: cover;
  }

  .post-card__body {
    padding: 14px 14px 12px;
    flex: 1;
    min-width: 0;
  }

  .post-card h3 {
    font-size: 14px;
    margin: 4px 0 6px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .post-card p {
    font-size: 12.5px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .card-footer {
    margin-top: 8px;
  }

  .tag-list {
    display: none;
  }

  .read-more {
    font-size: 12px;
  }

  /* Article */
  .article {
    padding: 24px 0 40px;
    gap: 20px;
  }

  .article-header {
    margin-bottom: 24px;
    padding-bottom: 20px;
  }

  .article-header h1 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .article-excerpt {
    font-size: 15px;
  }

  .article-body {
    font-size: 16px;
  }

  .article-content h2 {
    font-size: 19px;
    margin-top: 36px;
  }

  .article-content h3 {
    font-size: 16px;
  }

  /* TOC hidden on mobile (visible in sidebar on desktop) */
  .toc {
    display: none;
  }

  /* Restaurant grid → 1 col */
  .restaurant-grid {
    grid-template-columns: 1fr;
  }

  .data-brief,
  .trust-box,
  .next-actions,
  .related-posts,
  .trip-faq {
    margin: 24px 0;
    padding: 18px;
  }

  .data-brief__grid {
    grid-template-columns: 1fr;
  }

  .restaurant-links {
    margin-top: 36px;
    padding-top: 24px;
  }

  /* Article cover */
  .article-cover {
    margin-bottom: 24px;
    border-radius: 8px;
    aspect-ratio: 16 / 8;
  }

  /* YouTube embed */
  .youtube-embed {
    margin: 24px 0;
    border-radius: 8px;
  }

  /* Footer */
  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
