/* ============================================================
   COURTHOUSE.STREAM — Styles
   A vintage broadsheet newspaper in digital form
   ============================================================ */

/* --- CSS Custom Properties --- */
:root {
    --aged-linen: #f5f0e3;
    --deep-walnut: #2c1810;
    --verdict-red: #8b1a1a;
    --gavel-gold: #b8860b;
    --courtroom-slate: #1a1a1a;
    --parchment-tan: #e8dcc8;
    --docket-gray: #6b6256;
    --iron-oxide: #3d2b1f;

    --font-masthead: 'Playfair Display', Georgia, serif;
    --font-subhead: 'Lora', Georgia, serif;
    --font-body: 'Source Serif 4', Georgia, serif;
    --font-mono: 'IBM Plex Mono', 'Courier New', monospace;

    --page-margin: clamp(1rem, 5vw, 4rem);
    --gutter: 2rem;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-snap-type: y proximity;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--aged-linen);
    color: var(--deep-walnut);
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.8vw, 1.125rem);
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* --- Broadsheet Grid Overlay --- */
.broadsheet-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    background-image:
        repeating-linear-gradient(
            to right,
            var(--iron-oxide) 0px,
            var(--iron-oxide) 1px,
            transparent 1px,
            transparent calc(100% / 4)
        ),
        repeating-linear-gradient(
            to bottom,
            var(--iron-oxide) 0px,
            var(--iron-oxide) 1px,
            transparent 1px,
            transparent 1.75rem
        );
    animation: gridReveal 1.5s ease-out 0.8s forwards;
}

@keyframes gridReveal {
    from {
        opacity: 0;
        clip-path: inset(0 0 100% 0);
    }
    to {
        opacity: 0.05;
        clip-path: inset(0 0 0 0);
    }
}

/* --- Sections --- */
.section {
    scroll-snap-align: start;
    position: relative;
    padding: var(--page-margin);
}

/* --- Section Headers --- */
.section-header {
    margin-bottom: 2rem;
}

.section-headline {
    font-family: var(--font-subhead);
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--deep-walnut);
    margin-bottom: 1.5rem;
}

/* ============================================================
   SECTION 1: THE MASTHEAD
   ============================================================ */
#masthead {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 0;
    background-image:
        radial-gradient(ellipse at center, rgba(232, 220, 200, 0.3) 0%, transparent 70%),
        url("data:image/svg+xml,%3Csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
}

.masthead-inner {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.masthead-date-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--docket-gray);
    margin-bottom: 0.75rem;
    padding: 0 0.5rem;
}

.masthead-title {
    font-family: var(--font-masthead);
    font-weight: 900;
    font-size: clamp(3rem, 8vw, 7rem);
    letter-spacing: -0.02em;
    line-height: 1;
    color: var(--deep-walnut);
    margin: 0.5rem 0;
    position: relative;
}

.masthead-letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(8px);
    position: relative;
}

.masthead-letter.revealed {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.05s, transform 0.15s ease-out;
}

.masthead-dot {
    color: var(--gavel-gold);
}

.masthead-subtitle {
    opacity: 0;
    transition: opacity 0.6s ease;
    margin-bottom: 1.5rem;
}

.masthead-subtitle.visible {
    opacity: 1;
}

.masthead-tagline {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--docket-gray);
}

.masthead-banner {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    max-width: 800px;
    margin: 1rem auto 2rem;
}

.masthead-banner.visible {
    opacity: 1;
    transform: translateY(0);
}

.banner-headline {
    font-family: var(--font-subhead);
    font-weight: 700;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    line-height: 1.4;
    color: var(--deep-walnut);
    text-align: justify;
    hyphens: auto;
}

.banner-headline em {
    font-style: italic;
    color: var(--verdict-red);
}

.drop-cap-banner {
    float: left;
    font-family: var(--font-masthead);
    font-weight: 900;
    font-size: 3.5rem;
    line-height: 0.85;
    margin-right: 0.1em;
    margin-top: 0.05em;
    color: var(--verdict-red);
    text-shadow: 1px 1px 0 rgba(139, 26, 26, 0.2);
}

/* --- Ornamental Rules --- */
.ornamental-rule {
    width: 100%;
    height: auto;
    margin: 0.75rem 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rule-thin-thick-thin {
    height: 5px;
    background-image:
        linear-gradient(var(--iron-oxide), var(--iron-oxide));
    background-size: 100% 1px;
    background-position: center top;
    background-repeat: no-repeat;
    border-top: 1px solid var(--iron-oxide);
    border-bottom: 1px solid var(--iron-oxide);
    position: relative;
}

.rule-thin-thick-thin::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--iron-oxide);
    transform: translateY(-50%);
}

