@charset "UTF-8";
/* ============================================================
   TEMPLATES — Page-specific styles that don't belong in
                components (intro sections, post content
                typography, story grids per-page, places
                grid, category desc, about intro/sections)
   Source: All 6 HTML prototypes
   DO NOT add anything not present in the HTML source.
============================================================ */

/* ----------------------------------------------------------
   HOME — Hero (Static for PageSpeed)
---------------------------------------------------------- */
/* .hero-eyebrow--anim,
.hero-title--anim,
.hero-cta--anim {
  opacity: 1;
  transform: none;
} */

/* ----------------------------------------------------------
   HOME — Editorial Bento Grids
 ---------------------------------------------------------- */
.stories-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  align-items: stretch;
}

.story-featured {
  grid-column: span 1;
}

.stories-stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  height: 100%;
}
/*
.story-small {
  height: 100%;
}
*/
.story-small .card {
  height: 100%;
}

.story-small .card-title {
  font-size: var(--text-lg);
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.story-small h3 {
  font-size: var(--text-lg);
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bio-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.bio-text p {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.destinations-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-md);
  max-width: var(--max-w);
  margin: 0 auto;
}

.dest-tile {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--color-brand-dark);
  will-change: transform;
  -webkit-tap-highlight-color: transparent;
  display: block;
}

.dest-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75);
  transition:
    transform 0.7s var(--ease-out),
    filter 0.4s;
}

.dest-tile:hover img {
  transform: scale(1.07);
  filter: brightness(0.6);
}

.dest-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, transparent 55%);
  pointer-events: none;
}

.dest-label {
  position: absolute;
  bottom: var(--space-md);
  left: var(--space-md);
  right: var(--space-md);
  z-index: 1;
  color: var(--color-white-100);
}

.dest-label .explore {
  display: block;
  font-size: 10px;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}

.dest-label strong {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  font-weight: var(--fw-medium);
  display: block;
  line-height: 1.1;
}

.memorable-section {
  padding: var(--section-v) 0;
}

.memorable-bento {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: var(--space-md);
  min-height: 560px;
}

.mem-main {
  grid-row: span 2;
}

.mem-card {
  height: 100%;
}

.mem-card .card {
  height: 100%;
}

.mem-card.insta {
  background: linear-gradient(135deg, #833ab4 0%, #fd5949 50%, #fcaf45 100%);
  color: var(--color-white-100);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.mem-card.insta .mem-card-body {
  padding: var(--space-xl);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  text-align: left;
  gap: var(--space-md);
}

.insta-handle {
  font-size: var(--text-xl);
  font-family: var(--font-serif);
  font-weight: var(--fw-medium);
}

.mem-card.insta p {
  font-size: var(--text-sm);
  opacity: 0.9;
  line-height: 1.5;
  margin: 0;
}

.mem-card.insta .insta-card-icon svg {
  width: 48px;
  height: 48px;
  stroke-width: 1.5;
}

/* ----------------------------------------------------------
   GLOBAL — Photography Layout
 ---------------------------------------------------------- */
.photography-section {
  position: relative;
  overflow: hidden;
  min-height: clamp(480px, 80svh, 900px);
  display: flex;
  flex-direction: column;
  color: var(--color-white-100);
}

.photo-bg {
  position: absolute;
  inset: 0;
  will-change: transform;
}

.photo-bg img {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
  filter: brightness(0.52);
}

.photo-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 50, 56, 0.65) 0%,
    rgba(0, 0, 0, 0.15) 100%
  );
  pointer-events: none;
}

.photo-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
  padding: clamp(100px, 18vw, 200px) var(--pad-h);
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.photo-text h2 {
  
  font-size: var(--text-2xl);
  color: var(--color-white-100);
  line-height: 1.1; 
  margin-bottom: var(--space-lg);
  
}

.photo-text p {
  font-size: var(--text-lg);
  margin-bottom: var(--space-xl);
  line-height: 1.6; 
}

.photo-card {
  background: rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-2xl);
  padding: var(--space-xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  color: var(--color-white-100);
  max-width: 480px;
  justify-self: end;
}

.photo-card h3 {
  color: var(--color-white-100);
  font-size: var(--text-xl);
  margin-bottom: var(--space-lg);
  line-height: 1.3;
}

