/* tanso.news - Vintage broadsheet gazette */
/* Palette: #1A1A1A #2C2420 #3A302A #8B7E6E #C41E3A #D0C8B8 #E0D8C8 #FFF8F0 */

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

html {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #FFF8F0;
    color: #1A1A1A;
    overflow-x: hidden;
    line-height: 1.6;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* === Ink-bleed texture on text === */
h1, h2, h3 {
    text-shadow: 0 0 1px rgba(26, 26, 26, 0.4);
}

p {
    text-shadow: 0 0 0.5px rgba(26, 26, 26, 0.3);
}

/* === Typographic Rules === */
.rule {
    width: 100%;
    display: flex;
    justify-content: center;
}

.rule-heavy {
    border: none;
    height: 3px;
    background: #1A1A1A;
    margin: 0;
}

.rule-double {
    height: 4px;
    border-top: 1.5px solid #1A1A1A;
    border-bottom: 1.5px solid #1A1A1A;
    background: transparent;
    margin: 0;
}

.rule-standard {
    height: 0;
    border-top: 1px solid #2C2420;
    margin: 1.5rem 0;
}

.rule-ornamental {
    margin: 2rem 0;
    text-align: center;
}

/* === Masthead === */
#masthead {
    padding-top: 1.5rem;
    margin-bottom: 1rem;
}

.masthead-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 1rem 0;
}

.masthead-title {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(2.5rem, 7vw, 5rem);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #1A1A1A;
    line-height: 1;
}

.masthead-flanker {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: #8B7E6E;
    text-transform: uppercase;
    white-space: nowrap;
}

.dateline {
    text-align: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 400;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: #3A302A;
    padding: 0.5rem 0;
    text-transform: uppercase;
}

/* === Lead Story === */
#lead-story {
    padding: 1.5rem 0 0;
}

.headline-stack {
    text-align: center;
    margin-bottom: 1.5rem;
}

.kicker {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: #C41E3A;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

.lead-headline {
    font-family: 'Libre Bodoni', serif;
    font-weight: 700;
    font-size: clamp(2rem, 6vw, 4.5rem);
    line-height: 0.95;
    color: #1A1A1A;
    margin-bottom: 1rem;
}

.lead-deck {
    font-family: 'Libre Bodoni', serif;
    font-weight: 400;
    font-style: italic;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: #3A302A;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* === Multi-column Article === */
.article-columns {
    column-count: 3;
    column-gap: 2rem;
    column-rule: 0.5px solid #D0C8B8;
    padding: 1.5rem 0;
}

.article-columns p {
    font-family: 'Libre Bodoni', serif;
    font-weight: 400;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #2C2420;
    margin-bottom: 1rem;
    text-align: justify;
    hyphens: auto;
}

/* Drop cap */
.drop-cap::first-letter {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 4rem;
    float: left;
    line-height: 0.8;
    margin-right: 0.15rem;
    margin-top: 0.1rem;
    color: #1A1A1A;
}

/* === Secondary Stories === */
#secondary-stories {
    padding: 1.5rem 0;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.story {
    border-left: 1px solid #D0C8B8;
    padding-left: 1.5rem;
}

.story:first-child {
    border-left: none;
    padding-left: 0;
}

.story-headline {
    font-family: 'Libre Bodoni', serif;
    font-weight: 700;
    font-size: clamp(1.1rem, 1.5vw, 1.4rem);
    line-height: 1.15;
    color: #1A1A1A;
    margin-bottom: 0.75rem;
}

.story-text {
    font-family: 'Libre Bodoni', serif;
    font-weight: 400;
    font-size: 0.85rem;
    line-height: 1.65;
    color: #3A302A;
    text-align: justify;
    hyphens: auto;
}

/* === Footer === */
#edition-footer {
    padding: 1.5rem 0;
    margin-top: 0.5rem;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-label {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1A1A1A;
}

.footer-text {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.75rem;
    color: #8B7E6E;
    letter-spacing: 0.05em;
}

/* === Newsprint grain === */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Yellowed paper tint with E0D8C8 */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    background: radial-gradient(ellipse at center, transparent 60%, #E0D8C8 100%);
    opacity: 0.3;
}

/* === Responsive === */
@media (max-width: 768px) {
    .article-columns {
        column-count: 2;
    }

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

    .story {
        border-left: none;
        padding-left: 0;
        border-bottom: 0.5px solid #D0C8B8;
        padding-bottom: 1.5rem;
    }

    .masthead-flanker {
        display: none;
    }

    body {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .article-columns {
        column-count: 1;
    }
}