#masthead-rule-bottom {
    width: 0;
    overflow: hidden;
    transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#masthead-rule-bottom.expanded {
    width: 100%;
}

.rule-double {
    height: 4px;
    border-top: 1px solid var(--iron-oxide);
    border-bottom: 1px solid var(--iron-oxide);
}

.rule-thin {
    height: 1px;
    background: var(--iron-oxide);
    flex: 1;
}

.rule-center-dot {
    gap: 0;
}

.rule-center-dot::before,
.rule-center-dot::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--iron-oxide);
}

.scales-dingbat {
    color: var(--iron-oxide);
    margin: 0 1rem;
    flex-shrink: 0;
}

/* --- Ticker Bar (top, active streams) --- */
.ticker-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--iron-oxide);
    border-bottom: 1px solid var(--iron-oxide);
    padding: 0.5rem 0;
    margin-top: 1.5rem;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.ticker-bar.visible {
    opacity: 1;
}

.ticker-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--verdict-red);
    white-space: nowrap;
    font-weight: 500;
    flex-shrink: 0;
}

.ticker-scroll {
    display: flex;
    gap: 2rem;
    white-space: nowrap;
    animation: scrollTickerTop 40s linear infinite;
}

@keyframes scrollTickerTop {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.ticker-item {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--docket-gray);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.status-dot.live {
    background-color: var(--verdict-red);
    box-shadow: 0 0 4px rgba(139, 26, 26, 0.5);
    animation: pulseDot 2s ease-in-out infinite;
}

.status-dot.recess {
    background-color: var(--gavel-gold);
}

.status-dot.adjourned {
    background-color: var(--docket-gray);
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* ============================================================
   SECTION 2: THE LEAD STORY
   ============================================================ */
#lead-story {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.lead-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--gutter);
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.lead-main {
    position: relative;
}

.lead-main .section-headline {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.column-rule-vertical {
    position: absolute;
    right: calc(-1 * var(--gutter) / 2);
    top: 0;
    width: 1px;
    height: 0;
    background: var(--iron-oxide);
    transition: height 0.8s ease-out;
}

.column-rule-vertical.drawn {
    height: 100%;
}

.transcript-feed {
    border-top: 1px solid var(--iron-oxide);
    padding-top: 1rem;
}

.transcript-entry {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(61, 43, 31, 0.15);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.transcript-entry.visible {
    opacity: 1;
    transform: translateY(0);
}

.speaker-name {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-variant: small-caps;
    color: var(--verdict-red);
    display: block;
    margin-bottom: 0.15rem;
}

.transcript-timestamp {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--docket-gray);
    display: block;
    margin-bottom: 0.5rem;
}

.transcript-text {
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto;
}

/* --- Case Metadata Sidebar --- */
.lead-sidebar {
    position: relative;
}

.case-metadata-box {
    background: var(--parchment-tan);
    border: 2px solid var(--iron-oxide);
    padding: 1.5rem;
    position: sticky;
    top: 2rem;
}

.metadata-title {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--deep-walnut);
    margin-bottom: 0.5rem;
}

.metadata-list {
    font-size: 0.9rem;
}

.metadata-list dt {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--docket-gray);
    margin-top: 0.75rem;
}

.metadata-list dd {
    font-family: var(--font-subhead);
    font-size: 0.9rem;
    color: var(--deep-walnut);
    margin-top: 0.15rem;
}

/* --- Courthouse Seal Watermark --- */
.courthouse-seal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--deep-walnut);
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
    animation: sealRotate 300s linear infinite;
}

@keyframes sealRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ============================================================
   SECTION 3: THE DOCKET
   ============================================================ */
#docket {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.docket-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.docket-label {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--deep-walnut);
    white-space: nowrap;
    flex-shrink: 0;
}

.docket-ribbon {
    display: flex;
    gap: var(--gutter);
    overflow-x: auto;
    padding-bottom: 1rem;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--iron-oxide) transparent;
}

.docket-ribbon::-webkit-scrollbar {
    height: 4px;
}

.docket-ribbon::-webkit-scrollbar-track {
    background: transparent;
}

.docket-ribbon::-webkit-scrollbar-thumb {
    background: var(--iron-oxide);
}

.docket-card {
    flex: 0 0 280px;
    background: var(--parchment-tan);
    padding: 1.25rem;
    position: relative;
    transition: background-color 0.3s ease;
}

