/* =============================================================================
   Opanijé Journal — index + article (WP-30, DQ WP-30d "Journal" surface).
   Light editorial canon: cream page, ink type, Heritage-Gold accent, Montserrat
   display / Lato body — the DQ Journal design system, expressed as page-scoped
   custom properties (canon tokens; zero raw hex in the templates, FIX-6-clean).
   Chrome (header/footer) is the theme's, not the design's dc-imports (WP-37).
   ============================================================================= */

.journal-index,
.journal-article {
    --jr-cream:        #FAFAF9;
    --jr-card:         #FFFFFF;
    --jr-panel:        #F4F3F0;
    --jr-ink:          #2B2823;
    --jr-ink-body:     #33302B;
    --jr-ink-soft:     #59554F;
    --jr-muted:        #888580;
    --jr-line:         #ECEAE5;
    --jr-line-2:       #E2DFD9;
    --jr-gold:         #B7780D;
    --jr-gold-light:   #D8A81B;
    --jr-gold-wash-1:  #FFFDF8;
    --jr-gold-wash-2:  #FBF2E0;
    --jr-ok:           #1F8A5B;
    --jr-maxw:         1180px;
    --jr-readw:        760px;
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--jr-cream);
    color: var(--jr-ink);
    -webkit-font-smoothing: antialiased;
}
.journal-index *,
.journal-article * { box-sizing: border-box; }

.journal-index .jr-wrap,
.journal-article .jr-wrap {
    max-width: var(--jr-maxw);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 5vw, 3.25rem);
}

/* ---- shared type primitives ---- */
.journal-index .jr-eyebrow,
.journal-article .jr-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.8125rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--jr-gold);
    margin: 0 0 1rem;
}
.journal-index a,
.journal-article a { color: var(--jr-gold); }

/* =============================== INDEX ==================================== */
.journal-index--landing { overflow-x: clip; }

