/* political.day */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background: #ffffff;
    color: #1a1a1a;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    line-height: 1.8;
}

.red-bar {
    height: 2px;
    background: #dc2626;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

body {
    padding-top: 2px;
}

.header {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem 1.5rem 2rem;
    text-align: center;
}

.brand {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.edition {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #737373;
    display: block;
    margin-bottom: 1.5rem;
}

.date-display {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 1.8rem;
    color: #a3a3a3;
    margin-bottom: 1rem;
}

.tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #737373;
    margin-bottom: 2rem;
}

.thin-rule {
    border: none;
    border-top: 1px solid #e5e5e5;
    margin: 2rem 0;
}

.briefing {
    max-width: 600px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.entry {
    margin-bottom: 3rem;
}

.category {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #dc2626;
    font-weight: 400;
    display: block;
    margin-bottom: 0.5rem;
}

.entry-headline {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.3rem;
    line-height: 1.4;
    margin-bottom: 0.8rem;
}

.entry-body {
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    color: #1a1a1a;
    line-height: 1.8;
}

.red-bullet {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #dc2626;
    margin: 2rem auto;
}

.analysis {
    max-width: 600px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
}

.pull-quote {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-style: italic;
    font-size: 2rem;
    color: #111111;
    text-align: center;
    line-height: 1.6;
    padding: 5rem 0;
}

.sources {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem 1.5rem 4rem;
}

.source-text {
    font-family: 'Lato', sans-serif;
    font-size: 0.7rem;
    color: #9ca3af;
    text-align: center;
    margin-bottom: 1rem;
}

.end-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    color: #737373;
    text-align: center;
}

.red-dot-inline {
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #dc2626;
    vertical-align: middle;
    margin: 0 0.25rem;
}

.fade-in {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