/* Torn edge clip-paths for each card */
.docket-card[data-clip="1"] {
    clip-path: polygon(0% 0%, 98% 1%, 100% 0%, 100% 97%, 97% 100%, 2% 99%, 0% 100%, 1% 3%);
}
.docket-card[data-clip="2"] {
    clip-path: polygon(1% 0%, 99% 2%, 100% 0%, 99% 98%, 100% 100%, 0% 100%, 1% 97%, 0% 1%);
}
.docket-card[data-clip="3"] {
    clip-path: polygon(0% 1%, 97% 0%, 100% 2%, 100% 100%, 2% 98%, 0% 100%, 1% 96%, 0% 2%);
}
.docket-card[data-clip="4"] {
    clip-path: polygon(2% 0%, 100% 1%, 98% 2%, 100% 97%, 99% 100%, 1% 99%, 0% 100%, 0% 0%);
}
.docket-card[data-clip="5"] {
    clip-path: polygon(0% 0%, 100% 2%, 99% 0%, 100% 100%, 98% 98%, 1% 100%, 0% 97%, 2% 1%);
}
.docket-card[data-clip="6"] {
    clip-path: polygon(1% 1%, 98% 0%, 100% 1%, 99% 99%, 100% 100%, 2% 100%, 0% 98%, 0% 0%);
}
.docket-card[data-clip="7"] {
    clip-path: polygon(0% 0%, 100% 0%, 100% 1%, 97% 100%, 100% 97%, 0% 100%, 2% 98%, 0% 2%);
}

.docket-card:hover {
    background-color: #ddd5c3;
}

.docket-card .status-dot {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
}

.card-headline {
    font-family: var(--font-subhead);
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.3;
    color: var(--deep-walnut);
    margin-bottom: 0.5rem;
    padding-right: 1.5rem;
}

.card-court {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--docket-gray);
    margin-bottom: 0.35rem;
}

.card-status {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--docket-gray);
}

/* ============================================================
   SECTION 4: THE ARCHIVE COLUMNS
   ============================================================ */
#archive {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.archive-headline {
    text-align: center;
}

.archive-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.archive-col {
    padding: 0 var(--gutter);
    position: relative;
}

/* Column rules between archive columns */
.archive-col:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
    height: 0;
    background: var(--iron-oxide);
    transition: height 0.8s ease-out;
}

.archive-col:not(:last-child).col-ruled::after {
    height: 100%;
}

.archive-article {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(61, 43, 31, 0.15);
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease, transform 0.5s ease, background-color 0.5s ease;
    padding: 1rem;
}

.archive-article.visible {
    opacity: 1;
    transform: translateY(0);
}

.archive-article:hover {
    background-color: rgba(232, 220, 200, 0.6);
}

.article-headline {
    font-family: var(--font-subhead);
    font-weight: 700;
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    line-height: 1.3;
    color: var(--deep-walnut);
    margin-bottom: 0.4rem;
}

.article-dateline {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--docket-gray);
    margin-bottom: 0.6rem;
}

.article-summary {
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.65;
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto;
    color: var(--deep-walnut);
}

/* ============================================================
   SECTION 5: THE EDITORIAL
   ============================================================ */
#editorial {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.editorial-headline {
    text-align: center;
    margin-bottom: 2rem;
}

.editorial-column {
    max-width: 38em;
    margin: 0 auto;
}

.editorial-text p {
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.drop-cap {
    float: left;
    font-family: var(--font-masthead);
    font-weight: 900;
    font-size: 4.5rem;
    line-height: 0.75;
    margin-right: 0.1em;
    margin-top: 0.1em;
    color: var(--verdict-red);
    text-shadow: 1px 1px 0 rgba(139, 26, 26, 0.2);
}

/* --- Pull Quotes --- */
.pull-quote {
    margin: 2.5rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid var(--iron-oxide);
    border-bottom: 1px solid var(--iron-oxide);
    text-align: center;
    position: relative;
}

.pull-quote-mark {
    font-family: var(--font-masthead);
    font-weight: 900;
    font-size: 4rem;
    line-height: 0.5;
    color: var(--gavel-gold);
    display: inline-block;
    vertical-align: top;
}

.pull-quote-mark-close {
    vertical-align: bottom;
}

.pull-quote blockquote {
    font-family: var(--font-subhead);
    font-weight: 400;
    font-style: italic;
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    line-height: 1.6;
    color: var(--deep-walnut);
    display: inline;
    margin: 0 0.5rem;
}

/* ============================================================
   SECTION 6: THE VERDICT TICKER
   ============================================================ */
#verdict-ticker {
    background-color: var(--courtroom-slate);
    padding: 1.25rem 0;
    overflow: hidden;
    position: relative;
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: tickerScroll 60s linear infinite;
}

.ticker-track:hover {
    animation-duration: 240s;
}