.photo-card .loc {
  display: block;
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-brand-primary);
  margin-bottom: var(--space-xs);
}

.photo-card .btn-ghost {
  color: var(--color-white-100);
  border-color: rgba(255, 255, 255, 0.2);
}

.photo-card .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-white-100);
}

.photo-watermark {
  position: absolute;
  bottom: 7%;
  left: 50%;
  transform: translateX(-50%) translateY(20%);
  font-family: var(--font-serif);
  font-size: clamp(5rem, 18vw, 14rem);
  color: rgba(255, 255, 255, 0.09);
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
  line-height: 1;
  letter-spacing: -4px;
}

.photography-section--center .photo-content {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
 
}

.photography-section--center .photo-text {
  max-width: var(--article-max-w);
}

.photography-section--center .photo-break-quote {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  /*
  line-height: 1.25;
  margin-bottom: var(--space-xl); */
}

/* ----------------------------------------------------------
   ABOUT — Intro section
---------------------------------------------------------- */
.intro-section {
  padding: var(--space-4xl) 0 var(--space-3xl);
}

.intro-inner {
  max-width: var(--content-w);
  margin: 0 auto;
  /* padding: 0 var(--pad-h); */
}

.intro-opening {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.5;
  color: var(--color-text-heading);
  margin-bottom: var(--space-xl);
  font-weight: var(--fw-medium);
}

.intro-body {
  font-size: var(--text-base);
  line-height: 1.85;
  color: var(--color-text-main);
}

/* ----------------------------------------------------------
   COUNTRY — Category description + stories grid
---------------------------------------------------------- */
.category-desc-section {
  padding: var(--space-lg) 0 var(--space-xl);
}

.category-desc-section p {
  font-size: var(--text-base);
  line-height: 1.85;
  max-width: var(--content-w);
}

.category-desc-section p + p {
  margin-top: var(--space-sm);
}

.category-desc-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--space-4xl);
  align-items: start;
}

.category-weather-side {
  position: sticky;
  top: calc(var(--header-h) + var(--space-lg));
}

@media (max-width: 991px) {
  .category-desc-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .category-weather-side {
    position: static;
  }
}

/* Stories grid (country page 2-col) */
.intro-stories {
  padding: 0 0 var(--space-xl);
}

/* LEGACY: Consolidated into .grid-2col
.stories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}
*/

/* LEGACY: Consolidated into .card system
.story-card {
  background: var(--color-white-100);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition:
    transform var(--dur-slow) var(--ease-out),
    box-shadow var(--dur-slow);
  will-change: transform;
}

.story-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.story-card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.story-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

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

.story-card-body {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  flex: 1;
}

.story-card-body h3 {
  font-size: var(--text-xl);
  line-height: 1.25;
  flex: 1;
}

.story-card-body p {
  color: var(--color-text-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
*/

/* ----------------------------------------------------------
   COUNTRY — Places section (best places to visit)
---------------------------------------------------------- */
/* .places-section {
  padding: var(--section-v) 0;
  background: var(--color-bg-base);
} */

/* LEGACY: Consolidated into .grid-feature-left
.places-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(2, 1fr);
  gap: var(--space-lg);
  align-items: stretch;
}
*/

/* Feature card with city tags */
.dest-feature {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  min-height: 440px;
  background: var(--color-brand-dark);
}

.dest-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
  transition: transform 0.8s var(--ease-out);
}

.dest-feature:hover img {
  transform: scale(1.04);
}

.dest-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 55%);
}

.dest-feature-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  padding: var(--space-xl);
}

.dest-feature-body h3 {
  color: var(--color-white-100);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-md);
}

/* Small place cards (2 right columns) */
/* LEGACY: Consolidated into .card system
.place-card {
  background: var(--color-white-100);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition:
    transform var(--dur-base) var(--ease-out),
    box-shadow var(--dur-base);
  will-change: transform;
}

.place-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.place-card-img {
  overflow: hidden;
  height: 160px;
}

.place-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.place-card:hover .place-card-img img {
  transform: scale(1.05);
}

.place-card-body {
  padding: var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.place-card-body h3 {
  font-size: var(--text-base);
  line-height: 1.3;
  flex: 1;
}

.place-card-body p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
*/

