/* ============================================================
   Classic Holidays — The Journal
   Editorial-magazine redesign for the blog (listing + single post).
   Loaded only on blog post / blog index / archive / search
   (see adm_header_scripts() conditional enqueue in inc/enqueue.php).

   Scope is kept tight so nothing leaks to destinations / pages:
     - .nile-journal           → wrappers added in single.php / index.php
     - body.blog / .archive / .search / .single-post → page-level canvas
   Brand: gold #B5995C, charcoal #333. Type: Lora (serif) + Mulish (sans).
   No new web fonts requested — Lora + Mulish are already in <head>.
   ============================================================ */

/* ---- Tokens ------------------------------------------------ */
body.blog,
body.archive,
body.search,
body.single-post,
.nile-journal {
  --ink:        #2c2a26;   /* warm near-black for headlines      */
  --ink-body:   #3a352e;   /* article body text                  */
  --ink-soft:   #6f675b;   /* meta, excerpts                     */
  --ink-faint:  #a89d8b;   /* hairline labels                    */
  --gold:       #b5995c;   /* brand gold                         */
  --gold-deep:  #93753c;   /* gold hover / pressed               */
  --ivory:      #faf6ef;   /* page canvas                        */
  --ivory-deep: #f3ecdd;   /* alternating band / rail card       */
  --paper:      #ffffff;
  --line:       rgba(44, 42, 38, .13);
  --line-gold:  rgba(181, 153, 92, .55);
  --serif: 'Lora', Georgia, 'Times New Roman', serif;
  --sans:  'Mulish', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Ivory canvas behind the content band (header/footer keep theirs) */
body.blog,
body.archive,
body.search,
body.single-post { background: var(--ivory); }

.nile-journal { color: var(--ink); }
.nile-journal *,
.nile-journal *::before,
.nile-journal *::after { box-sizing: border-box; }

/* ---- Shared editorial primitives --------------------------- */
.journal-kicker {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 .9rem;
}
.journal-kicker--light { color: #e7d6a8; }

.journal-meta {
  font-family: var(--sans);
  font-size: .82rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.journal-meta .dot {
  display: inline-block;
  width: 3px; height: 3px;
  margin: 0 .6em;
  border-radius: 50%;
  background: var(--gold);
  vertical-align: middle;
}

.journal-rule {
  display: block;
  width: 64px;
  height: 1px;
  margin: 1.6rem auto 0;
  background: var(--gold);
}

/* Section heading used above grids */
.journal-sectionhead {
  text-align: center;
  margin: 0 0 3rem;
}
.journal-sectionhead .journal-kicker { margin-bottom: .55rem; }
.journal-sectionhead h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--ink);
  margin: 0;
  letter-spacing: .005em;
}

/* ============================================================
   LISTING  (index.php → blog / category / tag / search / author)
   ============================================================ */

/* -- Banner kept from header_short_banner.php, restyled editorially.
      The search widget + page title are preserved; we only refine the
      overlay + typography and inject a gold kicker above the title. -- */
body.blog .header-section,
body.archive .header-section,
body.search .header-section {
  min-height: 44vh;
  align-items: flex-end;
  padding-bottom: 3rem;
}
body.blog .header-section .banner-overlay,
body.archive .header-section .banner-overlay,
body.search .header-section .banner-overlay {
  background: linear-gradient(180deg, rgba(20,17,12,.16) 0%, rgba(20,17,12,.32) 45%, rgba(20,17,12,.74) 100%);
}
body.blog .header-section h1,
body.archive .header-section h1,
body.search .header-section h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.5rem, 5.4vw, 4.3rem);
  line-height: 1.06;
  letter-spacing: -.008em;
  margin: 0;
}
body.blog .header-section h1::before,
body.archive .header-section h1::before,
body.search .header-section h1::before {
  content: 'The Classic Holidays Journal';
  display: block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: .76rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #e7d6a8;
  margin-bottom: 1.1rem;
}
body.blog .header-section #breadcrumbs,
body.archive .header-section #breadcrumbs,
body.search .header-section #breadcrumbs { opacity: .85; }

