/* ==========================================================================
   journal-v2.css
   Brand v2 — Illuminated manuscript editorial article
   Long-form astrology journal page. Linked from /journal/{slug}.php

   Palette (direct hex, no new vars):
     parchment:  #FBF3DC  #F5E8C8
     ink:        #2D1F38
     burgundy:   #6B1F2C  #4A1620
     gold:       #B89150  #8E6E3A  #F0D89A

   Typography (loaded site-wide):
     EB Garamond  — body
     Cinzel       — display, titles, drop cap
     Italianno    — script accents (em inside title)
     Marcellus    — eyebrow / small caps utility

   Scope: all selectors are nested under .journal-page so they never bleed
   into the shared top-nav.php / site-footer.php partials.
   ========================================================================== */


/* ---------- Page wrapper -------------------------------------------------- */

.journal-page {
  background:
    radial-gradient(ellipse at 20% 0%,
      rgba(184, 145, 80, 0.10) 0%,
      rgba(184, 145, 80, 0) 55%),
    radial-gradient(ellipse at 85% 90%,
      rgba(107, 31, 44, 0.06) 0%,
      rgba(107, 31, 44, 0) 50%),
    #FBF3DC;
  color: #2D1F38;
  font-family: 'EB Garamond', Georgia, 'Times New Roman', serif;
  font-feature-settings: "liga", "dlig", "onum", "kern";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Subtle parchment grain — fixed, behind everything, ignores top-nav/footer */
.journal-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image:
    radial-gradient(rgba(142, 110, 58, 0.18) 1px, transparent 1px),
    radial-gradient(rgba(74, 22, 32, 0.10) 1px, transparent 1px);
  background-size: 3px 3px, 7px 7px;
  background-position: 0 0, 1px 2px;
}


/* ==========================================================================
   Article container
   ========================================================================== */

.journal-page .ja-article {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 22px 96px;
  color: #2D1F38;
}


/* ==========================================================================
   Masthead
   ========================================================================== */

.journal-page .ja-masthead {
  max-width: 880px;
  margin: 0 auto;
  padding: 8px 0 28px;
  text-align: center;
}

.journal-page .ja-back {
  display: inline-block;
  font-family: 'Marcellus', 'EB Garamond', serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8E6E3A;
  text-decoration: none;
  padding: 6px 2px;
  margin-bottom: 28px;
  border-bottom: 1px solid transparent;
  transition: color 220ms ease, border-color 220ms ease, letter-spacing 220ms ease;
}
.journal-page .ja-back:hover,
.journal-page .ja-back:focus-visible {
  color: #6B1F2C;
  border-bottom-color: #B89150;
  letter-spacing: 0.22em;
  outline: none;
}

.journal-page .ja-eyebrow {
  display: inline-block;
  font-family: 'Marcellus', 'EB Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #6B1F2C;
  padding: 6px 14px;
  position: relative;
  margin-bottom: 22px;
}
.journal-page .ja-eyebrow::before,
.journal-page .ja-eyebrow::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 36px;
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(184, 145, 80, 0) 0%,
    #B89150 50%,
    rgba(184, 145, 80, 0) 100%);
}
.journal-page .ja-eyebrow::before { right: 100%; }
.journal-page .ja-eyebrow::after  { left: 100%; }

/* Section name at the very top — mirrors the tarot hub's .page-hero-dept. */
.journal-page .ja-dept {
  font-family: 'EB Garamond', serif;
  font-variant: small-caps;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.36em;
  color: #8E6E3A;
  margin: 0 0 2px;
}

/* Big article title — EB Garamond italic, matching the homepage + tarot/
   numerology heroes (was Cinzel). Burgundy em accent, no oversized script. */
.journal-page .ja-title {
  font-family: 'EB Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(34px, 6.6vw, 60px);
  line-height: 1.03;
  letter-spacing: -0.02em;
  color: #2D1F38;
  margin: 6px auto 16px;
  max-width: 20ch;
  text-wrap: balance;
}
.journal-page .ja-title em {
  font-family: 'EB Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: 1em;
  line-height: inherit;
  color: #6B1F2C;
  letter-spacing: -0.02em;
  padding: 0;
  vertical-align: baseline;
}

/* Date line — replaces the old "By Selene · date" byline. Larger + clearer. */
.journal-page .ja-date {
  font-family: 'Marcellus', 'EB Garamond', serif;
  font-size: 16px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #6B1F2C;
  margin-top: 26px;
  margin-bottom: 0;
}
/* Tighten the gap below the masthead so the illustration sits closer to the
   date (the shared .page-hero bottom padding is too generous here). */