/* ----------------------------------------------------------
   COUNTRY — Travel section
---------------------------------------------------------- */
.travel-section {
  padding: var(--section-v) 0;
}

/* ----------------------------------------------------------
   COUNTRY — Photography section watermark text
---------------------------------------------------------- */
.photo-section {
  position: relative;
  overflow: hidden;
  min-height: clamp(480px, 78svh, 900px);
  display: flex;
  flex-direction: column;
  color: var(--color-white-100);
}

/* ----------------------------------------------------------
   SINGLE POST — Content typography
---------------------------------------------------------- */
.post-content {
  min-width: 0;
  font-size: var(--text-base);
  line-height: 1.85;
  letter-spacing: 0.01em;
}

/* Intro paragraph */
.post-intro {
  line-height: 1.9;
  color: var(--color-text-main);
  margin-bottom: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid var(--color-border-subtle);
}

/* Chapter sections */
.chapter-section {
  margin-bottom: var(--space-4xl);
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.chapter-section h2 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-lg);
  line-height: 1.25;
  letter-spacing: -0.015em;
}

.chapter-section h2 .chapter-num {
  display: inline-block;
  color: var(--color-brand-primary);
  margin-right: var(--space-xs);
  font-size: var(--text-lg);
}

.chapter-section p, .post-intro p:not(:first-child) {
  margin-bottom: var(--space-lg);
 /*
  line-height: 1.85;
  max-width: 68ch; */
}
.chapter-section img {
 border-radius: var(--radius-xl);
}
.chapter-section a {
  color: var(--color-brand-primary);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.chapter-section a:hover {
  color: var(--color-brand-dark);
}

.chapter-section h3 {
  font-size: var(--text-xl);
  margin: var(--space-xl) 0 var(--space-md);
}

/* .chapter-section b,
.chapter-section strong {
  font-weight: var(--fw-bold);
} */

/* Lists */
.chapter-section ul,
.chapter-section ol {
  border-left: 4px solid var(--color-border-subtle);
  padding-left: var(--space-2xl);
  margin: var(--space-lg) 0 var(--space-xl);
}
.tip-box ul {
  border: none;
  margin: 0;
  padding-left: var(--space-lg);
}
.chapter-section ul li {
  list-style: none;
  margin-bottom: var(--space-xs);
  position: relative;
}

.chapter-section ul li::before {
  content: "\2013";
  position: absolute;
  left: calc(-1 * var(--space-lg));
  color: var(--color-brand-primary);
  font-weight: var(--fw-bold);
}

.chapter-section ol li {
  list-style: decimal;
  margin-bottom: var(--space-xs);
}

/* Content images */
.content-image {
  margin: var(--space-xl) 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.content-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* .destinations-page-header {
  padding: var(--space-4xl) 0 var(--space-2xl);
  background: var(--color-brand-dark);
  color: var(--color-white-100);
} */

.content-image figcaption {
  padding: var(--space-sm) var(--space-md);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  background: var(--color-bg-base);
  text-align: center;
}

/* 2-column gallery */
.content-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
  margin: var(--space-xl) 0;
}

.content-gallery img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 240px;
  object-fit: cover;
}

/* ----------------------------------------------------------
   HOME — Hero title must be white (overrides link colour)
---------------------------------------------------------- */
/* .hero-title a,
.hero-content h1 a,
.hero-content h2 a {
  color: var(--color-white-100);
  text-decoration: none;
}

.hero-title a:hover,
.hero-content h1 a:hover,
.hero-content h2 a:hover {
  color: rgba(255, 255, 255, .85);
} */

/* Spacing between title and CTA — matches original HTML */
.hero-cta {
  margin-top: var(--space-xl);
}

.tip-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 5px;
  border-radius: var(--radius-xl) 0 0 var(--radius-xl);
}

.tip-box-title {
  font-weight: var(--fw-bold);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-sm);
}

.tip-box p {
  margin-bottom: var(--space-sm);
}

/* .tip-box p:last-child {
  margin-bottom: 0;
} */

.tip-box.orange {
  background: var(--color-highlight-yellow-bg);
}
.tip-box.orange::before {
  background: var(--color-brand-primary);
}
.tip-box.orange .tip-box-title {
  color: var(--color-brand-primary);
}