.journal-index .jr-hero {
    padding: clamp(2.5rem, 7vw, 4.5rem) 0 clamp(1.5rem, 3vw, 2.25rem);
}
.journal-index .jr-hero--masthead {
    --jr-deep: #17140F;
    position: relative;
    isolation: isolate;
    padding: clamp(1.6rem, 3.2vw, 2.4rem) 0 clamp(4.25rem, 9vw, 6.5rem);
}
.journal-index .jr-hero--masthead::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    border-bottom: 1px solid #E2DAC6;
    background-image:
        repeating-linear-gradient(90deg, rgba(23, 20, 15, 0.045) 0 1px, transparent 1px 148px),
        linear-gradient(180deg, #F7F4EC, #F1EBDD);
}
.journal-index .jr-hero__mast {
    display: flex;
    align-items: baseline;
    min-height: 3rem;
    padding: 0.85rem 0;
    margin-bottom: clamp(2rem, 4.5vw, 3.25rem);
    border-top: 2px solid var(--jr-deep);
    border-bottom: 1px solid #DBD3BE;
}
.journal-index .jr-hero__mast .jr-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin: 0;
    color: var(--jr-deep);
    font-size: 0.85rem;
    font-weight: 800;
}
.journal-index .jr-beat-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-radius: 50%;
    background: var(--jr-gold);
}
@media (prefers-reduced-motion: no-preference) {
    @keyframes jr-beat {
        0%, 100% { box-shadow: 0 0 0 0 rgba(216, 168, 27, 0); }
        30% { box-shadow: 0 0 0 7px rgba(216, 168, 27, 0.2); }
    }
    .journal-index .jr-beat-dot { animation: jr-beat 1.9s cubic-bezier(0.33, 1, 0.68, 1) infinite; }
}
.journal-index .jr-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 7vw, 3.4rem);
    line-height: 1.04;
    letter-spacing: -0.03em;
    margin: 0 0 1.1rem;
    max-width: 18ch;
    color: var(--jr-ink);
    text-wrap: balance;
}
.journal-index .jr-hero--masthead h1 {
    font-size: clamp(2.3rem, 7.4vw, 4.3rem);
    line-height: 1.02;
    letter-spacing: -0.035em;
    margin: 0 0 1.2rem;
    max-width: 17ch;
    color: var(--jr-deep);
}
.journal-index .jr-hero__dek {
    font-size: clamp(1.05rem, 2.4vw, 1.3rem);
    line-height: 1.55;
    color: var(--jr-ink-soft);
    max-width: 60ch;
    margin: 0;
}
.journal-index .jr-hero--masthead .jr-hero__dek { max-width: 58ch; }
.journal-index .jr-spectrum {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: clamp(2rem, 4vw, 2.75rem);
}
.journal-index .jr-spectrum__beat {
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
}
.journal-index .jr-spectrum__beat--rhythm { background: #B7780D; }
.journal-index .jr-spectrum__beat--dance { background: #B24A34; transform: rotate(45deg); }
.journal-index .jr-spectrum__beat--spirituality { background: #2F6E5E; }
.journal-index .jr-spectrum__beat--instruments { background: #B5622F; transform: rotate(45deg); }
.journal-index .jr-spectrum__beat--travel { background: #2C6480; }
.journal-index .jr-spectrum__line {
    width: 34px;
    height: 1px;
    flex: 0 0 34px;
    background: #CDC4AC;
}
.journal-index .jr-spectrum__line--tail {
    width: auto;
    min-width: 0;
    flex: 1 1 auto;
}

/* featured first guide */
.journal-index .jr-featured {
    --jr-deep: #17140F;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin-top: clamp(-3.5rem, -6vw, -2.25rem);
    margin-bottom: clamp(2rem, 4vw, 3rem);
    overflow: hidden;
    border: 1px solid var(--jr-line);
    border-radius: 20px;
    background: var(--jr-card);
    box-shadow: 0 24px 60px rgba(23, 20, 15, 0.16);
}
.journal-index .jr-featured__spectrum {
    flex: 0 0 100%;
    height: 5px;
    background: linear-gradient(90deg, #B7780D 0 20%, #B24A34 20% 40%, #2F6E5E 40% 60%, #B5622F 60% 80%, #2C6480 80% 100%);
}
.journal-index .jr-featured__body {
    display: flex;
    flex: 1 1 360px;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: clamp(1.75rem, 3.5vw, 3rem);
}
.journal-index .jr-featured--no-media .jr-featured__body { flex-basis: 100%; }
.journal-index .jr-featured__tag {
    display: inline-block;
    padding: 0.32rem 1rem 0.32rem 0.65rem;
    margin-bottom: 1.1rem;
    clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 50%, 100% 100%, 0 100%);
    color: var(--jr-ink); /* accessible fallback (SD-QB-A11Y); color-mix upgrades below */
    color: color-mix(in srgb, var(--jr-cat) 76%, #17140F);
    background: var(--jr-panel);
    background: color-mix(in srgb, var(--jr-cat) 12%, transparent);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-transform: uppercase;
}
.journal-index .jr-featured h2 {
    max-width: 20ch;
    margin: 0 0 0.9rem;
    color: var(--jr-deep);
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.6rem, 4.2vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-wrap: balance;
}
.journal-index .jr-featured__body > p {
    max-width: 52ch;
    margin: 0 0 1rem;
    color: var(--jr-ink-soft);
    font-size: clamp(1rem, 2.2vw, 1.15rem);
    line-height: 1.6;
}
.journal-index .jr-featured__meta {
    margin-bottom: 1.5rem;
    color: var(--jr-ink-soft); /* #888580 muted fails 4.5:1 on white (SD-QB-A11Y) */
    font-size: 0.85rem;
}
.journal-index .jr-featured__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.8rem 1.4rem;
    border-radius: 9999px;
    color: #17140F;
    /* Fixed gold gradient (matches the mock's featured CTA) — a per-category
       --jr-cat end drops #17140F below 4.5:1 on 4/5 colors (SD-QB-A11Y). */
    background: linear-gradient(135deg, var(--jr-gold), var(--jr-gold-light));
    box-shadow: 0 6px 18px rgba(183, 120, 13, 0.28);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
}
.journal-index .jr-featured__cta:hover {
    color: #17140F;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(183, 120, 13, 0.36);
}
.journal-index .jr-featured__cta:focus-visible {
    outline: 3px solid var(--jr-cat);
    outline-offset: 3px;
}
.journal-index .jr-featured__media {
    position: relative;
    flex: 1 1 380px;
    min-width: 0;
    min-height: 300px;
    overflow: hidden;
    background: var(--jr-panel);
}
.journal-index .jr-featured__media img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.journal-index .jr-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding-bottom: clamp(1.5rem, 3vw, 2rem);
    border-bottom: 1px solid var(--jr-line);
    margin-bottom: clamp(2rem, 4vw, 3rem);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--jr-muted);
}
.journal-index .jr-meta-row__label {
    display: flex;
    flex: 1 1 240px;
    align-items: center;
    gap: 1rem;
    color: var(--jr-ink);
    font-size: clamp(1.3rem, 3vw, 1.7rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}
.journal-index .jr-meta-row__label::after {
    content: '';
    height: 1px;
    flex: 1 1 70px;
    background: linear-gradient(90deg, var(--jr-gold) 0 7px, transparent 7px 13px, #D9D5CD 13px 17px, transparent 17px 23px, var(--jr-gold) 23px 30px, transparent 30px 36px, var(--jr-line) 36px 100%);
}
.journal-index .jr-meta-row__count { white-space: nowrap; }

/* grid of guide cards */
.journal-index .jr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
    gap: clamp(1rem, 2vw, 1.4rem);
    padding-bottom: clamp(2.5rem, 5vw, 4rem);
}
.journal-index .jr-card {
    --jr-cat: var(--jr-gold);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    background: var(--jr-card);
    border: 1px solid var(--jr-line);
    border-radius: 16px;
    padding: clamp(1.3rem, 2.2vw, 1.65rem);
    text-decoration: none;
    color: var(--jr-ink);
    overflow: hidden;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.journal-index .jr-card:hover,
.journal-index .jr-card:focus-visible {
    border-color: var(--jr-cat);
    transform: translateY(-6px);
    box-shadow: 0 16px 34px rgba(43, 40, 35, 0.14);
    box-shadow: 0 16px 34px color-mix(in srgb, var(--jr-cat) 18%, transparent);
}
.journal-index .jr-card:focus-visible {
    outline: 3px solid var(--jr-cat);
    outline-offset: 3px;
}
.journal-index .jr-card__thumb {
    display: block;
    aspect-ratio: 16 / 10;
    border-radius: 12px;
    overflow: hidden;
    background: var(--jr-panel);
    margin: -0.2rem 0 0.2rem;
}
.journal-index .jr-card__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.journal-index .jr-card__kick {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.55rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.68rem;
}
.journal-index .jr-card__cat {
    display: inline-block;
    padding: 0.3rem 0.95rem 0.3rem 0.6rem;
    clip-path: polygon(0 0, 100% 0, calc(100% - 7px) 50%, 100% 100%, 0 100%);
    color: var(--jr-ink); /* accessible fallback (SD-QB-A11Y); color-mix upgrades below */
    color: color-mix(in srgb, var(--jr-cat) 76%, #17140F);
    background: var(--jr-panel);
    background: color-mix(in srgb, var(--jr-cat) 12%, transparent);
    letter-spacing: 0.09em;
    line-height: 1.2;
    text-transform: uppercase;
}
.journal-index .jr-card__dot,
.journal-article .jr-dot { width: 3px; height: 3px; border-radius: 50%; background: #C9C5BE; }
.journal-index .jr-card__read { color: var(--jr-muted); font-size: 0.78rem; letter-spacing: 0; font-weight: 600; }
.journal-index .jr-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: clamp(1.15rem, 2.2vw, 1.3rem);
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin: 0;
    color: var(--jr-ink);
    text-wrap: balance;
}
.journal-index .jr-card p { font-size: 0.95rem; line-height: 1.55; color: var(--jr-ink-soft); margin: 0; }
.journal-index .jr-card__more {
    margin-top: auto;
    padding-top: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--jr-ink);
}
.journal-index .jr-card__more span { color: var(--jr-cat); }

/* The imported rhythm alternation marks grid positions 2, 4 and 7 as solids. */
.journal-index .jr-card:nth-child(2),
.journal-index .jr-card:nth-child(4),
.journal-index .jr-card:nth-child(7) {
    border-color: var(--jr-cat);
    color: #fff;
    background-color: var(--jr-cat);
    background-image:
        radial-gradient(rgba(255, 255, 255, 0.14) 1.2px, transparent 1.3px),
        radial-gradient(rgba(255, 255, 255, 0.08) 1.2px, transparent 1.3px),
        linear-gradient(rgba(23, 20, 15, 0.34), rgba(23, 20, 15, 0.34));
    background-position: 0 0, 10px 10px, 0 0;
    background-size: 20px 20px, 20px 20px, auto;
    box-shadow: 0 12px 28px rgba(23, 20, 15, 0.18);
}
.journal-index .jr-card:nth-child(2):hover,
.journal-index .jr-card:nth-child(4):hover,
.journal-index .jr-card:nth-child(7):hover,
.journal-index .jr-card:nth-child(2):focus-visible,
.journal-index .jr-card:nth-child(4):focus-visible,
.journal-index .jr-card:nth-child(7):focus-visible {
    border-color: var(--jr-cat);
    box-shadow: 0 18px 38px rgba(23, 20, 15, 0.34);
}
.journal-index .jr-card:nth-child(2) .jr-card__cat,
.journal-index .jr-card:nth-child(4) .jr-card__cat,
.journal-index .jr-card:nth-child(7) .jr-card__cat {
    color: #fff;
    background: rgba(23, 20, 15, 0.38); /* dark chip so #fff meets 4.5:1 on warm solids (SD-QB-A11Y) */
}
.journal-index .jr-card:nth-child(2) .jr-card__read,
.journal-index .jr-card:nth-child(4) .jr-card__read,
.journal-index .jr-card:nth-child(7) .jr-card__read { color: rgba(255, 255, 255, 0.88); } /* 4.5:1 on warm solids (SD-QB-A11Y) */
.journal-index .jr-card:nth-child(2) .jr-card__dot,
.journal-index .jr-card:nth-child(4) .jr-card__dot,
.journal-index .jr-card:nth-child(7) .jr-card__dot { background: rgba(255, 255, 255, 0.5); }
.journal-index .jr-card:nth-child(2) h3,
.journal-index .jr-card:nth-child(4) h3,
.journal-index .jr-card:nth-child(7) h3,
.journal-index .jr-card:nth-child(2) p,
.journal-index .jr-card:nth-child(4) p,
.journal-index .jr-card:nth-child(7) p,
.journal-index .jr-card:nth-child(2) .jr-card__more,
.journal-index .jr-card:nth-child(4) .jr-card__more,
.journal-index .jr-card:nth-child(7) .jr-card__more { color: #fff; }
.journal-index .jr-card:nth-child(2) p,
.journal-index .jr-card:nth-child(4) p,
.journal-index .jr-card:nth-child(7) p { color: rgba(255, 255, 255, 0.9); } /* 4.5:1 on warm solids (SD-QB-A11Y) */
.journal-index .jr-card:nth-child(2) .jr-card__more span,
.journal-index .jr-card:nth-child(4) .jr-card__more span,
.journal-index .jr-card:nth-child(7) .jr-card__more span { color: #F3D068; }

/* empty / coming-soon state */
.journal-index .jr-empty {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
    background: var(--jr-card);
    border: 1px solid var(--jr-line);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
    box-shadow: 0 1px 2px rgba(43, 40, 35, 0.04);
}
.journal-index--landing .jr-empty {
    position: relative;
    box-shadow: 0 20px 50px rgba(23, 20, 15, 0.13);
}
.journal-index .jr-hero--masthead + .jr-empty {
    margin-top: clamp(-3.5rem, -6vw, -2.25rem);
}
.journal-index--landing .jr-empty::before {
    content: '';
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    left: 0;
    height: 5px;
    background: linear-gradient(90deg, #B7780D 0 20%, #B24A34 20% 40%, #2F6E5E 40% 60%, #B5622F 60% 80%, #2C6480 80% 100%);
}
.journal-index .jr-empty__body { padding: clamp(1.75rem, 3.5vw, 3rem); }
.journal-index--landing .jr-empty__body .jr-eyebrow {
    margin: 0 0 1rem;
    color: var(--jr-gold);
    font-size: 0.8125rem;
}
.journal-index .jr-empty__body h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 0.9rem;
    color: var(--jr-ink);
}
.journal-index .jr-empty__body p { font-size: 1.05rem; line-height: 1.6; color: var(--jr-ink-soft); margin: 0; max-width: 52ch; }
.journal-index .jr-empty__media { position: relative; min-height: 260px; background: var(--jr-panel); }
.journal-index--landing .jr-empty__media { min-height: 300px; }
.journal-index .jr-empty__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* course capture band */
.journal-index .jr-capband,
.journal-article .jr-capband {
    background: linear-gradient(135deg, var(--jr-gold-wash-1), var(--jr-gold-wash-2));
    border: 1px solid rgba(183, 120, 13, 0.25);
    border-radius: 20px;
    padding: clamp(1.75rem, 3.5vw, 2.75rem);
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

/* dark index capture band */
.journal-index .jr-capband {
    position: relative;
    overflow: hidden;
    padding: clamp(1.9rem, 3.8vw, 3rem);
    margin-bottom: clamp(3rem, 6vw, 5rem);
    border: none;
    border-radius: 20px;
    background-color: #17140F;
    background-image:
        radial-gradient(circle at 8% 115%, rgba(212, 160, 23, 0.2), transparent 34%),
        radial-gradient(rgba(216, 168, 27, 0.16) 1.3px, transparent 1.4px),
        radial-gradient(rgba(216, 168, 27, 0.09) 1.3px, transparent 1.4px);
    background-position: 0 0, 0 0, 10px 10px;
    background-size: auto, 20px 20px, 20px 20px;
}
.journal-index .jr-capband::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 5px;
    background: linear-gradient(90deg, #B7780D 0 20%, #B24A34 20% 40%, #2F6E5E 40% 60%, #B5622F 60% 80%, #2C6480 80% 100%);
}
.journal-index .jr-capband .op-capture-part { position: relative; }
.journal-index .jr-capband .op-capture-part__h { color: #fff; }
.journal-index .jr-capband .op-capture-part__body { color: rgba(255, 255, 255, 0.8); }
.journal-index .jr-capband .op-field__label { color: rgba(255, 255, 255, 0.85); }
.journal-index .jr-capband .op-consent { color: rgba(255, 255, 255, 0.78); }
.journal-index .jr-capband .op-consent input[type="checkbox"] { border-color: rgba(255, 255, 255, 0.5); background: rgba(255, 255, 255, 0.06); }
.journal-index .jr-capband .op-consent input[type="checkbox"]:checked { background-color: var(--jr-gold-light); border-color: var(--jr-gold-light); }
.journal-index .jr-capband .op-consent a { color: var(--jr-gold-light); }
.journal-index .jr-capband .op-field input[type="email"] { background: rgba(255, 255, 255, 0.95); }
.journal-index .jr-capband .op-capture__submit { color: #17140F; background: linear-gradient(135deg, var(--jr-gold-light), #F3D068); }
.journal-index .jr-capband .op-capture__submit:hover { color: #17140F; }
.journal-index .jr-capband .op-capture__reassure { color: rgba(255, 255, 255, 0.62); }
.journal-index .jr-capband .op-flag { color: #fff; background: rgba(255, 255, 255, 0.08); }

/* ============================== ARTICLE ================================== */
.journal-article .jr-progress {
    position: sticky;
    top: 0;
    z-index: 30;
    height: 3px;
    background: #EDE7DC;
}
.journal-article .jr-progress__bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--jr-gold), var(--jr-gold-light));
    transition: width .12s linear;
}
.journal-article .jr-read {
    max-width: var(--jr-readw);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 5vw, 2rem);
}
.journal-article .jr-progress + .jr-read { max-width: 820px; }
.journal-article .jr-crumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #6F6B64;
    padding: clamp(1.75rem, 4vw, 2.75rem) 0 0;
    margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}
.journal-article .jr-crumbs a {
    color: #6F6B64;
    text-decoration: none;
    transition: color .2s ease;
}
.journal-article .jr-crumbs a:hover,
.journal-article .jr-crumbs a:focus-visible { color: #8F5E0A; }
.journal-article .jr-crumbs a.is-cat { color: #8F5E0A; }
.journal-article .jr-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    color: #8F5E0A;
}
.journal-article .jr-eyebrow::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--jr-gold);
    flex: 0 0 7px;
}
.journal-article .jr-arthead h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 6vw, 3.1rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin: 0 0 1.1rem;
    color: var(--jr-ink);
    text-wrap: balance;
}
.journal-article .jr-arthead__dek {
    font-size: clamp(1.1rem, 2.6vw, 1.4rem);
    line-height: 1.55;
    color: var(--jr-ink-soft);
    margin: 0 0 clamp(1.75rem, 3.5vw, 2.5rem);
    max-width: 60ch;
}
.journal-article .jr-byline {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1.25rem 0;
    border-top: 1px solid var(--jr-line);
    border-bottom: 1px solid var(--jr-line);
    margin-bottom: 0;
    font-family: 'Montserrat', sans-serif;
}
.journal-article .jr-byline__badge {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--jr-ink);
    border: 2px solid var(--jr-cream);
    color: #fff; font-weight: 800; font-size: 0.95rem;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.journal-article .jr-byline__who { font-weight: 700; font-size: 0.9rem; line-height: 1.3; color: var(--jr-ink); }
.journal-article .jr-byline__meta { font-family: 'Lato', sans-serif; font-size: 0.8rem; line-height: 1.3; color: #6F6B64; }

/* hero figure */
.journal-article .jr-hero-fig {
    max-width: 1080px;
    margin: 0 auto;
    padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1.25rem, 5vw, 2rem) 0;
}
.journal-article .jr-hero-fig__frame {
    position: relative; width: 100%; aspect-ratio: 16 / 8;
    background: var(--jr-panel); border-radius: 18px; overflow: hidden;
}
.journal-article .jr-hero-fig__frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

@media (prefers-reduced-motion: no-preference) {
    @keyframes jrArticleBeat {
        0% { box-shadow: 0 0 0 0 rgba(183, 120, 13, 0.55); }
        70% { box-shadow: 0 0 0 9px rgba(183, 120, 13, 0); }
        100% { box-shadow: 0 0 0 0 rgba(183, 120, 13, 0); }
    }

    @keyframes jrArticleKen {
        from { transform: scale(1); }
        to { transform: scale(1.12); }
    }

    .journal-article .jr-eyebrow::before {
        animation: jrArticleBeat 1.9s cubic-bezier(0.33, 1, 0.68, 1) infinite;
    }
    .journal-article .jr-hero-fig__frame img {
        animation: jrArticleKen 16s cubic-bezier(0.33, 1, 0.68, 1) infinite alternate;
        transform-origin: 50% 42%;
    }
}

@media (prefers-reduced-motion: no-preference) and (max-width: 720px) {
    .journal-article .jr-hero-fig__frame img { animation-duration: 20s; }
}

/* authored figures + consent-clean video embeds */
.journal-article .jr-fig {
    width: 100%; margin: clamp(2rem, 4vw, 3rem) 0;
    border-radius: 16px; overflow: hidden; background: var(--jr-panel);
}
.journal-article .jr-fig img { display: block; max-width: 100%; height: auto; }
.journal-article .jr-fig figcaption { padding: 0.65rem 1rem 0.9rem; color: var(--jr-muted); font-size: 0.84rem; line-height: 1.45; }
.journal-article .jr-embed {
    position: relative; width: 100%; margin: clamp(2rem, 4vw, 3rem) 0;
    border-radius: 16px; overflow: hidden; background: var(--jr-panel);
}
.journal-article .jr-embed .op-video-trigger {
    display: block; width: 100%; border: 0; padding: 0; cursor: pointer;
    position: relative; background: var(--jr-panel); color: var(--jr-ink);
    text-align: left;
}
.journal-article .jr-embed picture,
.journal-article .jr-embed img { display: block; width: 100%; }
.journal-article .jr-embed .op-video-trigger::after {
    content: ''; position: absolute; left: 50%; top: 50%;
    width: 76px; height: 76px; border-radius: 50%;
    transform: translate(-50%, -50%); background-color: var(--jr-gold);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%232B2823' d='M8 5v14l11-7z'/%3E%3C/svg%3E");
    background-position: center; background-repeat: no-repeat; background-size: 24px 24px;
    box-shadow: 0 0 0 4px rgba(255,255,255,.72), 0 12px 30px rgba(43,40,35,.3);
}
.journal-article .jr-embed .op-video-trigger:focus-visible { outline: 3px solid var(--jr-gold-light); outline-offset: 3px; }
.journal-article .jr-embed__label {
    display: block; padding: 0.75rem 1rem; background: var(--jr-card);
    color: var(--jr-ink); font-family: 'Montserrat', sans-serif; font-size: 0.88rem; font-weight: 700;
}

/* Journal posts do not load percussion.css, so keep the dialog rules here. */
.journal-article #opVideoDialog {
    width: min(920px, 92vw); max-width: 920px; padding: 0; border: none;
    border-radius: 16px; background: var(--jr-ink); color: #fff;
    box-shadow: 0 30px 80px rgba(0,0,0,.6); overflow: visible;
}
.journal-article #opVideoDialog::backdrop { background: rgba(43,40,35,.82); }
.journal-article #opVideoDialog .op-video-dialog__frame {
    position: relative; aspect-ratio: 16 / 9; width: 100%;
    border-radius: 16px; overflow: hidden; background: #000;
}
.journal-article #opVideoDialog .op-video-dialog__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.journal-article #opVideoDialog .op-video-dialog__close {
    position: absolute; top: -16px; right: -16px; width: 44px; height: 44px;
    border-radius: 50%; border: none; background: var(--jr-gold-light); color: var(--jr-ink);
    font-size: 26px; line-height: 1; cursor: pointer; box-shadow: 0 8px 20px rgba(0,0,0,.4); z-index: 2;
}
.journal-article #opVideoDialog .op-video-dialog__close:focus-visible { outline: 3px solid #fff; outline-offset: 2px; }

/* article body — styles the authored post HTML (the_content) */
.journal-article .jr-body { padding-top: clamp(2rem, 4vw, 3rem); }
.journal-article .jr-body h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(1.5rem, 3.6vw, 2rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: clamp(2.25rem, 4.5vw, 3.25rem) 0 1rem;
    color: var(--jr-ink);
    scroll-margin-top: 90px;
}
.journal-article .jr-body h2::before,
.journal-article .jr-faq > h2::before {
    content: '';
    display: block;
    width: 58px;
    height: 7px;
    margin-bottom: 0.85rem;
    background-image:
        linear-gradient(var(--jr-gold), var(--jr-gold)),
        radial-gradient(circle, #D9D5CD 0 2px, transparent 2.25px),
        radial-gradient(circle, #D9D5CD 0 2px, transparent 2.25px),
        linear-gradient(var(--jr-gold), var(--jr-gold)),
        radial-gradient(circle, #D9D5CD 0 2px, transparent 2.25px),
        linear-gradient(var(--jr-gold), var(--jr-gold));
    background-position: 0 0, 12px center, 21px center, 30px 0, 42px center, 51px 0;
    background-repeat: no-repeat;
    background-size: 7px 7px, 4px 4px, 4px 4px, 7px 7px, 4px 4px, 7px 7px;
}
.journal-article .jr-body h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: clamp(1.2rem, 2.6vw, 1.45rem);
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin: 1.75rem 0 0.75rem;
    color: var(--jr-ink);
}
.journal-article .jr-body p,
.journal-article .jr-body li {
    font-size: clamp(1.02rem, 2.2vw, 1.15rem);
    line-height: 1.75;
    color: var(--jr-ink-body);
}
.journal-article .jr-body p { margin: 0 0 1.1rem; }
.journal-article .jr-body ul,
.journal-article .jr-body ol { margin: 0 0 1.4rem; padding-left: 1.3rem; }
.journal-article .jr-body li { margin: 0 0 0.5rem; }
.journal-article .jr-body strong { color: var(--jr-ink); }
.journal-article .jr-body a { color: #8F5E0A; text-decoration: underline; text-underline-offset: 2px; }
.journal-article .jr-body a:hover,
.journal-article .jr-body a:focus-visible { color: #6F4808; }
.journal-article .jr-body blockquote {
    position: relative;
    margin: clamp(2rem, 4vw, 2.75rem) 0;
    border: 0;
    padding: 0.25rem 0 0.25rem clamp(2.9rem, 6vw, 3.6rem);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: clamp(1.25rem, 3vw, 1.65rem);
    line-height: 1.35;
    letter-spacing: -0.01em;
    color: var(--jr-ink);
}
.journal-article .jr-body blockquote::before {
    content: '';
    position: absolute;
    top: 0.35rem;
    left: 0;
    width: 32px;
    height: 24px;
    background-image:
        linear-gradient(rgba(183, 120, 13, 0.32), rgba(183, 120, 13, 0.32)),
        linear-gradient(rgba(183, 120, 13, 0.32), rgba(183, 120, 13, 0.32));
    background-position: 0 0, 18px 0;
    background-repeat: no-repeat;
    background-size: 12px 24px, 12px 24px;
}
.journal-article .jr-body blockquote p {
    margin: 0;
    font: inherit;
    line-height: inherit;
    color: inherit;
}
/* "quick answer" / callout — authored as .jr-quick in the post HTML */
.journal-article .jr-body .jr-quick {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: #17140F;
    border: 0;
    border-radius: 18px;
    padding: clamp(1.4rem, 2.8vw, 2rem);
    margin: 0 0 clamp(1.5rem, 3vw, 2rem);
}
.journal-article .jr-body .jr-quick::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 2;
    height: 4px;
    background: linear-gradient(90deg, #B7780D 0 20%, #B24A34 20% 40%, #2F6E5E 40% 60%, #B5622F 60% 80%, #2C6480 80% 100%);
}
.journal-article .jr-body .jr-quick::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle at calc(100% - 50px) 10px, rgba(216, 168, 27, 0.25), transparent 150px),
        radial-gradient(rgba(216, 168, 27, 0.16) 1.3px, transparent 1.4px),
        radial-gradient(rgba(216, 168, 27, 0.09) 1.3px, transparent 1.4px);
    background-position: 0 0, 0 0, 10px 10px;
    background-size: auto, 20px 20px, 20px 20px;
    opacity: 0.45;
}
.journal-article .jr-body .jr-quick > * { position: relative; z-index: 1; }
.journal-article .jr-body .jr-quick p { margin: 0; color: rgba(255, 255, 255, 0.94); }
.journal-article .jr-body .jr-quick strong { display: block; font-family: 'Montserrat', sans-serif; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--jr-gold-light); margin-bottom: 0.6rem; }
.journal-article .jr-body .jr-quick a { color: var(--jr-gold-light); }
.journal-article .jr-body .jr-quick a:hover,
.journal-article .jr-body .jr-quick a:focus-visible { color: #F3D068; }

/* FAQ accordions (native <details>) */
.journal-article .jr-faq { padding-top: clamp(2.5rem, 5vw, 3.5rem); }
.journal-article .jr-faq > h2 {
    font-family: 'Montserrat', sans-serif; font-weight: 800;
    font-size: clamp(1.5rem, 3.6vw, 2rem); letter-spacing: -0.02em;
    margin: 0 0 1.25rem; color: var(--jr-ink);
}
.journal-article .jr-faq details {
    border: 1px solid var(--jr-line);
    border-radius: 12px;
    background: var(--jr-card);
    margin-bottom: 0.75rem;
    overflow: hidden;
}
.journal-article .jr-faq summary {
    list-style: none;
    cursor: pointer;
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    padding: clamp(1rem, 2.2vw, 1.25rem) clamp(1.1rem, 2.4vw, 1.5rem);
    font-family: 'Montserrat', sans-serif; font-weight: 700;
    font-size: clamp(0.98rem, 2.1vw, 1.08rem); color: var(--jr-ink); line-height: 1.35;
}
.journal-article .jr-faq summary::-webkit-details-marker { display: none; }
.journal-article .jr-faq summary::after { content: '+'; color: var(--jr-gold); font-size: 1.3rem; line-height: 1; flex-shrink: 0; }
.journal-article .jr-faq details[open] summary::after { content: '\2013'; }
.journal-article .jr-faq details p { margin: 0; padding: 0 clamp(1.1rem, 2.4vw, 1.5rem) clamp(1.1rem, 2.4vw, 1.3rem); font-size: 1rem; line-height: 1.65; color: var(--jr-ink-soft); }

/* dark capture band (article) */
.journal-article .jr-capband--dark {
    isolation: isolate;
    background: #17140F;
    border: none;
    border-radius: 18px;
    padding: clamp(1.6rem, 3.2vw, 2.4rem);
    margin: clamp(2.25rem, 4.5vw, 3.25rem) 0 0;
    position: relative;
    overflow: hidden;
}
.journal-article .jr-capband--dark::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 2;
    height: 4px;
    background: linear-gradient(90deg, #B7780D 0 20%, #B24A34 20% 40%, #2F6E5E 40% 60%, #B5622F 60% 80%, #2C6480 80% 100%);
}
.journal-article .jr-capband--dark::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle at calc(100% - 50px) 10px, rgba(216, 168, 27, 0.25), transparent 160px),
        radial-gradient(rgba(216, 168, 27, 0.16) 1.3px, transparent 1.4px),
        radial-gradient(rgba(216, 168, 27, 0.09) 1.3px, transparent 1.4px);
    background-position: 0 0, 0 0, 10px 10px;
    background-size: auto, 20px 20px, 20px 20px;
    opacity: 0.45;
}
.journal-article .jr-capband--dark .op-capture-part { position: relative; z-index: 1; }
.journal-article .jr-capband--dark .op-capture-part__h,
.journal-article .jr-capband--dark .op-capture-part__body { color: #fff; }
.journal-article .jr-capband--dark .op-capture-part__body { color: rgba(255, 255, 255, 0.8); }

/* =================== SHARED CAPTURE PARTIAL (VR-1) ======================= */
/* template-parts/capture-form.php ships the theme's canon capture classes
   (.op-hp honeypot, .op-field, .op-consent, .op-pill--gold submit); the journal
   surface never carried the page CSS for them, so the honeypot showed and the
   Send button rendered native. Style them to the DQ canon (percussion.css /
   home.css idiom — same values, --jr-* tokens since design-system-2.0/main.css
   is not loaded here), scoped to both journal roots. The form lands on the light
   index band (.jr-capband) and the dark article band (.jr-capband--dark). */

/* honeypot — the theme's exact hide idiom (percussion.css/contact.css/home.css) */
.journal-index .op-hp,
.journal-article .op-hp { position: absolute !important; left: -9999px !important; top: auto; width: 1px; height: 1px; overflow: hidden; }

/* result flags */
.journal-index .op-flag,
.journal-article .op-flag { display: flex; align-items: flex-start; gap: 12px; padding: 14px 18px; border-radius: 12px; margin-bottom: 20px; font-family: 'Lato', sans-serif; }
.journal-index .op-flag strong,
.journal-article .op-flag strong { font-family: 'Montserrat', sans-serif; display: block; margin-bottom: 2px; }
.journal-index .op-flag p,
.journal-article .op-flag p { margin: 0; font-size: 0.92rem; }
.journal-index .op-flag--ok,
.journal-article .op-flag--ok { background: rgba(40, 167, 69, 0.1); border: 1px solid rgba(40, 167, 69, 0.4); color: #1c5b2b; }
.journal-index .op-flag--err,
.journal-article .op-flag--err { background: rgba(154, 59, 31, 0.08); border: 1px solid rgba(154, 59, 31, 0.35); color: #7a2c17; }
/* Dark article band: the shared flags' dark text fails 4.5:1 on #17140F — lift to
   light text (SD-QB-A11Y / WCAG 1.4.3). Article-scoped; index band unaffected. */
.journal-article .jr-capband--dark .op-flag--ok { color: #9FE0B5; }
.journal-article .jr-capband--dark .op-flag--err { color: #F2B09B; }

/* heading + body (base — the dark-band overrides above stay more specific) */
.journal-index .op-capture-part__h,
.journal-article .op-capture-part__h { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: clamp(1.35rem, 3vw, 1.8rem); line-height: 1.15; letter-spacing: -0.02em; margin: 0 0 0.55rem; color: var(--jr-ink); }
.journal-index .op-capture-part__body,
.journal-article .op-capture-part__body { font-size: 1.02rem; line-height: 1.55; color: var(--jr-ink-soft); margin: 0 0 1.25rem; max-width: 52ch; }

/* form fields */
.journal-index .op-capture__form,
.journal-article .op-capture__form { display: flex; flex-direction: column; gap: 16px; }
.journal-index .op-field,
.journal-article .op-field { display: flex; flex-direction: column; gap: 7px; }
.journal-index .op-field__label,
.journal-article .op-field__label { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--jr-ink); }
.journal-index .op-field input[type="email"],
.journal-article .op-field input[type="email"] { width: 100%; padding: 15px 16px; font-family: 'Lato', sans-serif; font-size: 1rem; color: var(--jr-ink); background: #fdfcfa; border: 1.5px solid rgba(35, 31, 25, 0.2); border-radius: 12px; }
.journal-index .op-field input[type="email"]:focus,
.journal-article .op-field input[type="email"]:focus { outline: 3px solid var(--jr-gold-light); outline-offset: 1px; border-color: var(--jr-gold); }

/* consent row */
.journal-index .op-consent,
.journal-article .op-consent { display: flex; align-items: flex-start; gap: 11px; font-family: 'Lato', sans-serif; font-size: 0.9rem; line-height: 1.5; color: var(--jr-ink-soft); cursor: pointer; }
.journal-index .op-consent input[type="checkbox"],
.journal-article .op-consent input[type="checkbox"] { appearance: none; -webkit-appearance: none; width: 20px; height: 20px; margin-top: 1px; border: 1.5px solid rgba(35, 31, 25, 0.4); border-radius: 4px; background: #fff; flex: 0 0 auto; cursor: pointer; }
.journal-index .op-consent input[type="checkbox"]:checked,
.journal-article .op-consent input[type="checkbox"]:checked { background-color: var(--jr-gold); border-color: var(--jr-gold); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4 10-11'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; background-size: 14px 14px; }
.journal-index .op-consent input[type="checkbox"]:focus-visible,
.journal-article .op-consent input[type="checkbox"]:focus-visible { outline: 2px solid var(--jr-gold); outline-offset: 2px; }
.journal-index .op-consent a,
.journal-article .op-consent a { color: var(--jr-gold); font-weight: 700; text-decoration: underline; }

/* submit — canon .op-pill--gold shape (solid gold, white text, pill) */
.journal-index .op-capture__submit,
.journal-article .op-capture__submit { display: inline-flex; align-items: center; justify-content: center; gap: 10px; width: 100%; margin-top: 4px; padding: 15px 28px; border: none; border-radius: 9999px; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 14.5px; text-transform: uppercase; letter-spacing: 0.04em; color: #fff; background: var(--jr-gold); box-shadow: 0 10px 24px rgba(43, 40, 35, 0.18); cursor: pointer; transition: transform 0.15s ease, box-shadow 0.15s ease; }
.journal-index .op-capture__submit:hover,
.journal-article .op-capture__submit:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(43, 40, 35, 0.24); color: #fff; }
.journal-index .op-capture__submit:focus-visible,
.journal-article .op-capture__submit:focus-visible { outline: 3px solid var(--jr-gold-light); outline-offset: 3px; }
.journal-index .op-capture__reassure,
.journal-article .op-capture__reassure { text-align: center; font-family: 'Lato', sans-serif; font-size: 0.82rem; color: var(--jr-muted); margin: 2px 0 0; }

/* dark article band — the field chrome must read on ink */
.journal-article .jr-capband--dark .op-field__label { color: rgba(255, 255, 255, 0.85); }
.journal-article .jr-capband--dark .op-consent { color: rgba(255, 255, 255, 0.78); }
.journal-article .jr-capband--dark .op-consent input[type="checkbox"] { border-color: rgba(255, 255, 255, 0.5); background: rgba(255, 255, 255, 0.06); }
.journal-article .jr-capband--dark .op-consent input[type="checkbox"]:checked { background-color: var(--jr-gold-light); border-color: var(--jr-gold-light); }
.journal-article .jr-capband--dark .op-consent a { color: var(--jr-gold-light); }
.journal-article .jr-capband--dark .op-field input[type="email"] { background: rgba(255, 255, 255, 0.95); }
.journal-article .jr-capband--dark .op-capture__submit { background: var(--jr-gold-light); color: var(--jr-ink); }
.journal-article .jr-capband--dark .op-capture__submit:hover { color: var(--jr-ink); }
.journal-article .jr-capband--dark .op-capture__reassure { color: rgba(255, 255, 255, 0.6); }

/* related-offer card + keep-reading */
.journal-article .jr-offer-wrap { max-width: 1080px; margin: 0 auto; padding: clamp(3rem, 6vw, 4.5rem) clamp(1.25rem, 5vw, 2rem) 0; }
.journal-article .jr-offer {
    position: relative;
    isolation: isolate;
    display: flex; flex-wrap: wrap;
    background: #17140F;
    border-radius: 22px; overflow: hidden;
}
.journal-article .jr-offer::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 3;
    height: 5px;
    background: linear-gradient(90deg, #B7780D 0 20%, #B24A34 20% 40%, #2F6E5E 40% 60%, #B5622F 60% 80%, #2C6480 80% 100%);
}
.journal-article .jr-offer::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        radial-gradient(rgba(216, 168, 27, 0.16) 1.3px, transparent 1.4px),
        radial-gradient(rgba(216, 168, 27, 0.09) 1.3px, transparent 1.4px);
    background-position: 0 0, 10px 10px;
    background-size: 20px 20px, 20px 20px;
    opacity: 0.4;
}
.journal-article .jr-offer--course { background: #17140F; }
.journal-article .jr-offer__body {
    position: relative;
    z-index: 1;
    flex: 1 1 340px; min-width: 0;
    padding: clamp(1.75rem, 3.6vw, 3rem);
    display: flex; flex-direction: column; justify-content: center;
}
.journal-article .jr-offer__body::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    z-index: 0;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(216, 168, 27, 0.25), transparent 70%);
}
.journal-article .jr-offer__body > * { position: relative; z-index: 1; }
.journal-article .jr-offer__kick { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--jr-gold-light); margin: 0 0 1rem; }
.journal-article .jr-offer__body h2 {
    font-family: 'Montserrat', sans-serif; font-weight: 800;
    font-size: clamp(1.5rem, 3.4vw, 2.1rem); line-height: 1.15; letter-spacing: -0.02em;
    color: #fff; margin: 0 0 0.9rem; text-wrap: balance;
}
.journal-article .jr-offer__body p { font-size: 1.02rem; line-height: 1.6; color: rgba(255, 255, 255, 0.8); margin: 0 0 1.5rem; max-width: 46ch; }
.journal-article .jr-offer__cta {
    align-self: flex-start;
    display: inline-flex; align-items: center; gap: 0.55rem;
    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.95rem;
    color: var(--jr-ink);
    background: linear-gradient(135deg, var(--jr-gold-light), #f0c040);
    padding: 0.85rem 1.5rem; border-radius: 9999px; text-decoration: none;
    transition: transform .2s, box-shadow .2s;
}
.journal-article .jr-offer__cta:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28); }
.journal-article .jr-offer__cta:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
.journal-article .jr-offer__media { flex: 1 1 320px; min-width: 0; position: relative; z-index: 1; min-height: 280px; background: #1f1c18; }
.journal-article .jr-offer__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* responsive */
@media (max-width: 720px) {
    .journal-index .jr-featured__body,
    .journal-index .jr-featured__media { flex-basis: 100%; }
    .journal-index .jr-empty { grid-template-columns: 1fr; }
    .journal-index .jr-empty__media { min-height: 200px; order: -1; }
    .journal-article .jr-embed .op-video-trigger::after { width: 56px; height: 56px; background-size: 24px 24px; }
    .journal-article #opVideoDialog .op-video-dialog__close { top: -8px; right: 6px; }
}