/* Page-1 lead story (horizontal feature) ---------------------- */
.nile-listing { padding: clamp(3rem, 5vw, 5rem) 0 1.5rem; }

.journal-lead {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(1.8rem, 4.5vw, 4rem);
  align-items: center;
  margin-bottom: clamp(4rem, 7vw, 6rem);
  padding-bottom: clamp(4rem, 7vw, 6rem);
  border-bottom: 1px solid var(--line);
}
.journal-lead-media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.journal-lead-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.1s cubic-bezier(.16,.84,.44,1);
}
.journal-lead:hover .journal-lead-media img { transform: scale(1.04); }

.journal-lead-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -.012em;
  margin: 0 0 1.2rem;
}
.journal-lead-title a { color: var(--ink); text-decoration: none; }
.journal-lead-title a:hover { color: var(--gold-deep); }
.journal-lead-excerpt {
  font-family: var(--serif);
  font-size: 1.12rem;
  line-height: 1.72;
  color: var(--ink-soft);
  margin: 0 0 1.6rem;
  max-width: 34rem;
}
.journal-lead .journal-meta { margin-bottom: 1.3rem; display: block; }

/* "Read the story →" call-to-read --------------------------- */
.journal-more {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  font-family: var(--sans);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding-bottom: .35rem;
  border-bottom: 1px solid var(--gold);
  transition: color .25s ease, gap .25s ease;
}
.journal-more::after { content: '\2192'; color: var(--gold); transition: transform .25s ease; }
.journal-more:hover { color: var(--gold-deep); gap: .95em; }
.journal-more:hover::after { transform: translateX(3px); }

/* Editorial grid (remaining posts) --------------------------- */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(3rem, 5vw, 4.6rem) clamp(2rem, 4vw, 3.6rem);
}
.journal-card { position: relative; }
.journal-card > a { text-decoration: none; color: inherit; display: block; }
.journal-card-media {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.journal-card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.1s cubic-bezier(.16,.84,.44,1);
}
.journal-card:hover .journal-card-media img { transform: scale(1.05); }
.journal-card .journal-kicker { margin-bottom: .75rem; }
.journal-card-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.16;
  color: var(--ink);
  margin: 0 0 .85rem;
  transition: color .25s ease;
}
.journal-card:hover .journal-card-title { color: var(--gold-deep); }
.journal-card .journal-meta { display: block; margin-bottom: .85rem; }
.journal-card-excerpt {
  font-family: var(--serif);
  font-size: 1.02rem;
  line-height: 1.66;
  color: var(--ink-soft);
  margin: 0 0 1.2rem;
}
.journal-card .journal-more { font-size: .72rem; }

/* Pagination — elevated specificity to beat style-footer.css --- */
.nile-journal .journal-pagination { margin: clamp(3rem, 6vw, 5rem) 0 1rem; }
.nile-journal .journal-pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .35rem;
  font-family: var(--sans);
}
.nile-journal .journal-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.7rem;
  height: 2.7rem;
  padding: 0 .35rem;
  font-size: .95rem;
  letter-spacing: .04em;
  color: var(--ink-soft);
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 0;
  transition: color .2s ease, border-color .2s ease;
}
.nile-journal .journal-pagination .page-numbers:hover { color: var(--gold-deep); }
.nile-journal .journal-pagination .page-numbers.current {
  color: var(--gold);
  border-color: var(--line-gold);
}
.nile-journal .journal-pagination .page-numbers.prev,
.nile-journal .journal-pagination .page-numbers.next {
  text-transform: uppercase;
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .16em;
}