.tip-box.green {
  background: var(--color-highlight-green-bg);
}
.tip-box.green::before {
  background: var(--color-brand-secondary);
}
.tip-box.green .tip-box-title {
  color: var(--color-brand-secondary);
}

.tip-box.blue {
  background: var(--color-highlight-blue-bg);
}
.tip-box.blue::before {
  background: var(--color-highlight-blue-text);
}
.tip-box.blue .tip-box-title {
  color: var(--color-highlight-blue-text);
}

/* ----------------------------------------------------------
   SINGLE POST — Sidebar chapter widget sticky
   Matches travelbits-single.html exactly:
   position:sticky + top only. No max-height, no overflow-y.
   The real sticky killer was overflow-x:hidden on <html> in
   base.css — fixed there with overflow-x:clip.
---------------------------------------------------------- */
.post-sidebar {
  position: sticky;
  top: calc(var(--header-h) + var(--space-lg));
}

/* ----------------------------------------------------------
   ABOUT — Photo break left-alignment fix
   Must be full-width (no container wrapper), content aligns
   to container edge matching the homepage hero.
---------------------------------------------------------- */
.photo-break {
  width: 100%;
  max-width: 100%;
}

.photo-break-content {
  max-width: min(600px, calc(var(--max-w) / 2 + var(--pad-h)));
  padding-left: max(
    var(--pad-h),
    calc((100vw - var(--max-w)) / 2 + var(--pad-h))
  );
}

/* ----------------------------------------------------------
   COUNTRY PAGE — Action grid: support up to 8 items
   Extends the 4-item nth-child colour scheme.
---------------------------------------------------------- */
.action-item:nth-child(5) a {
  background: var(--color-highlight-green-bg);
  border: 1px solid rgba(63, 99, 95, 0.2);
}
.action-item:nth-child(5) .action-icon {
  background: rgba(63, 99, 95, 0.12);
}
.action-item:nth-child(5) .action-icon svg {
  stroke: var(--color-brand-secondary);
}

.action-item:nth-child(6) a {
  background: var(--color-highlight-blue-bg);
  border: 1px solid rgba(52, 152, 219, 0.2);
}
.action-item:nth-child(6) .action-icon {
  background: rgba(52, 152, 219, 0.12);
}
.action-item:nth-child(6) .action-icon svg {
  stroke: var(--color-highlight-blue-text);
}

.action-item:nth-child(7) a {
  background: var(--color-highlight-yellow-bg);
  border: 1px solid rgba(232, 112, 35, 0.2);
}
.action-item:nth-child(7) .action-icon {
  background: rgba(232, 112, 35, 0.12);
}
.action-item:nth-child(7) .action-icon svg {
  stroke: var(--color-brand-primary);
}

.action-item:nth-child(8) a {
  background: var(--color-bg-warm);
  border: 1px solid rgba(192, 57, 43, 0.15);
}
.action-item:nth-child(8) .action-icon {
  background: rgba(192, 57, 43, 0.1);
}
.action-item:nth-child(8) .action-icon svg {
  stroke: var(--color-status-error);
}

/* ----------------------------------------------------------
   CITY HUB CARDS — 2-line excerpt instead of city tag
---------------------------------------------------------- */
/* .hub-card-excerpt {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: var(--space-sm);
} */

/* ----------------------------------------------------------
   DESTINATIONS PAGE — Countries + coming soon layout
 ---------------------------------------------------------- */
.countries-section {
  padding: var(--space-3xl) 0;
}

.countries-section-label {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-brand-secondary);
  margin-bottom: var(--space-xl);
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.coming-soon-section {
  padding: 0 0 var(--space-3xl);
}

.coming-soon-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

/* .destinations-page-header {
  /* Uses .main-header--relative from layout.css */
} */

/* ----------------------------------------------------------
   RESPONSIVE — TEMPLATES (Consolidated)
---------------------------------------------------------- */

