:root {
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --text-primary: #ffffff;
    --text-secondary: #888888;
    --accent: #064540;
    --accent-bright: #0a9a8f;
    --accent-glow: rgba(6, 69, 64, 0.15);
    --border: rgba(255, 255, 255, 0.08);
    --card-bg: rgba(255, 255, 255, 0.02);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.5;
}

/* ─── HEADER IMAGE ─── */
.edition-hero {
    max-width: 740px;
    margin: 48px auto 0;
    padding: 50px 40px 0px;
}

.edition-hero img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    border: 1px solid var(--border);
}

.edition-hero-caption {
    font-size: 14px;
    color: #696969;
    font-weight: 400;
    margin-top: 10px;
    text-align: center;
    font-style: italic;
}

/* ─── EDITION META ─── */
.edition-meta-wrap {
    max-width: 740px;
    margin: 0 auto;
    padding: 0 40px;
}

.edition-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px;
    background: rgba(6, 69, 64, 0.15);
    border: 1px solid rgba(10, 154, 143, 0.3);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-bright);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 48px;
    margin-bottom: 20px;
}

.edition-eyebrow::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent-bright);
    box-shadow: 0 0 6px var(--accent-bright);
}

.edition-title {
    font-family: 'Teko', sans-serif;
    font-size: clamp(40px, 6vw, 68px);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: 0.02em;
    margin-bottom: 28px;
    background: linear-gradient(180deg, #ffffff 0%, #aaaaaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.edition-byline {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 48px;
}

.byline-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    border: 1px solid rgba(10,154,143,0.3);
}

.byline-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.byline-name {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.byline-date {
    font-size: 13px;
    color: #555;
    font-weight: 400;
}

/* ─── ARTICLE BODY ─── */
.edition-body {
    max-width: 740px;
    margin: 0 auto;
    padding: 0 40px 120px;
}

.edition-body p {
    font-size: 17px;
    font-weight: 300;
    color: #c0c0c0;
    line-height: 1.8;
    margin-bottom: 24px;
}

.edition-body p:last-child {
    margin-bottom: 0;
}

/* Lead paragraph — slightly larger */
.edition-body p.lead {
    font-size: 20px;
    color: #dddddd;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 32px;
}

/* Subheadings */
.edition-body h2 {
    font-family: 'Teko', sans-serif;
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 500;
    letter-spacing: 0.02em;
    color: #ffffff;
    margin-top: 52px;
    margin-bottom: 16px;
    line-height: 1;
}

/* Subheading accent line */
.edition-body h2::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--accent-bright);
    margin-bottom: 12px;
}

/* Minor subheadings */
.edition-body h3 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-top: 36px;
    margin-bottom: 12px;
    letter-spacing: 0.01em;
}

/* Inline links — scoped to p and li only, never touches buttons */
.edition-body p a,
.edition-body li a {
    color: var(--accent-bright);
    text-decoration: none;
    border-bottom: 1px solid rgba(10, 154, 143, 0.35);
    transition: color 0.2s, border-color 0.2s;
}

.edition-body p a:hover,
.edition-body li a:hover {
    color: #ffffff;
    border-bottom-color: var(--accent-bright);
}

/* ─── INLINE CTA BLOCK ─── */
.edition-cta-inline {
    margin-top: 60px;
    padding: 40px;
    background: rgba(6, 69, 64, 0.08);
    border: 1px solid rgba(10, 154, 143, 0.2);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.edition-cta-inline-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-bright);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.edition-cta-inline-title {
    font-family: 'Teko', sans-serif;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 500;
    letter-spacing: 0.02em;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 2px;
}

.edition-cta-inline-text {
    font-size: 15px;
    font-weight: 300;
    color: #888;
    line-height: 1.6;
    margin-bottom: 0px !important;
}

.edition-cta-inline-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 26px;
    background: var(--accent);
    color: #ffffff !important;
    border: none !important;
    border-bottom: none !important;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 8px 32px var(--accent-glow);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.edition-cta-inline-btn:hover {
    color: #ffffff !important;
    border-bottom: none !important;
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(6, 69, 64, 0.45);
}

.edition-cta-inline-btn .btn-arrow {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.edition-cta-inline-btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* Pull quote / callout */
.edition-body blockquote {
    margin: 40px 0;
    padding: 24px 28px;
    background: rgba(6, 69, 64, 0.1);
    border: 1px solid rgba(10, 154, 143, 0.2);
    border-left: 3px solid var(--accent-bright);
    border-radius: 0 12px 12px 0;
}

.edition-body blockquote p {
    font-size: 18px;
    font-style: italic;
    color: #dddddd;
    font-weight: 400;
    margin-bottom: 0;
    line-height: 1.65;
}

/* ─── FOOTER SUBSCRIBE CTA ─── */
.edition-cta {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 80px 40px;
    text-align: center;
}

.edition-cta-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-bright);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.edition-cta-title {
    font-family: 'Teko', sans-serif;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
    line-height: 1.1;
}

.edition-cta-sub {
    font-size: 16px;
    color: #aaa;
    font-weight: 300;
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.subscribe-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px var(--accent-glow);
}

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(6,69,64,0.4);
}

.subscribe-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.all-editions-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: transparent;
    color: var(--accent-bright);
    border: 1px solid var(--accent-bright);
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.all-editions-btn:hover {
    background: rgba(10, 154, 143, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px var(--accent-glow);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 680px) {
    .edition-hero { padding: 75px 24px 0px; margin-top: 32px; }
    .edition-hero img { height: 220px; }

    .edition-meta-wrap,
    .edition-body {
        padding-left: 24px;
        padding-right: 24px;
    }

    .edition-eyebrow { margin-top: 32px; }

    .edition-body p { font-size: 16px; }
    .edition-body p.lead { font-size: 18px; }

    .edition-cta { padding: 60px 24px; }
}