@keyframes tickerScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.ticker-content {
    display: flex;
    gap: 3rem;
    padding: 0 1.5rem;
    white-space: nowrap;
}

.verdict-entry {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.02em;
    color: var(--aged-linen);
    display: inline-flex;
    align-items: center;
    gap: 0;
}

.verdict-entry strong {
    color: var(--gavel-gold);
    font-weight: 500;
}

/* ============================================================
   SECTION 7: THE COLOPHON
   ============================================================ */
#colophon {
    background-color: var(--courtroom-slate);
    color: var(--aged-linen);
    padding: 2rem var(--page-margin) 2.5rem;
}

#colophon .ornamental-rule {
    margin-bottom: 2rem;
}

#colophon .rule-center-dot::before,
#colophon .rule-center-dot::after {
    background: rgba(245, 240, 227, 0.2);
}

#colophon .scales-dingbat {
    color: rgba(245, 240, 227, 0.3);
}

.colophon-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gutter);
    max-width: 1000px;
    margin: 0 auto;
}

.colophon-heading {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gavel-gold);
    margin-bottom: 1rem;
}

.colophon-text {
    font-family: var(--font-body);
    font-size: 0.8rem;
    line-height: 1.65;
    color: rgba(245, 240, 227, 0.7);
    margin-bottom: 0.75rem;
}

.colophon-copyright {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: rgba(245, 240, 227, 0.4);
    margin-top: 1.5rem;
}

/* ============================================================
   INK WASH OVERLAY
   ============================================================ */
.ink-wash-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--deep-walnut);
    pointer-events: none;
    z-index: 100;
    transform: scaleX(0);
    transform-origin: left;
}

.ink-wash-overlay.wash-in {
    transform: scaleX(1);
    transform-origin: left;
    transition: transform 0.4s ease-in;
}

.ink-wash-overlay.wash-out {
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease-out;
}

/* ============================================================
   INK BLEED EFFECT
   ============================================================ */
.ink-bleed {
    filter: blur(0.5px);
    transition: filter 0.15s ease-in;
}

.ink-bleed-clear {
    filter: blur(0);
    transition: filter 0.3s ease-out;
}

/* ============================================================
   SCROLL ANIMATIONS — generic entry classes
   ============================================================ */
.slide-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.drop-cap-animate {
    transform: scale(0.8);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.drop-cap-animate.visible {
    transform: scale(1);
}

/* ============================================================
   INK PARTICLE BURST — for masthead letterpress effect
   ============================================================ */
.ink-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--deep-walnut);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.8;
    z-index: 10;
    animation: inkParticleFade 0.2s ease-out forwards;
}

@keyframes inkParticleFade {
    0% {
        opacity: 0.8;
        transform: translate(var(--dx), var(--dy)) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(calc(var(--dx) * 3), calc(var(--dy) * 3)) scale(0.3);
    }
}

/* ============================================================
   RESPONSIVE — MOBILE (below 768px)
   ============================================================ */
@media (max-width: 768px) {
    .masthead-title {
        font-size: clamp(2rem, 10vw, 3.5rem);
    }

    .lead-layout {
        grid-template-columns: 1fr;
    }

    .column-rule-vertical {
        display: none;
    }

    .lead-sidebar {
        order: -1;
    }

    .case-metadata-box {
        position: static;
    }

    .archive-columns {
        grid-template-columns: 1fr;
    }

    .archive-col:not(:last-child)::after {
        display: none;
    }

    .archive-col {
        padding: 0;
    }

    .archive-col + .archive-col {
        border-top: 1px solid var(--iron-oxide);
        margin-top: 1rem;
        padding-top: 1rem;
    }

    .docket-card {
        flex: 0 0 240px;
        clip-path: none;
    }

    .colophon-content {
        grid-template-columns: 1fr;
    }

    .drop-cap,
    .drop-cap-banner {
        font-size: 2.5rem;
    }

    .editorial-text p {
        text-align: left;
    }

    .pull-quote-mark {
        font-size: 2.5rem;
    }

    .masthead-date-line {
        flex-direction: column;
        gap: 0.25rem;
    }

    .broadsheet-grid {
        display: none;
    }
}

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .archive-columns {
        grid-template-columns: repeat(2, 1fr);
    }

    .archive-col:nth-child(3) {
        grid-column: span 2;
    }

    .archive-col:nth-child(2)::after {
        display: none;
    }
}

/* ============================================================
   DOCKET AUTO-SCROLL PAUSE ON HOVER
   ============================================================ */
.docket-ribbon.auto-scrolling {
    scroll-behavior: auto;
    overflow-x: hidden;
}

.docket-ribbon.auto-scrolling:hover {
    overflow-x: auto;
}