@media (max-width: 1024px) {
  /* Country */
  .places-grid {
    grid-template-columns: 1fr 1fr;
  }
  .dest-feature {
    display: none;
  }

  /* Search results */
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Tag masonry */
  .photo-masonry {
    columns: 2;
  }

  /* Biography related */
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Destinations */
  .destinations-bento {
    grid-template-columns: repeat(3, 1fr);
  }

  .dest-tile {
    aspect-ratio: 1 / 1;
  }

  /* Countries grid */
  .countries-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .coming-soon-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* .posts-grid--3col {
    grid-template-columns: repeat(2, 1fr);
  } */
}

@media (max-width: 768px) {
  /* Country stories & places */
  .stories-grid {
    grid-template-columns: 1fr;
  }
  .places-grid {
    grid-template-columns: 1fr;
  }
  .dest-feature {
    display: block;
  }

  /* Bento grids */
  .stories-bento {
    grid-template-columns: 1fr;
  }

  .stories-stack {
    height: auto;
  }

  /* Target horizontal cards in bento stack */
  .story-small .card--horizontal {
    grid-template-columns: 140px 1fr;
    min-height: 120px;
  }

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

  .dest-tile {
    aspect-ratio: 1 / 1;
  }

  /* Photography */
  .photo-content {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    padding: clamp(80px, 15vw, 130px) var(--pad-h);
  }

  .photo-card {
    justify-self: stretch;
    max-width: none;
  }

  /* Memorable */
  .memorable-bento {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: auto;
  }

  .mem-main {
    grid-row: auto;
  }

  /* Quote */
  .quote-inner {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .quote-image-side::before {
    font-size: 10rem;
    top: -20px;
    left: -10px;
  }

  /* Single post gallery */
  .content-gallery {
    grid-template-columns: 1fr;
  }
  .content-gallery img {
    height: 220px;
  }

  /* Search results */
  .results-grid {
    grid-template-columns: 1fr;
  }

  /* Tag masonry & filters */
  .photo-masonry {
    columns: 1;
  }
  .country-filters {
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-xs);
    padding-bottom: var(--space-sm);
  }
  .country-filters::-webkit-scrollbar {
    display: none;
  }

  /* Hub grid */
  .hub-grid {
    grid-template-columns: 1fr;
  }

  /* Posts grid */
  .posts-grid,
  /* .posts-grid--3col {
    grid-template-columns: 1fr;
  } */

  /* Countries grid */
  .countries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }

  .coming-soon-grid {
    gap: var(--space-xs);
  }

  .coming-pill {
    padding: 6px 12px;
  }

  .country-card-img {
    height: 140px;
  }

  /* 404 & Error states */
  .suggestions-grid {
    grid-template-columns: 1fr;
  }
  .error-actions {
    flex-direction: column;
    align-items: center;
  }
  .error-404-bg {
    font-size: clamp(10rem, 35vw, 18rem);
  }

  /* Biography related */
  .related-grid {
    grid-template-columns: 1fr;
  }

  /* About content section */
  .content-section-inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .section-number {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  /* CTA */
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  /* FAQ */
  .faq-layout {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .faq-side {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .faq-side > * {
    flex: 1;
    min-width: 240px;
  }

  /* Info cards */
  .info-main-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "weather"
      "currency"
      "transport";
  }

  .weather-grid {
    grid-template-columns: 1fr;
  }

  /* Before travel */
  .before-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

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

@media (max-width: 480px) {
  .countries-grid {
    grid-template-columns: 1fr !important;
  }

  .coming-soon-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .coming-pill {
    padding: 5px 10px;
    font-size: 12px;
  }

  .country-filters {
    gap: var(--space-xs);
  }
}

/* ----------------------------------------------------------
   CATEGORY — Archive page refinements
---------------------------------------------------------- */
.category-description {
  margin-bottom: var(--space-2xl);
}

.archive-description {
  max-width: 800px;
}

.pagination-wrapper {
  margin-top: var(--space-3xl);
}

/* ----------------------------------------------------------
   CITY — Single Tag City refinements
---------------------------------------------------------- */
.hub-list-spacing {
  margin-top: var(--space-sm);
}

.hub-list-item {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border-subtle);
  padding: var(--space-2xs) 0;
}

/* ----------------------------------------------------------
   BIOGRAPHY — Single Biography refinements
---------------------------------------------------------- */
.biography-related-heading {
  margin-bottom: var(--space-xl);
}
