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

body {
    font-family: 'Inter', sans-serif;
    background-color: #fafaf8;
    color: #1a1a1a;
    line-height: 1.6;
}

.page-wrapper {
    width: 100%;
    max-width: 100%;
}

.container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Site Header */
.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 18px 20px;
    text-align: center;
}

.site-brand {
    font-family: 'Lora', Georgia, serif;
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.site-section {
    font-size: 11px;
    font-weight: 600;
    color: #6b7280;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 4px;
}

/* Article Meta */
.article-meta-top {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 28px 0 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.category-tag {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 2px;
}

.read-time {
    color: #6b7280;
}

/* Main Headline */
.main-headline {
    font-family: 'Lora', Georgia, serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    margin: 10px 0 18px;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.highlight {
    background: linear-gradient(180deg, transparent 62%, #fef08a 62%);
    padding: 0 4px;
}

/* Subheadline */
.subheadline {
    font-family: 'Lora', Georgia, serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    color: #4b5563;
    margin-bottom: 22px;
    font-style: italic;
}

/* Author Info */
.author-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
    padding: 14px 0;
    margin-bottom: 24px;
    color: #6b7280;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.author-name {
    font-weight: 600;
    color: #1a1a1a;
}

.divider {
    color: #d1d5db;
}

.pub-date {
    color: #6b7280;
}

/* Hero Image Section */
.hero-image-container {
    margin: 8px 0 28px;
}

.hero-image {
    width: 100%;
    display: block;
    border-radius: 2px;
}

.image-caption {
    font-family: 'Lora', Georgia, serif;
    font-style: italic;
    font-size: 13px;
    color: #6b7280;
    padding: 10px 4px 0;
    line-height: 1.5;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 14px;
}

/* Body Copy */
.body-copy {
    margin: 24px 0;
}

.body-copy p {
    font-family: 'Lora', Georgia, serif;
    font-size: 18px;
    line-height: 1.75;
    color: #1f2937;
    margin-bottom: 20px;
}

.drop-cap {
    margin-bottom: 20px;
}

.big-letter {
    float: left;
    font-family: 'Lora', Georgia, serif;
    font-size: 68px;
    font-weight: 700;
    line-height: 0.85;
    margin-right: 10px;
    margin-top: 6px;
    color: #1a1a1a;
}

.bold-copy {
    font-weight: 600 !important;
    color: #111827 !important;
}

/* Pull Quote */
.pull-quote {
    font-family: 'Lora', Georgia, serif;
    font-size: 22px;
    font-style: italic;
    font-weight: 400;
    line-height: 1.5;
    color: #1a1a1a;
    border-left: 4px solid #1a1a1a;
    padding: 6px 0 6px 22px;
    margin: 28px 0;
}

/* Section Subhead */
.section-subhead {
    font-family: 'Lora', Georgia, serif;
    font-size: 24px;
    font-weight: 700;
    margin: 20px 0 14px;
    color: #1a1a1a;
}

/* CTA Section */
.cta-section {
    background-color: #f3f4f6;
    border: 1px solid #e5e7eb;
    padding: 34px 28px;
    text-align: center;
    border-radius: 4px;
    margin: 34px 0;
}

.cta-headline {
    font-family: 'Lora', Georgia, serif;
    color: #1a1a1a;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-subtext {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 22px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 16px 42px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
    border-radius: 3px;
    transition: all 0.2s ease;
}

.cta-button:hover {
    background-color: #000000;
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.cta-footnote {
    color: #6b7280;
    font-size: 12px;
    margin-top: 16px;
}

/* Disclaimer Box */
.disclaimer-box {
    background-color: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 4px;
    padding: 18px 20px;
    margin: 30px 0;
}

.disclaimer-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #92400e;
    margin-bottom: 8px;
}

.disclaimer-text {
    font-size: 13px;
    line-height: 1.6;
    color: #78350f;
}

/* Footer */
.footer {
    text-align: center;
    padding: 30px 20px 40px;
    border-top: 1px solid #e5e5e5;
    margin-top: 30px;
}

.footer-text {
    color: #6b7280;
    font-size: 13px;
    margin-bottom: 10px;
}

.footer-links {
    font-size: 12px;
    color: #9ca3af;
    margin-bottom: 14px;
}

.footer-links a {
    color: #6b7280;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-disclosure {
    font-size: 11px;
    color: #9ca3af;
    line-height: 1.6;
    max-width: 560px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
    .main-headline {
        font-size: 30px;
    }

    .subheadline {
        font-size: 17px;
    }

    .body-copy p {
        font-size: 17px;
    }

    .big-letter {
        font-size: 56px;
    }

    .pull-quote {
        font-size: 19px;
        padding-left: 16px;
    }

    .cta-headline {
        font-size: 22px;
    }

    .cta-button {
        padding: 15px 32px;
        font-size: 15px;
    }

    .section-subhead {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .main-headline {
        font-size: 26px;
    }

    .subheadline {
        font-size: 16px;
    }

    .body-copy p {
        font-size: 16px;
    }

    .cta-section {
        padding: 28px 18px;
    }

    .cta-button {
        padding: 14px 24px;
        font-size: 14px;
        width: 100%;
    }

    .site-brand {
        font-size: 22px;
    }
}