.journal-page .page-hero { padding-bottom: 0.5rem; }

.journal-page .ja-rule {
  font-family: 'EB Garamond', serif;
  color: #B89150;
  font-size: 14px;
  line-height: 1;
  margin: 10px auto 14px;
  position: relative;
  width: 100%;
  max-width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.journal-page .ja-rule::before,
.journal-page .ja-rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(184, 145, 80, 0) 0%,
    #B89150 50%,
    rgba(184, 145, 80, 0) 100%);
}


/* ==========================================================================
   Hero figure
   ========================================================================== */

.journal-page .ja-hero-figure {
  max-width: 880px;
  margin: 10px auto 40px;
  padding: 0;
  text-align: center;
}

.journal-page .ja-hero-art {
  position: relative;
  background:
    radial-gradient(ellipse 70% 60% at 50% 38%, rgba(240, 216, 154, 0.55), transparent 70%),
    #F5E8C8;
  border: 1px solid #B89150;
  border-radius: 2px;
  padding: 18px;
  box-shadow:
    inset 0 0 0 1px rgba(251, 243, 220, 0.9),
    inset 0 0 0 2px rgba(184, 145, 80, 0.35),
    0 22px 54px -26px rgba(45, 31, 56, 0.55),
    0 2px 6px rgba(45, 31, 56, 0.08);
  overflow: hidden;
}
.journal-page .ja-hero-art::before {
  /* corner fleurons hinted with tiny gilt squares */
  content: "";
  position: absolute;
  top: 6px; left: 6px; right: 6px; bottom: 6px;
  border: 1px solid rgba(184, 145, 80, 0.45);
  pointer-events: none;
}
.journal-page .ja-hero-art > * {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
.journal-page .ja-hero-art img,
.journal-page .ja-hero-art svg {
  display: block;
  width: 100%;
  height: auto;
}

.journal-page .ja-hero-caption {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: #6B4F22;
  margin: 18px auto 0;
  letter-spacing: 0.01em;
  max-width: 48ch;
  line-height: 1.5;
  position: relative;
  padding-top: 16px;
}
/* A small gold fleuron above the caption gives it a defined, intentional
   style (rather than looking like stray text). hero_caption is OPTIONAL —
   articles that omit it simply render no caption. */
.journal-page .ja-hero-caption::before {
  content: "✦";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  color: #B89150;
  font-size: 13px;
  font-style: normal;
  line-height: 1;
}


/* ==========================================================================
   Body — long-form reading column
   ========================================================================== */

.journal-page .ja-body {
  max-width: 700px;
  margin: 0 auto;
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 20px;
  line-height: 1.78;
  color: #2D1F38;
  font-feature-settings: "liga", "onum", "kern";
}

.journal-page .ja-body p {
  margin: 0 0 1.45em;
  hyphens: auto;
  -webkit-hyphens: auto;
  text-wrap: pretty;
}

/* Inline emphasis */
.journal-page .ja-body em,
.journal-page .ja-body i {
  font-style: italic;
  color: #4A1620;
}
.journal-page .ja-body strong,
.journal-page .ja-body b {
  font-weight: 600;
  color: #2D1F38;
  letter-spacing: 0.005em;
}

/* Inline links */
.journal-page .ja-body a {
  color: #6B1F2C;
  text-decoration: none;
  background-image: linear-gradient(to right, #B89150, #B89150);
  background-repeat: no-repeat;
  background-size: 100% 1px;
  background-position: 0 92%;
  padding-bottom: 1px;
  transition: color 200ms ease, background-size 240ms ease;
}
.journal-page .ja-body a:hover,
.journal-page .ja-body a:focus-visible {
  color: #4A1620;
  background-size: 100% 2px;
  outline: none;
}

/* H2 / H3 inside the body */
.journal-page .ja-body h2 {
  font-family: 'Cinzel', 'EB Garamond', serif;
  font-weight: 500;
  font-size: clamp(24px, 3.4vw, 33px);
  line-height: 1.22;
  letter-spacing: 0.02em;
  color: #2D1F38;
  margin: 2.3em 0 0.9em;
  text-align: center;
  position: relative;
  padding-top: 2.3em;
}
/* ✦ centred in the gap between the previous paragraph and the heading:
   equal margin-top + padding-top, glyph centred on that boundary. */
.journal-page .ja-body h2::before {
  content: "✦";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #B89150;
  font-size: 14px;
  font-family: 'EB Garamond', serif;
  font-weight: 400;
  line-height: 1;
}

.journal-page .ja-body h3 {
  font-family: 'Marcellus', 'EB Garamond', serif;
  font-weight: 400;
  font-size: clamp(17px, 2.2vw, 20px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6B1F2C;
  margin: 2em 0 0.6em;
}

/* Lists */
.journal-page .ja-body ul,
.journal-page .ja-body ol {
  margin: 0 0 1.25em;
  padding-left: 1.4em;
}
.journal-page .ja-body li {
  margin-bottom: 0.4em;
}
.journal-page .ja-body ul li::marker {
  color: #B89150;
  content: "✦  ";
}
.journal-page .ja-body ol li::marker {
  color: #8E6E3A;
  font-family: 'Marcellus', serif;
}

/* ---------- Lede paragraph with illuminated drop cap --------------------- */

.journal-page .ja-lede {
  margin-top: 0.4em;
  font-size: 1.05em;
}

.journal-page .ja-lede::first-letter {
  font-family: 'Cinzel', 'EB Garamond', serif;
  font-weight: 600;
  float: left;
  font-size: 5.6em;
  line-height: 0.86;
  padding: 0.08em 0.14em 0.04em 0.08em;
  margin: 0.06em 0.16em 0 0;
  color: #6B1F2C;
  background:
    radial-gradient(ellipse at 30% 30%,
      #F0D89A 0%,
      #F5E8C8 60%,
      #F5E8C8 100%);
  border: 1px solid #B89150;
  box-shadow:
    inset 0 0 0 1px rgba(251, 243, 220, 0.7),
    0 2px 6px -3px rgba(74, 22, 32, 0.35);
  text-shadow: 0 1px 0 rgba(251, 243, 220, 0.5);
  letter-spacing: 0;
}


/* ---------- Pull-quote --------------------------------------------------- */

.journal-page .ja-pullquote {
  margin: 3em auto;
  padding: 2em 0 2.1em;
  border: none;
  position: relative;
  font-family: 'EB Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(22px, 2.9vw, 27px);
  line-height: 1.5;
  color: #4A1620;
  text-align: center;
  max-width: 38ch;
  /* Top rule has a transparent NOTCH in the centre so the ✦ breaks the line
     (a real gap — no masking chip). Bottom rule is a continuous hairline. */
  background-image:
    linear-gradient(to right, transparent 0%, #B89150 16%, #8E6E3A 40%, transparent 45%, transparent 55%, #8E6E3A 60%, #B89150 84%, transparent 100%),
    linear-gradient(to right, rgba(184, 145, 80, 0) 0%, #B89150 25%, #8E6E3A 50%, #B89150 75%, rgba(184, 145, 80, 0) 100%);
  background-size: 72% 1px, 72% 1px;
  background-position: top center, bottom center;
  background-repeat: no-repeat;
}
/* ✦ fleuron sitting in the centre gap of the top rule (no background). */
.journal-page .ja-pullquote::before {
  content: "✦";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #8E6E3A;
  font-size: 17px;
  line-height: 1;
}
.journal-page .ja-pullquote p {
  margin: 0;
}
.journal-page .ja-pullquote cite {
  display: block;
  margin-top: 0.9em;
  font-style: normal;
  font-family: 'Marcellus', serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #8E6E3A;
}


/* ==========================================================================
   Sky Notes hub — article cards (journal-hub.php)
   ========================================================================== */

.journal-page .ja-hub-grid {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 1rem auto 3.5rem;
  padding: 0 22px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}
.journal-page .ja-hub-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;                 /* clip the banner image to the rounded corners */
  background: linear-gradient(180deg, #FAF1E1, #F3E6C9);
  border: 1px solid #B89150;
  border-radius: 4px;
  padding: 2.2rem 2.3rem 2rem;
  text-decoration: none;
  box-shadow:
    inset 0 0 0 4px rgba(251, 243, 220, 0.5),
    0 12px 28px -16px rgba(45, 31, 56, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
/* Hero image as a full-bleed banner at the top of the card. */
.journal-page .ja-hub-img {
  display: block;
  width: calc(100% + 4.6rem);       /* cancel the card's 2.3rem L/R padding */
  margin: -2.2rem -2.3rem 1.45rem;  /* cancel the 2.2rem top padding too */
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #B89150;
  background: #2D1F38;              /* graceful while loading */
  transition: transform 0.35s ease;
}
.journal-page .ja-hub-card.has-img:hover .ja-hub-img,
.journal-page .ja-hub-card.has-img:focus-visible .ja-hub-img {
  transform: scale(1.035);
}
.journal-page .ja-hub-card:hover,
.journal-page .ja-hub-card:focus-visible {
  transform: translateY(-3px);
  box-shadow:
    inset 0 0 0 4px rgba(251, 243, 220, 0.7),
    0 18px 36px -16px rgba(45, 31, 56, 0.55);
  outline: none;
}
.journal-page .ja-hub-kind {
  font-family: 'Marcellus', 'EB Garamond', serif;
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8E6E3A;
  margin-bottom: 0.7rem;
}
.journal-page .ja-hub-title {
  font-family: 'EB Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.65rem, 2.6vw, 2.1rem);
  line-height: 1.12;
  color: #6B1F2C;
  margin: 0 0 0.7rem;
}
.journal-page .ja-hub-dek {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.14rem;
  line-height: 1.5;
  color: #2D1F38;
  margin: 0 0 1.3rem;
}
.journal-page .ja-hub-cta {
  margin-top: auto;
  align-self: flex-start;
  font-family: 'Marcellus', 'EB Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #FBF3DC;
  background: linear-gradient(180deg, #6B1F2C 0%, #4A1620 100%);
  border: 1px solid #4A1620;
  border-radius: 99px;
  padding: 12px 24px;
  box-shadow:
    inset 0 0 0 1px rgba(240, 216, 154, 0.3),
    0 6px 16px -10px rgba(74, 22, 32, 0.6);
  transition: letter-spacing 0.2s ease, transform 0.2s ease;
}
.journal-page .ja-hub-card:hover .ja-hub-cta,
.journal-page .ja-hub-card:focus-visible .ja-hub-cta {
  background: #FFFFFF;
  color: #6B1F2C;
  border-color: #6B1F2C;
  letter-spacing: 0.26em;
  transform: translateY(-1px);
}
@media (max-width: 720px) {
  .journal-page .ja-hub-grid { grid-template-columns: 1fr; }
}

/* Close the gap between an article's colophon CTA and the Apothecary grid
   (the shared grid's default 6rem top margin is too much in this context). */
.journal-page .apothecary-section { margin-top: 2.5rem; }


/* ==========================================================================
   Colophon
   ========================================================================== */

.journal-page .ja-colophon {
  max-width: 680px;
  margin: 64px auto 0;
  text-align: center;
  padding: 0 8px;
}

.journal-page .ja-colophon-rule {
  font-family: 'EB Garamond', serif;
  color: #B89150;
  font-size: 14px;
  line-height: 1;
  margin: 0 auto 28px;
  width: 100%;
  max-width: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.journal-page .ja-colophon-rule::before,
.journal-page .ja-colophon-rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(184, 145, 80, 0) 0%,
    #B89150 50%,
    rgba(184, 145, 80, 0) 100%);
}

.journal-page .ja-colophon p {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: clamp(18px, 2.4vw, 22px);
  line-height: 1.55;
  color: #4A1620;
  margin: 0 auto 26px;
  max-width: 32ch;
  text-wrap: balance;
}

.journal-page .ja-colophon-cta {
  display: inline-block;
  font-family: 'Marcellus', 'EB Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #FBF3DC;
  background: linear-gradient(180deg, #6B1F2C 0%, #4A1620 100%);
  padding: 16px 30px;
  text-decoration: none;
  border: 1px solid #4A1620;
  box-shadow:
    inset 0 0 0 1px rgba(240, 216, 154, 0.35),
    0 8px 22px -14px rgba(74, 22, 32, 0.6),
    0 1px 0 rgba(240, 216, 154, 0.25);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    letter-spacing 220ms ease;
}
.journal-page .ja-colophon-cta:hover,
.journal-page .ja-colophon-cta:focus-visible {
  transform: translateY(-2px);
  letter-spacing: 0.30em;
  box-shadow:
    inset 0 0 0 1px rgba(240, 216, 154, 0.55),
    0 14px 28px -14px rgba(74, 22, 32, 0.75),
    0 1px 0 rgba(240, 216, 154, 0.3);
  outline: none;
}


/* ==========================================================================
   Selection / focus polish
   ========================================================================== */

.journal-page ::selection {
  background: #F0D89A;
  color: #4A1620;
}
.journal-page a:focus-visible {
  outline: 2px dashed #B89150;
  outline-offset: 3px;
  border-radius: 2px;
}


/* ==========================================================================
   Responsive — mobile-first; refinements at 768 and 1200
   ========================================================================== */

/* Small phones: tighten further if needed (<= 360 covered by base) */
@media (max-width: 380px) {
  .journal-page .ja-article {
    padding: 22px 16px 72px;
  }
  .journal-page .ja-body {
    font-size: 18px;
  }
  .journal-page .ja-lede::first-letter {
    font-size: 4.8em;
  }
}

/* Tablet */
@media (min-width: 768px) {
  .journal-page .ja-article {
    padding: 0 36px 120px;
  }
  .journal-page .ja-masthead {
    padding: 16px 0 36px;
  }
  .journal-page .ja-hero-figure {
    margin: 14px auto 52px;
  }
  .journal-page .ja-hero-art {
    padding: 18px;
  }
  .journal-page .ja-body {
    font-size: 21px;
    line-height: 1.8;
  }
  .journal-page .ja-lede::first-letter {
    font-size: 6.2em;
    padding: 0.08em 0.16em 0.04em 0.10em;
    margin: 0.08em 0.20em 0 0;
  }
  .journal-page .ja-pullquote {
    margin: 3em auto;
  }
  .journal-page .ja-colophon {
    margin-top: 88px;
  }
}

/* Desktop */
@media (min-width: 1200px) {
  .journal-page .ja-article {
    padding: 8px 40px 140px;
  }
  .journal-page .ja-body {
    max-width: 760px;
    font-size: 22px;
  }
  .journal-page .ja-masthead {
    max-width: 920px;
  }
  .journal-page .ja-hero-figure {
    max-width: 960px;
  }
  .journal-page .ja-title {
    max-width: 20ch;
  }
  .journal-page .ja-lede::first-letter {
    font-size: 6.6em;
  }
}


/* ==========================================================================
   Print — readable, no ornament loss
   ========================================================================== */

@media print {
  .journal-page {
    background: #ffffff;
    color: #000000;
  }
  .journal-page::before { display: none; }
  .journal-page .ja-back,
  .journal-page .ja-colophon-cta {
    display: none;
  }
  .journal-page .ja-article {
    max-width: none;
    padding: 0;
  }
  .journal-page .ja-body {
    font-size: 12pt;
    line-height: 1.55;
  }
  .journal-page .ja-lede::first-letter {
    background: none;
    border: none;
    box-shadow: none;
    color: #4A1620;
  }
}


/* ==========================================================================
   "Explore in the Encyclopedia" footer block (auto-appended to Sky Notes)
   ========================================================================== */

.journal-page .ja-explore {
  margin: 2.6rem auto 0;
  max-width: 40rem;
  padding: 1.5rem 1.75rem 1.65rem;
  text-align: center;
  background:
    radial-gradient(120% 140% at 50% 0%, rgba(184,145,80,0.10), rgba(184,145,80,0) 70%),
    #FAF1E1;
  border: 1px solid #E4D2A8;
  border-radius: 10px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset, 0 6px 22px -16px rgba(74,22,32,0.5);
}

.journal-page .ja-explore-title {
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8E6E3A;
  margin: 0 0 0.7rem;
  border: 0;            /* override the page's h2 underline rule */
  padding: 0;
}

.journal-page .ja-explore-title::after { content: none; }  /* kill any h2 flourish */

.journal-page .ja-explore-links {
  font-family: 'EB Garamond', serif;
  font-size: 1.18rem;
  line-height: 1.7;
  margin: 0;
  color: #6B1F2C;
}

.journal-page .ja-explore-links a {
  color: #6B1F2C;
  text-decoration: none;
  border-bottom: 1px solid rgba(184,145,80,0.55);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.journal-page .ja-explore-links a:hover {
  color: #4A1620;
  border-bottom-color: #B89150;
}

.journal-page .ja-explore-sep {
  color: #B89150;
  margin: 0 0.45rem;
}

/* ==========================================================================
   Journal hub — month/year archive grouping
   ========================================================================== */

.journal-page .ja-hub-month {
  margin: 0 auto 2.4rem;
  max-width: 72rem;
}

.journal-page .ja-hub-month-label {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.7rem, 3.4vw, 2.35rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6B1F2C;
  text-align: center;
  margin: 0 0 1.5rem;
  padding: 0 0 0.7rem;
  border: 0;
  position: relative;
}

.journal-page .ja-hub-month-label::after {
  content: "";
  display: block;
  width: 4.5rem;
  height: 2px;
  margin: 0.75rem auto 0;
  background: linear-gradient(90deg, transparent, #B89150, transparent);
}

.journal-page .ja-hub-empty {
  text-align: center;
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: #6B4F22;
  margin: 2.5rem auto;
}

/* ==========================================================================
   Reduced motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  .journal-page * {
    transition: none !important;
    animation: none !important;
  }
}