/* ---- Masthead cover: the lead story IS the magazine front --- */
.journal-masthead-cover {
  position: relative;
  display: flex;
  /* Size to the viewport MINUS the fixed site header so a sliver of "The Latest"
     always peeks — independent of display scaling (Default vs More Space) or window
     height. ~290px ≈ top bar + logo + nav + the intended peek. */
  min-height: clamp(320px, calc(100vh - 380px), 720px);
  min-height: clamp(320px, calc(100svh - 380px), 720px);
  overflow: hidden;
  background: #1a1712;
}
.journal-masthead-cover .jmc-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 1.5s cubic-bezier(.16,.84,.44,1);
}
.journal-masthead-cover:hover .jmc-img { transform: scale(1.03); }
.jmc-scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(16,13,9,.55) 0%, rgba(16,13,9,.12) 26%, rgba(16,13,9,.18) 52%, rgba(16,13,9,.9) 100%);
}
.jmc-inner {
  position: relative; z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: clamp(1.1rem, 2.5vw, 1.9rem);
  padding-bottom: clamp(1.8rem, 3.5vw, 3rem);
}
.jmc-eyebrow {
  display: block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #e7d6a8;
  margin-bottom: .5rem;
}
.jmc-masthead-title {
  font-family: var(--serif);
  font-weight: 600;
  color: #fff;
  font-size: clamp(1.35rem, 2.1vw, 1.95rem);
  letter-spacing: .01em;
  margin: 0;
  text-shadow: 0 1px 16px rgba(0,0,0,.32);
}
.jmc-story { display: block; text-decoration: none; max-width: 54rem; }
.jmc-story .journal-kicker--light { margin-bottom: .5rem; }
.jmc-story-title {
  font-family: var(--serif);
  font-weight: 600;
  color: #fff;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -.012em;
  margin: 0 0 .8rem;
  text-shadow: 0 2px 30px rgba(0,0,0,.34);
  transition: color .25s ease;
}
.jmc-story:hover .jmc-story-title { color: #f4e9cf; }
.jmc-story-excerpt {
  font-family: var(--serif);
  font-size: 1.04rem;
  line-height: 1.55;
  color: rgba(255,255,255,.9);
  margin: 0 0 1.2rem;
  max-width: 40rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ---- Slim masthead (paged pages / no results) -------------- */
.journal-masthead-slim {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(1.5rem, 3vw, 2.4rem);
  border-bottom: 1px solid var(--line);
}
.journal-masthead-slim .journal-kicker { color: var(--gold-deep); margin-bottom: .6rem; }
.journal-masthead-slim h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--ink);
  margin: 0;
  letter-spacing: -.005em;
}
.journal-empty {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--ink-soft);
  padding: 2.5rem 0;
}
.journal-empty a { color: var(--gold-deep); }

@media (max-width: 767px) {
  .journal-masthead-cover { min-height: clamp(300px, calc(100svh - 230px), 520px); }
  .jmc-story-title { font-size: clamp(1.9rem, 8vw, 2.7rem); }
}

