/* Bullpen News brand tokens */
:root {
    --bp-blue:  #2babe2;
    --bp-orange: #ef5925;
}

/* White nav (overrides global #ededed default) */
nav { background-color: #fff; }

/* Override global section-body line-height */
.section-body { line-height: 1.75; }

/* ── Stat row ── */
.stat-row {
    display: flex;
    gap: 0;
    margin-bottom: 48px;
}

.stat-item {
    padding-right: 48px;
    margin-right: 48px;
    border-right: 1px solid #d4d4d4;
}

.stat-item:last-child {
    border-right: none;
    margin-right: 0;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--bp-blue);
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #888;
    margin-top: 4px;
}

/* ── Palette ── */
.palette-row {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 48px;
}

/* ── Sister publication logo ── */
.sister-pub-logo {
    display: block;
    height: 3.5rem;
    width: auto;
}

/* ── Type specimens ── */
.type-display-helvetica {
    font-family: 'Helvetica Neue LT Std', 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    color: var(--bp-blue);
}

.type-display-garamond {
    font-family: 'Adobe Garamond Pro', 'Adobe Garamond', 'Garamond', Georgia, serif;
    font-size: 2.25rem;
    font-weight: 400;
    line-height: 1;
    color: #333;
}

.type-sample-body {
    margin-top: 16px;
    font-size: 0.9rem;
    line-height: 1.65;
    color: #555;
    font-family: 'Adobe Garamond Pro', 'Adobe Garamond', 'Garamond', Georgia, serif;
    max-width: 320px;
}

/* ── Two-col video/image ── */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 40px;
}

.two-col video,
.two-col img {
    width: 100%;
    height: auto;
    display: block;
}

/* ── Newsletter mockup ── */
.newsletter-mockup {
    background: #fff;
    padding: 64px;
    margin-bottom: 40px;
}

.newsletter-eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--bp-blue);
    margin-bottom: 16px;
}

.newsletter-headline {
    font-family: 'Helvetica Neue LT Std', 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    max-width: 640px;
}

.newsletter-body {
    font-family: 'Adobe Garamond Pro', 'Adobe Garamond', 'Garamond', Georgia, serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    max-width: 600px;
    margin-bottom: 32px;
}

.newsletter-divider {
    width: 40px;
    height: 4px;
    background: var(--bp-orange);
    margin-bottom: 24px;
}

.newsletter-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    background: var(--bp-blue);
    padding: 6px 14px;
    margin-right: 8px;
    margin-bottom: 8px;
}

.newsletter-tag.green { background: var(--bp-orange); }

/* ── Scrapped callout ── */
.scrapped-block {
    background: #000;
    color: #fff;
    padding: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
}

.scrapped-icon {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--bp-orange);
    white-space: nowrap;
    flex-shrink: 0;
}

.scrapped-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.scrapped-text p {
    font-size: 1.1rem;
    line-height: 1.65;
    color: #aaa;
    max-width: 560px;
}

/* ── Previous version block ── */
.previous-version {
    margin-top: 40px;
    background: #fff;
    padding: 40px;
}

.previous-version-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 8px;
}

.previous-version-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.previous-version-meta {
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 24px;
}

.previous-version video {
    width: 100%;
    max-width: 720px;
    height: auto;
    display: block;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .prev-versions-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
    .two-col { grid-template-columns: 1fr; }
    .scrapped-block { flex-direction: column; gap: 32px; padding: 48px 24px; }
    .stat-row { flex-wrap: wrap; gap: 32px; }
    .stat-item { border-right: none; margin-right: 0; padding-right: 0; }
}

@media (max-width: 768px) {
    .newsletter-mockup { padding: 32px; }
    .stat-number { font-size: 1.75rem; }
    .sister-pub-logo { height: 1.75rem; }
    .palette-row { flex-direction: column; }
    .palette-row [style*="border-left"] { border-left: none !important; padding-left: 0 !important; }
}
