/* =============================================================================
   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 .jr-hero {
    padding: clamp(2.5rem, 7vw, 4.5rem) 0 clamp(1.5rem, 3vw, 2.25rem);
}
.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__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-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);
}

/* 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 {
    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: inherit;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.journal-index .jr-card:hover,
.journal-index .jr-card:focus-visible {
    border-color: rgba(183, 120, 13, 0.45);
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(43, 40, 35, 0.10);
}
.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;
    gap: 0.55rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--jr-gold);
}
.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); text-transform: none; 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-gold); }

/* 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 .jr-empty__body { padding: clamp(1.75rem, 3.5vw, 3rem); }
.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 .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);
}

/* ============================== 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-crumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--jr-muted);
    padding: clamp(1.75rem, 4vw, 2.75rem) 0 0;
    margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}
.journal-article .jr-crumbs a { text-decoration: none; }
.journal-article .jr-crumbs a.is-cat { color: var(--jr-gold); }
.journal-article .jr-arthead h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 6vw, 3rem);
    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.35rem);
    line-height: 1.55;
    color: var(--jr-ink-soft);
    margin: 0 0 clamp(1.5rem, 3vw, 2.25rem);
    max-width: 60ch;
}
.journal-article .jr-byline {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1.1rem 0;
    border-top: 1px solid var(--jr-line);
    border-bottom: 1px solid var(--jr-line);
    margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
    font-family: 'Montserrat', sans-serif;
}
.journal-article .jr-byline__badge {
    width: 40px; height: 40px; border-radius: 50%;
    background: linear-gradient(135deg, var(--jr-gold), var(--jr-gold-light));
    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; color: var(--jr-ink); }
.journal-article .jr-byline__meta { font-family: 'Lato', sans-serif; font-size: 0.8rem; color: var(--jr-muted); }

/* 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; }

/* 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 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 { text-decoration: underline; text-underline-offset: 2px; }
.journal-article .jr-body blockquote {
    margin: clamp(2rem, 4vw, 2.75rem) 0;
    border-left: 4px solid var(--jr-gold);
    padding: 0.4rem 0 0.4rem clamp(1.1rem, 2.4vw, 1.6rem);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: clamp(1.2rem, 3vw, 1.55rem);
    line-height: 1.3;
    color: var(--jr-ink);
}
/* "quick answer" / callout — authored as .jr-quick in the post HTML */
.journal-article .jr-body .jr-quick {
    background: linear-gradient(135deg, var(--jr-gold-wash-1), #FBF3E4);
    border: 1px solid rgba(183, 120, 13, 0.28);
    border-left: 4px solid var(--jr-gold);
    border-radius: 14px;
    padding: clamp(1.25rem, 2.6vw, 1.75rem);
    margin: 0 0 clamp(1.5rem, 3vw, 2rem);
}
.journal-article .jr-body .jr-quick p { margin: 0; }
.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); margin-bottom: 0.6rem; }

/* FAQ accordions (native <details>) */
.journal-article .jr-faq { padding-top: clamp(2.25rem, 4.5vw, 3.25rem); }
.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 {
    background: var(--jr-ink);
    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 .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; }

/* 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 {
    display: flex; flex-wrap: wrap;
    background: linear-gradient(135deg, var(--jr-ink), #3a352d);
    border-radius: 22px; overflow: hidden;
}
.journal-article .jr-offer--course { background: linear-gradient(135deg, #4a3a24, var(--jr-ink)); }
.journal-article .jr-offer__body {
    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__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;
}
.journal-article .jr-offer__cta:hover { transform: translateY(-2px); }
.journal-article .jr-offer__media { flex: 1 1 320px; min-width: 0; position: relative; min-height: 260px; 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-empty { grid-template-columns: 1fr; }
    .journal-index .jr-empty__media { min-height: 200px; order: -1; }
}
