/* LOCKED — Approved by Mr. Egan, June 10 2026. Do not modify without explicit instruction. */

/* ================================================================
   HOME SERVICES DISPATCH - World-Class Web Template
   Design: Bloomberg/Economist editorial quality
   ================================================================ */

@font-face {
    font-family: 'Twentieth Century';
    src: url('/fonts/twentieth-century.woff2') format('woff2');
    font-weight: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Twentieth Century';
    src: url('/fonts/twentieth-century-bold.woff2') format('woff2');
    font-weight: bold;
    font-display: swap;
}
@font-face {
    font-family: 'Instrument Serif';
    src: url('/fonts/instrument-serif-regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Instrument Serif';
    src: url('/fonts/instrument-serif-italic.woff2') format('woff2');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

:root {
    --text-xs: 0.8rem;
    --text-sm: 0.9rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
}

*, *::before, *::after { box-sizing: border-box; }

/* ── FOUNDATION ── */
html { -webkit-text-size-adjust: 100%; font-size: 16px; }

body {
    margin: 0;
    padding: 0;
    background-color: #f8f7f5;
    color: #1a1a1a;
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 1.2rem;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ── TOP NAV ── */
.dispatch-topnav {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}
.dispatch-topnav-inner {
    max-width: 550px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.dispatch-topnav-back {
    font-family: 'Twentieth Century', Futura, 'Century Gothic', sans-serif;
    font-size: 14px;
    color: #4a4a4a;
    text-decoration: none;
    transition: color 0.15s;
}
.dispatch-topnav-back:hover { color: #000000; }
.dispatch-topnav-subscribe {
    font-family: 'Twentieth Century', Futura, 'Century Gothic', sans-serif;
    font-size: 14px;
    font-weight: bold;
    color: #ffffff;
    background: #1A1A1A;
    text-decoration: none;
    padding: 6px 14px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    display: inline-block;
    transition: background 0.15s;
}
.dispatch-topnav-subscribe:hover { background: #333333; }

/* ── PAGE WRAPPER ── */
.dispatch-page {
    max-width: 550px;
    margin: 0 auto;
    background: #ffffff;
    min-height: 100vh;
}

/* ── NAMEPLATE ── */
.dispatch-nameplate {
    padding: 40px 20px 16px;
    text-align: center;
}
.dispatch-nameplate a { display: inline-block; }
.dispatch-nameplate img {
    max-width: 344px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* ── TAGLINE / MASTHEAD MOTTO ── */
.dispatch-tagline {
    max-width: 550px;
    margin: 0 auto;
    padding: 0 32px 24px;
    text-align: center;
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 17px;
    font-style: italic;
    color: #5a5a5a;
    line-height: 1.5;
    letter-spacing: 0.1px;
}

/* ── ARTICLE HEADER ── */
.dispatch-article-header { padding: 0 20px; }

.dispatch-title {
    font-family: 'Twentieth Century', Futura, 'Century Gothic', sans-serif !important;
    font-size: var(--text-4xl);
    font-weight: bold;
    letter-spacing: -1px;
    border-bottom: 1px solid #000000;
    margin: 0;
    padding: 24px 0 4px;
    color: #1a1a1a;
    line-height: 1.05;
}

/* ── BYLINE ── */
.dispatch-byline {
    padding: 14px 20px;
    border-bottom: 1px solid #ebebeb;
    display: flex;
    align-items: center;
    gap: 10px;
}
.dispatch-byline-photo {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid #e8e8e8;
}
.dispatch-byline-info {
    font-family: 'Twentieth Century', Futura, 'Century Gothic', sans-serif;
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.4;
    letter-spacing: 0.2px;
    display: flex;
    flex-direction: column;
}
.dispatch-byline-name { font-weight: normal; color: #1a1a1a; }
.dispatch-byline-date { color: #767676; font-size: 14px; }

/* ── SHARE ICONS (inline in byline) ── */
.dispatch-share-icons {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}
.dispatch-share-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1.5px solid #1a1a1a;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.15s;
    text-decoration: none;
    color: #1a1a1a;
    padding: 0;
}
.dispatch-share-icon:hover {
    background: #1a1a1a;
    color: #ffffff;
}
.dispatch-share-icon svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}
.dispatch-share-icon--stroke svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ── FLOATING COPY LINK (hidden until scroll past byline) ── */
.dispatch-float-copy {
    position: fixed;
    bottom: 24px;
    right: 24px;
    opacity: 0;
    pointer-events: none;
    background: #ffffff;
    border: 1.5px solid #000000;
    border-radius: 6px;
    padding: 10px 16px;
    font-family: 'Twentieth Century', Futura, 'Century Gothic', sans-serif;
    font-size: 13px;
    font-weight: bold;
    color: #000000;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15), 0 1px 3px rgba(0,0,0,0.08);
    transition: box-shadow 0.15s, opacity 0.25s;
}
.dispatch-float-copy:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.2), 0 2px 4px rgba(0,0,0,0.1);
}
.dispatch-float-copy svg {
    width: 14px;
    height: 14px;
    stroke-width: 2.5;
}

/* ── TOAST NOTIFICATION ── */
.dispatch-toast {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a1a;
    color: #fff;
    font-family: 'Twentieth Century', Futura, 'Century Gothic', sans-serif;
    font-size: 14px;
    padding: 12px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
}
.dispatch-toast.show {
    opacity: 1;
    pointer-events: auto;
}
.dispatch-toast-check {
    width: 20px;
    height: 20px;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}
.dispatch-toast-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    padding: 0 0 0 8px;
    opacity: 0.7;
}
.dispatch-toast-close:hover { opacity: 1; }

/* ── ARTICLE BODY ── */
.dispatch-body { padding: 16px 20px 0; }
.dispatch-body p {
    margin: 0 0 20px 0;
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 1.2rem;
    line-height: 1.65;
    color: #1a1a1a;
}
.dispatch-body a { color: #1c4587; text-decoration: underline; }
.dispatch-body a:hover { color: #2a5698; }
.dispatch-body img { max-width: 100%; height: auto; display: block; margin: 8px 0 16px; }

/* ── SECTION HEADINGS - exact email-custom-css.md spec ── */
.dispatch-body h1,
.dispatch-body h2,
.dispatch-body h3,
.dispatch-body h4,
.dispatch-body h5,
.dispatch-body h6,
.dispatch-heading {
    font-family: 'Twentieth Century', Futura, 'Century Gothic', sans-serif !important;
    font-weight: bold;
    letter-spacing: -1px;
    border-top: 1px solid #000000;
    border-bottom: none;
    margin: 40px 0 16px;
    padding: 10px 0 0;
    color: #1a1a1a;
    line-height: 1;
}
.dispatch-body h2, .dispatch-heading { font-size: 30px; }
.dispatch-body h1 { font-size: 37px; }
.dispatch-body h3 { font-size: 24px; letter-spacing: -0.3px; border-top: none; border-bottom: none; margin: 24px 0 8px; padding: 0; line-height: 1.2; }
.dispatch-body h4 { font-size: 20px; letter-spacing: -0.3px; border-top: none; border-bottom: none; margin: 24px 0 8px; padding: 0; line-height: 1.2; }

/* ── LISTS ── */
.dispatch-body ul {
    list-style: none;
    margin: 0 0 20px 0;
    padding-left: 32px;
}
.dispatch-body ul li {
    position: relative;
}
.dispatch-body ul li::before {
    content: '\27A2';
    position: absolute;
    left: -1.4em;
    top: 0.1em;
}
.dispatch-body ol {
    margin: 0 0 20px 0;
    padding-left: 32px;
}
.dispatch-body li {
    margin-bottom: 8px;
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 1.2rem;
    line-height: 1.65;
    color: #1a1a1a;
}

/* ── INTRO BOX ── */
.dispatch-intro-box {
    background: #f2f1ef;
    padding: 16px 20px;
    margin: 0 0 20px 0;
    border-radius: 0;
}
.dispatch-intro-box p {
    margin: 0 !important;
    padding: 0;
}

/* ── BLOCKQUOTES ── */
.dispatch-body blockquote {
    margin: 0 0 12px 0;
    padding: 0 0 0 16px;
    border-left: 2px solid #1a1a1a;
}
.dispatch-body blockquote p { margin: 0 0 8px 0; font-style: italic; color: #4a4a4a; }

/* ── BLOCKQUOTE VARIANT: EDITORIAL (orange left stripe, cream bg) ── */
.dispatch-body blockquote.dispatch-quote-editorial {
    background: #FAF9F7;
    border-left: 4px solid #FF9902;
    padding: 20px;
    margin: 0 0 12px 0;
}
.dispatch-body blockquote.dispatch-quote-editorial p {
    font-style: italic;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}

/* ── BLOCKQUOTE VARIANT: AUTHORITY (navy bg, white text, centered) ── */
.dispatch-body blockquote.dispatch-quote-authority {
    background: #1C4587;
    border-left: none;
    padding: 32px 24px;
    margin: 0 0 12px 0;
    text-align: center;
}
.dispatch-body blockquote.dispatch-quote-authority p {
    font-style: italic;
    font-weight: bold;
    color: #ffffff;
    font-size: 1.2rem;
    margin: 0 0 8px 0;
}

/* ── STRONG / EM ── */
.dispatch-body strong, .dispatch-body b {
    font-family: 'Instrument Serif', Georgia, serif !important;
    font-weight: bold;
}

/* DROP CAP removed - content opens with quotation marks which break ::first-letter */

/* ── PUBLISHER ATTRIBUTION ── */
.dispatch-publisher {
    margin: 36px 20px 0;
    padding: 24px 20px 24px;
    background: #1c4587;
    text-align: center;
}
.dispatch-publisher-logo {
    display: inline-block;
    width: 220px;
    height: auto;
    margin: 0 auto 8px;
}
.dispatch-publisher-text {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
}
.dispatch-publisher-text a {
    color: #ff9902;
    text-decoration: underline;
}
.dispatch-publisher-text a:hover { color: #ffb347; }

/* ── SUBSCRIBE CTA ── */
.dispatch-subscribe-cta {
    margin: 32px 20px 0;
    padding: 28px 24px;
    border: none;
    background: #FAF9F7;
}
.dispatch-subscribe-headline {
    font-family: 'Twentieth Century', Futura, 'Century Gothic', sans-serif;
    font-size: 30px;
    font-weight: bold;
    letter-spacing: -0.3px;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    line-height: 1.3;
}
.dispatch-subscribe-body {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 1.2rem;
    color: #4a4a4a;
    line-height: 1.55;
    margin: 0 0 20px 0;
}
.dispatch-subscribe-btn {
    display: inline-block;
    background: #1A1A1A;
    color: #ffffff !important;
    text-decoration: none !important;
    font-family: 'Twentieth Century', Futura, 'Century Gothic', sans-serif;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 24px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s;
}
.dispatch-subscribe-btn:hover { background: #333333; }
.dispatch-subscribe-btn:disabled { background: #cca050; cursor: not-allowed; }

/* Subscribe CTA inline form */
.dispatch-subscribe-cta-form { display: flex; margin-top: 4px; }
.dispatch-subscribe-cta-input {
    flex: 1;
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 16px;
    padding: 14px 16px;
    border: 1px solid #d0d0d0;
    border-right: none;
    outline: none;
    color: #000;
    background: #fff;
    min-width: 0;
}
.dispatch-subscribe-cta-input::placeholder { color: #999; }
.dispatch-subscribe-cta-input:focus { border-color: #333; outline: none; }
.dispatch-subscribe-cta-form .dispatch-subscribe-btn {
    flex-shrink: 0;
}

/* Subscribe inline form states */
.dispatch-subscribe-msg {
    font-family: 'Twentieth Century', Futura, 'Century Gothic', sans-serif;
    font-size: 13px;
    margin: 8px 0 0;
    display: none;
}
.dispatch-subscribe-success { color: #2e7d32; font-weight: bold; }
.dispatch-subscribe-error   { color: #c0392b; }

/* ── FOOTER ── */
.dispatch-footer {
    margin-top: 40px;
    padding: 20px 20px 48px;
}
.dispatch-footer p {
    font-family: 'Twentieth Century', Futura, 'Century Gothic', sans-serif;
    font-size: var(--text-xs);
    color: #767676;
    text-align: center;
    margin: 0;
    line-height: 1.6;
}
.dispatch-footer a { color: #1c4587; text-decoration: underline; }
.dispatch-footer a:hover { color: #2a5698; }


/* ── KEEP READING SECTION ── */
.dispatch-keep-reading {
    margin: 32px 20px 0;
}
/* Reset top margin on the heading so the container margin handles spacing */
.dispatch-keep-reading > .dispatch-heading {
    margin-top: 0;
}
.dispatch-keep-reading-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 0;
}
.dispatch-keep-reading-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border: 1px solid #e0e0e0;
    padding: 24px;
    transition: border-color 0.15s;
}
.dispatch-keep-reading-card:hover {
    border-color: #1a1a1a;
}
.dispatch-keep-reading-title {
    font-family: 'Twentieth Century', Futura, 'Century Gothic', sans-serif;
    font-weight: bold;
    font-size: 24px;
    letter-spacing: -0.3px;
    color: #1a1a1a;
    margin: 0 0 4px;
    line-height: 1.2;
}
.dispatch-keep-reading-date {
    font-family: 'Twentieth Century', Futura, 'Century Gothic', sans-serif;
    font-size: 14px;
    color: #767676;
    margin: 0 0 12px;
    line-height: 1.4;
}
.dispatch-keep-reading-desc {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 1.2rem;
    color: #1a1a1a;
    line-height: 1.55;
    margin: 0;
}
.dispatch-keep-reading-viewall {
    display: inline-block;
    font-family: 'Twentieth Century', Futura, 'Century Gothic', sans-serif;
    font-size: 14px;
    color: #1a1a1a;
    text-decoration: none;
    margin-top: 20px;
}
.dispatch-keep-reading-viewall:hover {
    text-decoration: underline;
}


/* ── BIO SECTION (two-column: photo left, text right) ── */
.dispatch-bio {
    margin: 0 0 12px 0;
    background: #FAF9F7;
    border-top: 3px solid #1c4587;
    padding: 24px;
}
.dispatch-bio-photo {
    float: left;
    width: 200px;
    margin: 0 24px 8px 0;
}
.dispatch-bio-photo img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
}

/* ── IMAGE CAPTION STANDARD (site-wide) ── */
.dispatch-caption,
.dispatch-bio-caption,
.dispatch-body .dispatch-bio-caption,
.dispatch-body .dispatch-caption {
    font-family: 'Twentieth Century', Futura, 'Century Gothic', sans-serif !important;
    font-size: var(--text-xs) !important;
    color: #4a4a4a !important;
    text-align: center;
    margin: 6px 0 0;
    line-height: 1.15 !important;
}
.dispatch-bio p {
    margin-top: 0;
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.55;
    margin-bottom: 0;
}

br.mobile-only { display: none; }

/* ── MOBILE (shared) ── */
@media screen and (max-width: 600px) {
    br.mobile-only { display: block; }
    .dispatch-bio-photo { float: none; width: 180px; margin: 0 auto 12px; display: block; }
    body { background-color: #ffffff; overflow-x: hidden; }
    .dispatch-topnav-inner { padding: 8px 16px; }
    .dispatch-topnav-back { font-size: 13px; }
    .dispatch-topnav-subscribe { font-size: 12px; padding: 5px 12px; }
    .dispatch-nameplate { padding: 20px 16px 14px; }
    .dispatch-nameplate img { max-width: 275px; }
    .dispatch-article-header { padding: 0 16px; }
    .dispatch-title { font-size: 28px; padding: 16px 0 2px; line-height: 1; }
    .dispatch-byline { padding: 12px 16px; }
    .dispatch-body { padding: 14px 16px 0; overflow-wrap: break-word; word-break: break-word; }
    .dispatch-intro-box { padding: 14px 16px; }
    .dispatch-body h1 { font-size: 32px; }
    .dispatch-body h2, .dispatch-heading { font-size: 26px; margin: 32px 0 12px; }
    .dispatch-body h3 { font-size: 21px; letter-spacing: 0; border-top: none; border-bottom: none; margin: 20px 0 6px; }
    .dispatch-body p { font-size: 18px; line-height: 1.6; margin: 0 0 16px 0; }
    .dispatch-body li { font-size: 18px; line-height: 1.6; }
    .dispatch-body ol { padding-left: 32px; }
    .dispatch-body blockquote.dispatch-quote-authority p { font-size: 16px; }
    .dispatch-subscribe-cta { margin: 24px 16px 0; padding: 20px; }
    .dispatch-subscribe-headline { font-size: 26px; }
    .dispatch-subscribe-body { font-size: 18px; }
    .dispatch-subscribe-cta-form { flex-wrap: wrap; }
    .dispatch-subscribe-cta-input { border-right: 1px solid #d0d0d0; }
    .dispatch-publisher { margin: 36px 16px 0; }
    .dispatch-publisher-logo { width: 180px; }
    .dispatch-publisher-text { font-size: 18px; }
    .dispatch-footer { padding: 16px 16px 80px; }
    .dispatch-float-copy { bottom: 16px; right: 16px; }
    .dispatch-tagline { padding: 8px 20px 16px; font-size: 14px; }
    .dispatch-share-icons { gap: 6px; }
    .dispatch-share-icon { width: 36px; height: 36px; }
    .dispatch-share-icon svg { width: 14px; height: 14px; }
    .dispatch-keep-reading { margin: 24px 16px 0; }
    .dispatch-keep-reading-title { font-size: 21px; }
    .dispatch-keep-reading-desc { font-size: 18px; }
    .dispatch-keep-reading-card { padding: 20px; }
}


/* ================================================================
   INDEX-SPECIFIC STYLES
   These classes only appear on dispatch/index.html
   ================================================================ */

/* Subscribe form (index hero form, not article CTA form) */
.dispatch-subscribe-form {
    max-width: 550px;
    margin: 0 auto;
    padding: 0 20px 40px;
    display: flex;
}
.dispatch-subscribe-input {
    flex: 1;
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 16px;
    padding: 14px 16px;
    border: 1px solid #d0d0d0;
    border-right: none;
    border-radius: 0;
    outline: none;
    color: #000;
    background: #fff;
}
.dispatch-subscribe-input::placeholder { color: #999; }
.dispatch-subscribe-input:focus { border-color: #000; }
.dispatch-subscribe-submit {
    font-family: 'Twentieth Century', Futura, 'Century Gothic', sans-serif;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 28px;
    background: #000;
    color: #fff;
    border: 1px solid #000;
    cursor: pointer;
    white-space: nowrap;
}
.dispatch-subscribe-submit:hover { background: #333; }
.dispatch-subscribe-submit:disabled { background: #666; cursor: not-allowed; }

/* Latest section header */
.dispatch-latest-header {
    max-width: 550px;
    margin: 0 auto;
    padding: 0 20px 16px;
}
.dispatch-latest-header h1 {
    font-family: 'Twentieth Century', Futura, 'Century Gothic', sans-serif !important;
    font-size: var(--text-4xl);
    font-weight: bold;
    letter-spacing: -1px;
    color: #1a1a1a;
    margin: 0;
    padding: 20px 0 2px;
    border-bottom: 1px solid #000000;
    line-height: 1;
}

/* Article list */
.dispatch-index-list {
    max-width: 550px;
    margin: 0 auto;
    padding: 0 20px;
}
.dispatch-index-item {
    display: block;
    padding: 32px 0;
    border-top: none;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: background 0.1s;
}
.dispatch-index-item:hover { background: #f8f7f5; margin: 0 -20px; padding: 32px 20px; }
.dispatch-index-divider {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 0;
}
.dispatch-index-item:last-child { padding-bottom: 40px; }
.dispatch-index-date {
    font-family: 'Twentieth Century', Futura, 'Century Gothic', sans-serif;
    font-size: 13px;
    color: #767676;
    margin: 0 0 8px;
}
.dispatch-index-title {
    font-family: 'Twentieth Century', Futura, 'Century Gothic', sans-serif !important;
    font-size: 30px;
    font-weight: bold;
    letter-spacing: -1px;
    margin: 0 0 12px;
    padding: 0;
    border: none;
    line-height: 1.3;
    color: #1a1a1a;
}
.dispatch-index-desc {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: var(--text-xl);
    color: #1a1a1a;
    margin: 0 0 12px 0;
    line-height: 1.5;
}
.dispatch-index-readmore {
    display: none;
    display: inline-block;
    font-family: 'Twentieth Century', Futura, 'Century Gothic', sans-serif;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    background: #000;
    padding: 12px 24px;
    text-decoration: none;
}
.dispatch-index-readmore:hover { background: #333; }

/* Index subscribe msg: override shared margin/padding for the index form context */
.dispatch-subscribe-form + .dispatch-subscribe-msg {
    max-width: 550px;
    margin: 0 auto;
    padding: 8px 20px 0;
}

/* ── MOBILE (index-specific) ── */
@media screen and (max-width: 600px) {
    .dispatch-subscribe-form { padding: 0 20px 32px; }
    .dispatch-subscribe-input { font-size: 15px; padding: 12px 14px; }
    .dispatch-subscribe-submit { font-size: 12px; padding: 12px 20px; }
    .dispatch-latest-header h1 { font-size: 28px; padding: 16px 0 2px; line-height: 1; }
    .dispatch-index-title { font-size: 26px; letter-spacing: -0.5px; }
    .dispatch-index-desc { font-size: var(--text-lg); }
    .dispatch-index-item { padding: 24px 0; }
}

/* ================================================================
   SUBSCRIBE LANDING PAGE  (/dispatch/subscribe.html)
   Extended June 19, 2026 — dedicated acquisition page
   ================================================================ */

/* ── NAMEPLATE MODIFIER (tighter bottom on subscribe page) ── */
.dispatch-nameplate--sub {
    padding-bottom: 4px;
}

/* ── HERO ── */
.dslp-hero {
    padding: 32px 24px 28px;
    text-align: center;
    background: #fff;
}
.dslp-hero-eyebrow {
    font-family: 'Twentieth Century', Futura, 'Century Gothic', sans-serif;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ff9902;
    margin-bottom: 16px;
}
.dslp-hero-headline {
    font-family: 'Twentieth Century', Futura, 'Century Gothic', sans-serif;
    font-size: 36px;
    font-weight: bold;
    letter-spacing: -1.5px;
    color: #1a1a1a;
    line-height: 1.08;
    margin: 0 0 18px;
}
.dslp-hero-sub {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.6;
    margin: 0 0 26px;
}
.dslp-hero-note {
    font-family: 'Twentieth Century', Futura, 'Century Gothic', sans-serif;
    font-size: 11px;
    letter-spacing: 0.5px;
    color: #aaa;
    margin: 10px 0 0;
    text-transform: uppercase;
}

/* ── SUBSCRIBE FORM (shared: hero + bottom CTA) ── */
.dslp-form {
    display: flex;
    max-width: 440px;
    margin: 0 auto;
}
.dslp-form-input {
    flex: 1;
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 16px;
    padding: 14px 16px;
    border: 2px solid #1a1a1a;
    border-right: none;
    outline: none;
    color: #000;
    background: #fff;
    min-width: 0;
    border-radius: 0;
    -webkit-appearance: none;
}
.dslp-form-input::placeholder { color: #aaa; }
.dslp-form-input:focus { border-color: #1c4587; }
.dslp-form-btn {
    font-family: 'Twentieth Century', Futura, 'Century Gothic', sans-serif;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 18px;
    background: #1a1a1a;
    color: #fff;
    border: 2px solid #1a1a1a;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
    border-radius: 0;
}
.dslp-form-btn:hover { background: #ff9902; border-color: #ff9902; color: #1a1a1a; }
.dslp-form-btn:disabled { background: #999; border-color: #999; cursor: not-allowed; }

/* Dark variant (bottom CTA) */
.dslp-form--dark .dslp-form-input {
    border-color: rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.08);
    color: #fff;
}
.dslp-form--dark .dslp-form-input::placeholder { color: rgba(255,255,255,0.4); }
.dslp-form--dark .dslp-form-input:focus { border-color: #ff9902; }
.dslp-form--dark .dslp-form-btn {
    background: #ff9902;
    border-color: #ff9902;
    color: #1a1a1a;
}
.dslp-form--dark .dslp-form-btn:hover { background: #ffb03a; border-color: #ffb03a; }

/* Success/error messages in dark context */
.dslp-cta-bottom .dispatch-subscribe-msg { color: #ff9902; }

/* ── AUTHOR / CREDIBILITY ── */
.dslp-author {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 28px 24px;
    background: #faf9f7;
    border-top: 3px solid #1c4587;
}
.dslp-author-photo {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #e0e0e0;
    display: block;
}
.dslp-author-content { flex: 1; min-width: 0; }
.dslp-author-name {
    font-family: 'Twentieth Century', Futura, 'Century Gothic', sans-serif;
    font-size: 17px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 2px;
    letter-spacing: -0.2px;
}
.dslp-author-title {
    font-family: 'Twentieth Century', Futura, 'Century Gothic', sans-serif;
    font-size: 12px;
    letter-spacing: 0.3px;
    color: #999;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.dslp-author-bio {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 0.98rem;
    color: #4a4a4a;
    line-height: 1.55;
    margin: 0;
}
.dslp-author-bio strong {
    font-family: 'Instrument Serif', Georgia, serif !important;
    font-weight: bold;
    color: #1a1a1a;
}

/* ── STATS BAR ── */
.dslp-stats {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 22px 20px;
    background: #1c4587;
}
.dslp-stat {
    text-align: center;
    flex: 1;
    padding: 0 8px;
}
.dslp-stat-num {
    font-family: 'Twentieth Century', Futura, 'Century Gothic', sans-serif;
    font-size: 26px;
    font-weight: bold;
    color: #ff9902;
    letter-spacing: -0.5px;
    line-height: 1;
    margin-bottom: 5px;
}
.dslp-stat-sup {
    font-size: 16px;
    vertical-align: super;
    line-height: 0;
}
.dslp-stat-label {
    font-family: 'Twentieth Century', Futura, 'Century Gothic', sans-serif;
    font-size: 10px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    line-height: 1.3;
}
.dslp-stat-rule {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.18);
    flex-shrink: 0;
}

/* ── SECTION LABEL ── */
.dslp-section-label {
    font-family: 'Twentieth Century', Futura, 'Century Gothic', sans-serif;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

/* ── FEATURES (WHAT YOU GET) ── */
.dslp-features {
    padding: 32px 24px;
    border-top: 1px solid #e0e0e0;
}
.dslp-features-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.dslp-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin: 0;
    line-height: 1;
}
/* Override global dispatch-body li::before (not in dispatch-body, but be safe) */
.dslp-features-list li::before { display: none !important; }
.dslp-feature-icon {
    font-size: 18px;
    flex-shrink: 0;
    line-height: 1.6;
    width: 24px;
    text-align: center;
}
.dslp-feature-text {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 1rem;
    color: #1a1a1a;
    line-height: 1.6;
}
.dslp-feature-text strong {
    font-family: 'Twentieth Century', Futura, 'Century Gothic', sans-serif !important;
    font-weight: bold;
    font-size: 0.9em;
    letter-spacing: 0.1px;
    color: #1a1a1a;
}

/* ── SAMPLE ISSUE PREVIEW ── */
.dslp-preview {
    padding: 32px 24px;
    border-top: 1px solid #e0e0e0;
}
.dslp-preview-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border: 1px solid #e0e0e0;
    padding: 20px;
    margin-bottom: 10px;
    transition: border-color 0.15s, background 0.15s;
    position: relative;
}
.dslp-preview-card:last-of-type { margin-bottom: 0; }
.dslp-preview-card:hover { border-color: #1c4587; background: #faf9f7; }
.dslp-preview-date {
    font-family: 'Twentieth Century', Futura, 'Century Gothic', sans-serif;
    font-size: 12px;
    letter-spacing: 0.3px;
    color: #aaa;
    margin-bottom: 6px;
}
.dslp-preview-title {
    font-family: 'Twentieth Century', Futura, 'Century Gothic', sans-serif;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: -0.3px;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 8px;
}
.dslp-preview-desc {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 0.98rem;
    color: #4a4a4a;
    line-height: 1.5;
    margin-bottom: 12px;
}
.dslp-preview-cta {
    font-family: 'Twentieth Century', Futura, 'Century Gothic', sans-serif;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #1c4587;
}
.dslp-preview-viewall {
    display: inline-block;
    margin-top: 16px;
    font-family: 'Twentieth Century', Futura, 'Century Gothic', sans-serif;
    font-size: 13px;
    color: #4a4a4a;
    text-decoration: none;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 1px;
}
.dslp-preview-viewall:hover { color: #1c4587; border-color: #1c4587; }

/* ── PULL QUOTE ── */
.dslp-pullquote {
    margin: 0;
    padding: 32px 24px;
    background: #faf9f7;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    border-left: none;
    border-right: none;
    text-align: center;
}
.dslp-pullquote p {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 1.15rem;
    font-style: italic;
    color: #1a1a1a;
    line-height: 1.6;
    margin: 0 0 12px;
}
.dslp-pullquote cite {
    font-family: 'Twentieth Century', Futura, 'Century Gothic', sans-serif;
    font-size: 12px;
    letter-spacing: 0.5px;
    color: #767676;
    font-style: normal;
    text-transform: uppercase;
}

/* ── BOTTOM CTA ── */
.dslp-cta-bottom {
    background: #1a1a1a;
}
.dslp-cta-inner {
    padding: 44px 24px;
    text-align: center;
}
.dslp-cta-headline {
    font-family: 'Twentieth Century', Futura, 'Century Gothic', sans-serif;
    font-size: 30px;
    font-weight: bold;
    letter-spacing: -0.8px;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 14px;
}
.dslp-cta-body {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin: 0 0 26px;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
}
.dslp-cta-note {
    font-family: 'Twentieth Century', Futura, 'Century Gothic', sans-serif;
    font-size: 11px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin: 10px 0 0;
}

/* ── INDEX PAGE: CTA LINK BUTTON (replaces subscribe form) ── */
.dispatch-index-cta-wrap {
    max-width: 550px;
    margin: 0 auto;
    padding: 0 20px 40px;
    display: flex;
    justify-content: center;
}
.dispatch-index-cta-btn {
    display: inline-block;
    font-family: 'Twentieth Century', Futura, 'Century Gothic', sans-serif;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 16px 36px;
    background: #000;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    border: none;
    transition: background 0.15s;
}
.dispatch-index-cta-btn:hover { background: #333; color: #fff; }

/* ── MOBILE: SUBSCRIBE LANDING PAGE ── */
@media screen and (max-width: 600px) {
    .dslp-hero { padding: 24px 20px 22px; }
    .dslp-hero-headline { font-size: 28px; letter-spacing: -0.8px; }
    .dslp-hero-sub { font-size: 1rem; margin-bottom: 20px; }
    .dslp-form { flex-direction: column; max-width: 100%; }
    .dslp-form-input { border-right: 2px solid #1a1a1a; border-bottom: none; }
    .dslp-form-btn { padding: 14px 20px; }
    .dslp-form--dark .dslp-form-input { border-right: 2px solid rgba(255,255,255,0.3); }
    .dslp-author { padding: 24px 20px; }
    .dslp-author-photo { width: 64px; height: 64px; }
    .dslp-stats { padding: 20px 12px; gap: 0; }
    .dslp-stat-num { font-size: 20px; }
    .dslp-stat-label { font-size: 9px; }
    .dslp-features { padding: 24px 20px; }
    .dslp-preview { padding: 24px 20px; }
    .dslp-pullquote { padding: 24px 20px; }
    .dslp-pullquote p { font-size: 1.05rem; }
    .dslp-cta-inner { padding: 36px 20px; }
    .dslp-cta-headline { font-size: 24px; }
    .dslp-cta-body { font-size: 1rem; }
    .dispatch-index-cta-wrap { padding: 0 20px 32px; }
    .dispatch-index-cta-btn { width: 100%; text-align: center; }
}