/* ---- (legacy) inline cover story — kept for safety --------- */
.journal-coverwrap { padding: clamp(2.5rem, 5vw, 4.5rem) 0 0; }
.journal-cover {
  position: relative;
  display: block;
  height: clamp(420px, 60vh, 660px);
  overflow: hidden;
}
.journal-cover img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.3s cubic-bezier(.16,.84,.44,1);
}
.journal-cover:hover img { transform: scale(1.04); }
.journal-cover-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(16,13,9,.05) 0%, rgba(16,13,9,.28) 48%, rgba(16,13,9,.86) 100%);
}
.journal-cover-inner {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: clamp(1.8rem, 4vw, 3.6rem);
  max-width: 52rem;
}
.journal-cover-title {
  font-family: var(--serif);
  font-weight: 600;
  color: #fff;
  font-size: clamp(2rem, 4.6vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -.014em;
  margin: 0 0 1rem;
  text-shadow: 0 2px 30px rgba(0,0,0,.3);
}
.journal-meta--light { color: rgba(255,255,255,.86); }
.journal-meta--light .dot { background: var(--gold); }
.journal-cover-excerpt {
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255,255,255,.9);
  margin: 1rem 0 1.5rem;
  max-width: 40rem;
}
.journal-more--light { color: #fff; border-color: rgba(255,255,255,.55); }
.journal-more--light:hover { color: #fff; border-color: var(--gold); }

/* ---- Section head: left-aligned label with a trailing rule -- */
.journal-sectionhead--left {
  text-align: left;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin: 0 0 2.4rem;
}
.journal-sectionhead--left .journal-kicker { margin: 0; color: var(--gold-deep); white-space: nowrap; }
.journal-sectionhead--left::after { content: ''; flex: 1; height: 1px; background: var(--line); }

/* ---- "The Latest" feature cluster (1 large + 2 compact) ----- */
.journal-feature-block {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(2rem, 4vw, 3.6rem);
}
.journal-card--lead .journal-card-media { aspect-ratio: 16 / 10; margin-bottom: 1.6rem; }
.journal-card--lead .journal-card-title { font-size: clamp(1.8rem, 2.8vw, 2.7rem); }
.journal-card--lead .journal-card-excerpt { font-size: 1.08rem; }
.journal-feature-list { display: flex; flex-direction: column; gap: 1.8rem; justify-content: center; }
.journal-mini > a {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 1.3rem;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
.journal-mini-media { aspect-ratio: 1; overflow: hidden; }
.journal-mini-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 1.1s cubic-bezier(.16,.84,.44,1); }
.journal-mini:hover .journal-mini-media img { transform: scale(1.06); }
.journal-mini .journal-kicker { font-size: .66rem; margin-bottom: .5rem; }
.journal-mini-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.22rem;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 .5rem;
  transition: color .25s ease;
}
.journal-mini:hover .journal-mini-title { color: var(--gold-deep); }
.journal-mini .journal-meta { font-size: .74rem; }

/* ---- Dark "Featured Voyage" spotlight band ----------------- */
.journal-spotlight {
  background: #2b2823;
  color: #fff;
  margin: clamp(3.5rem, 6vw, 5.5rem) 0;
}
.journal-spotlight-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.journal-spotlight-media { position: relative; aspect-ratio: 3 / 2; overflow: hidden; }
.journal-spotlight-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(.16,.84,.44,1); }
.journal-spotlight-media:hover img { transform: scale(1.04); }
.journal-spotlight-body { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.journal-spotlight .journal-kicker--light { color: #d8c089; }
.journal-spotlight .star { color: var(--gold); line-height: 1; margin: .3rem 0 1.1rem; }
.journal-spotlight .star svg { width: 15px; height: 15px; }
.journal-spotlight-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.1;
  color: #fff;
  margin: 0 0 1rem;
}
.journal-spotlight-text {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255,255,255,.82);
  margin: 0 0 1.3rem;
  max-width: 36rem;
}
.journal-spotlight-text ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .45rem; }
.journal-spotlight-text li {
  position: relative;
  padding-left: 1.4rem;
  font-family: var(--sans);
  font-size: .92rem;
  line-height: 1.45;
  color: rgba(255,255,255,.85);
}
.journal-spotlight-text li:empty { display: none; }
.journal-spotlight-text li::before {
  content: '';
  position: absolute;
  left: 0; top: .5em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.journal-spotlight-text strong { font-weight: 600; color: #fff; }
.journal-spotlight-text p { margin: 0 0 .5rem; }
.journal-spotlight-price { font-family: var(--serif); font-weight: 600; font-size: 1.3rem; color: #fff; margin-bottom: 1.5rem; }

/* ---- "Explore by Destination" topic strip ------------------ */
.journal-topics { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.journal-topics-list { display: flex; flex-wrap: wrap; gap: .8rem .9rem; }
.journal-topic {
  display: inline-flex;
  align-items: baseline;
  gap: .55em;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .015em;
  color: var(--ink);
  text-decoration: none;
  padding: .7rem 1.3rem;
  border: 1px solid var(--line);
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.journal-topic span { font-size: .68rem; font-weight: 700; color: var(--ink-faint); letter-spacing: .05em; }
.journal-topic:hover { border-color: var(--gold); color: var(--gold-deep); background: rgba(181,153,92,.06); }

/* ---- "More" 3-up grid -------------------------------------- */
.journal-grid--three { grid-template-columns: repeat(3, 1fr); }
.nile-listing--more { padding-top: clamp(1.5rem, 3vw, 2.5rem); }

/* ============================================================
   SINGLE POST  (single.php)
   ============================================================ */

/* Cinematic hero --------------------------------------------- */
.journal-hero {
  position: relative;
  min-height: clamp(62vh, 64vh, 780px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #1a1712;
}
.journal-hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.journal-hero-scrim {
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(16,13,9,.10) 0%, rgba(16,13,9,.20) 40%, rgba(16,13,9,.82) 100%);
}
.journal-hero-inner {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
  padding-top: clamp(2rem, 4vw, 3rem);
}
.journal-hero-title {
  font-family: var(--serif);
  font-weight: 600;
  color: #fff;
  font-size: clamp(2.4rem, 5.6vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -.012em;
  margin: 0 0 1.3rem;
  max-width: 18ch;
  text-shadow: 0 2px 30px rgba(0,0,0,.28);
}
.journal-hero-meta { color: rgba(255,255,255,.9); }
.journal-hero-meta .dot { background: var(--gold); }

/* Breadcrumbs (subtle, kept for SEO) ------------------------- */
.nile-journal .journal-breadcrumbs {
  padding: 1.6rem 0 0;
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .04em;
}
.nile-journal .journal-breadcrumbs #breadcrumbs,
.nile-journal .journal-breadcrumbs a { color: var(--ink-faint); }
.nile-journal .journal-breadcrumbs a:hover { color: var(--gold-deep); }

/* Single-post layout: wide article + sticky tour-ad rail ----- */
.nile-single { padding-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.journal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(300px, 27%, 358px);
  gap: clamp(2.5rem, 4vw, 4.5rem);
  align-items: start;
  padding-top: clamp(.75rem, 2vw, 1.75rem);
}
.journal-article { min-width: 0; padding: 0 0 clamp(1.5rem, 3vw, 2.5rem); }

/* Share row (top of the article column) --------------------- */
.journal-share {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 2rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--line);
}
.journal-share-label {
  font-family: var(--sans);
  font-weight: 700;
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-right: .2rem;
}
.journal-share .share-box { display: flex; gap: .6rem; }
.journal-share a.w-sharing-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}
.journal-share a.w-sharing-item:hover {
  border-color: var(--gold);
  background: var(--gold);
  transform: translateY(-2px);
}
.journal-share a.w-sharing-item svg { width: 15px; height: 15px; fill: var(--ink); transition: fill .25s ease; }
.journal-share a.w-sharing-item:hover svg { fill: #fff; }
.journal-share .publish-date { margin-left: auto; }
.journal-share .publish-date strong {
  font-family: var(--sans);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* Article body ---------------------------------------------- */
.article-body {
  max-width: 58rem;
  margin: 2.2rem 0 0;
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.84;
  color: var(--ink-body);
}
.article-body > p { margin: 0 0 1.5rem; }

/* Lead paragraph + drop cap */
.article-body > p:first-of-type {
  font-size: 1.27rem;
  line-height: 1.7;
  color: var(--ink);
}
.article-body > p:first-of-type::first-letter {
  float: left;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 4.4em;
  line-height: .82;
  padding: .06em .12em 0 0;
  margin-top: .04em;
  color: var(--gold);
}

/* Content headings */
.article-body h2,
.article-body h3,
.article-body h4 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.22;
  margin: 2.7rem 0 1rem;
}
.article-body h2 { font-size: clamp(1.7rem, 2.6vw, 2.2rem); }
.article-body h2::after {
  content: '';
  display: block;
  width: 48px; height: 1px;
  margin-top: .8rem;
  background: var(--gold);
}
.article-body h3 { font-size: 1.5rem; color: var(--gold-deep); }
.article-body h4 { font-size: 1.22rem; }

.article-body a {
  color: var(--gold-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--line-gold);
  transition: border-color .2s ease, color .2s ease;
}
.article-body a:hover { color: var(--ink); border-color: var(--ink); }

.article-body ul,
.article-body ol { margin: 0 0 1.5rem; padding-left: 1.3rem; }
.article-body li { margin-bottom: .55rem; }
.article-body ul li::marker { color: var(--gold); }
.article-body ol li::marker { color: var(--gold); font-family: var(--sans); }

.article-body img,
.article-body figure { max-width: 100%; height: auto; }
.article-body figure { margin: 2.4rem 0; }
.article-body figcaption,
.article-body .wp-caption-text {
  font-family: var(--sans);
  font-size: .82rem;
  letter-spacing: .04em;
  color: var(--ink-faint);
  margin-top: .7rem;
  text-align: center;
}
.article-body .aligncenter { display: block; margin-left: auto; margin-right: auto; }

/* Pull quotes (upright Lora — site font has no italic) */
.article-body blockquote {
  position: relative;
  margin: 2.6rem 0;
  padding: .4rem 0 .4rem 2rem;
  border-left: 2px solid var(--gold);
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.55rem;
  line-height: 1.45;
  color: var(--ink);
}
.article-body blockquote p { margin: 0 0 .6rem; }
.article-body blockquote cite {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-weight: 700;
  font-size: .76rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: .6rem;
}

/* Closing rule under the article */
.journal-endrule {
  display: block;
  width: 56px; height: 2px;
  margin: 3rem 0 0;
  background: var(--gold);
}

/* ---- Sticky tour-ad rail (brand block + featured packages) -- */
.journal-rail {
  position: sticky;
  top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Brand USP block — cream card with the logo overlapping the top */
.journal-usp {
  position: relative;
  text-align: center;
  background: var(--ivory-deep);
  margin-top: 2.4rem;
  padding: 0 1.4rem 1.8rem;
}
.journal-usp .short-logo {
  position: absolute;
  left: 0; right: 0; top: -2.4rem;
  margin: 0 auto;
}
.journal-usp .short-logo svg { width: 76px; height: 76px; filter: drop-shadow(0 6px 18px rgba(0,0,0,.10)); }
.journal-usp .short-logo svg circle { fill: var(--paper); }
.journal-usp .title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.45rem;
  color: var(--ink);
  margin: 0 0 .8rem;
  padding-top: 3rem;
}
.journal-usp .text {
  font-family: var(--serif);
  font-size: .96rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 auto 1.3rem;
}
.journal-usp .cta a {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  font-family: var(--sans);
  font-weight: 700;
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding: .8rem 1.8rem;
  border: 1px solid var(--gold);
  transition: background .25s ease, color .25s ease;
}
.journal-usp .cta a:hover { background: var(--gold); color: #fff; }

/* Featured packages (kept fields: image, stars, title, summary, price) */
.journal-packages { display: grid; grid-template-columns: 1fr; gap: 1.6rem; }
.journal-packages .package-item { background: var(--paper); box-shadow: 0 1px 0 var(--line); }
.journal-packages .package-img { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.journal-packages .package-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.journal-packages .offer-inc {
  position: absolute; top: 0; left: 0;
  background: var(--gold);
  color: #fff;
  font-family: var(--sans);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .5rem .85rem;
}
.journal-packages .package-content { padding: 1.1rem 1.2rem 1.4rem; }
.journal-packages .star { color: var(--gold); margin-bottom: .5rem; line-height: 1; }
.journal-packages .star svg { width: 15px; height: 15px; }
.journal-packages .package-content h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.35rem;
  line-height: 1.18;
  color: var(--ink);
  margin: 0 0 .5rem;
}
.journal-packages .package-content a { text-decoration: none; }
.journal-packages .offer { font-family: var(--sans); font-size: .88rem; color: var(--ink-soft); margin-bottom: .7rem; line-height: 1.5; }
.journal-packages .offer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .3rem; }
.journal-packages .offer li { position: relative; padding-left: 1.05rem; font-size: .84rem; line-height: 1.4; }
.journal-packages .offer li:empty { display: none; }
.journal-packages .offer li::before { content: ''; position: absolute; left: 0; top: .5em; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.journal-packages .offer strong { font-weight: 600; color: var(--ink); }
.journal-packages .offer-price { font-family: var(--serif); font-weight: 600; font-size: 1.15rem; color: var(--ink); margin-bottom: .7rem; }
.journal-packages .view-btn a {
  font-family: var(--sans);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--line-gold);
  padding-bottom: .2rem;
}
.journal-packages .view-btn a:hover { color: var(--ink); }

/* ============================================================
   Related posts ("Discover More Classic Holidays")
   ============================================================ */
.journal-related {
  padding: clamp(3.5rem, 6vw, 6rem) 0;
  border-top: 1px solid var(--line);
}
.journal-related .journal-grid { grid-template-columns: repeat(3, 1fr); gap: clamp(2.5rem, 4vw, 3.6rem); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1199px) {
  .journal-layout { grid-template-columns: minmax(0, 1fr) clamp(280px, 30%, 320px); gap: 2.5rem; }
}
@media (max-width: 991px) {
  .journal-lead { grid-template-columns: 1fr; gap: 1.6rem; }
  .journal-related .journal-grid { grid-template-columns: repeat(2, 1fr); }
  /* Single: drop the rail below the article, side-by-side cards */
  .journal-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .journal-rail { position: static; }
  .journal-packages { grid-template-columns: repeat(2, 1fr); }
  .journal-usp { max-width: 30rem; margin-left: auto; margin-right: auto; }
  .article-body { max-width: none; }
}
@media (max-width: 767px) {
  .journal-grid,
  .journal-related .journal-grid,
  .journal-packages { grid-template-columns: 1fr; }
  body.blog .header-section,
  body.archive .header-section,
  body.search .header-section { min-height: 48vh; }
  .journal-hero { min-height: 58vh; }
  .article-body { font-size: 1.1rem; }
  .article-body > p:first-of-type { font-size: 1.18rem; }
  .article-body > p:first-of-type::first-letter { font-size: 3.6em; }
  .journal-share { flex-wrap: wrap; }
  .journal-share .publish-date { margin-left: 0; width: 100%; margin-top: .4rem; }
}

/* ---- Listing components: responsive ------------------------ */
@media (max-width: 991px) {
  .journal-feature-block { grid-template-columns: 1fr; gap: 2rem; }
  .journal-feature-list { flex-direction: row; }
  .journal-spotlight-grid { grid-template-columns: 1fr; }
  .journal-spotlight-media { aspect-ratio: 16 / 9; }
  .journal-spotlight-body { padding: 2rem 0 2.6rem; }
  .journal-grid--three { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .journal-grid--three { grid-template-columns: 1fr; }
  .journal-feature-list { flex-direction: column; }
  .journal-mini > a { grid-template-columns: 110px 1fr; gap: 1rem; }
  .journal-cover { height: clamp(360px, 56vh, 520px); }
  .journal-cover-title { font-size: clamp(1.7rem, 7vw, 2.4rem); }
}
