/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #1e293b;
    background-color: #f8fafc;
}

/* Header Styling */
.site-header {
    background-color: #0f172a;
    color: #ffffff;
    border-bottom: 4px solid #b91c1c;
    padding: 20px 0 10px 0;
}

.header-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.header-top {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 12px;
    color: #94a3b8;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    border-bottom: 1px solid #334155;
    padding-bottom: 5px;
}

.date-badge {
    color: #ef4444;
    font-weight: bold;
}

.site-logo {
    font-family: 'Cinzel', 'Georgia', serif;
    font-size: 36px;
    letter-spacing: 2px;
    font-weight: 900;
    margin: 10px 0;
    color: #ffffff;
}

.fake-nav {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid #334155;
    color: #cbd5e1;
}

.fake-nav span.highlight {
    color: #ef4444;
}

/* Layout Container */
.container {
    max-width: 760px;
    margin: 30px auto;
    padding: 0 20px;
}

.news-article {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

/* Article Typography */
.category-tag {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    display: inline-block;
    background-color: #b91c1c;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 3px;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.article-title {
    font-size: 32px;
    line-height: 1.25;
    color: #0f172a;
    margin-bottom: 15px;
    font-weight: 800;
}

.article-subtitle {
    font-size: 18px;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 20px;
    font-style: italic;
}

/* Author Meta */
.article-meta {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 25px;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background-color: #0f172a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.author-name {
    display: block;
    font-weight: 700;
    font-size: 14px;
    color: #0f172a;
}

.publish-date {
    display: block;
    font-size: 12px;
    color: #64748b;
}

.share-count {
    font-size: 13px;
    color: #64748b;
    background: #f1f5f9;
    padding: 6px 12px;
    border-radius: 20px;
}

/* Image Wrapper */
.image-wrapper {
    margin-bottom: 30px;
}

.image-caption {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    display: block;
    font-size: 12px;
    color: #64748b;
    margin-top: 8px;
    text-align: center;
}

/* Article Content Body */
.article-body p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #334155;
}

.lead-paragraph {
    font-size: 20px !important;
    line-height: 1.6;
}

.quote-box {
    background-color: #f8fafc;
    border-left: 4px solid #b91c1c;
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

.quote-box p {
    font-style: italic;
    color: #1e293b;
    font-size: 19px;
    margin-bottom: 10px;
}

.quote-box cite {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 13px;
    color: #64748b;
    font-weight: bold;
    font-style: normal;
}

.article-body h3 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 22px;
    color: #0f172a;
    margin: 30px 0 15px 0;
}

.article-body ul {
    margin: 0 0 30px 25px;
    font-size: 17px;
}

.article-body li {
    margin-bottom: 10px;
    color: #334155;
}

/* CTA Card & Link Button */
.cta-card {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    margin: 40px 0;
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.25);
}

.cta-badge {
    background-color: #ef4444;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 15px;
}

.cta-card h2 {
    font-size: 24px;
    margin-bottom: 10px;
    line-height: 1.3;
}

.cta-card p {
    font-size: 15px;
    color: #cbd5e1;
    margin-bottom: 25px;
}

.btn-primary {
    display: inline-block;
    background-color: #dc2626;
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 6px;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 4px 14px 0 rgba(220, 38, 38, 0.39);
    width: 100%;
    max-width: 450px;
}

.btn-primary:hover {
    background-color: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(220, 38, 38, 0.5);
}

.cta-subtext {
    display: block;
    font-size: 12px;
    color: #94a3b8;
    margin-top: 15px;
}

/* Comments Section */
.comments-section {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #f1f5f9;
}

.comments-section h3 {
    font-size: 18px;
    color: #0f172a;
    margin-bottom: 20px;
}

.comment-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f8fafc;
}

.comment-avatar {
    width: 36px;
    height: 36px;
    background-color: #cbd5e1;
    color: #334155;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 12px;
    flex-shrink: 0;
}

.comment-header {
    font-size: 13px;
    margin-bottom: 4px;
}

.comment-time {
    color: #94a3b8;
    font-weight: normal;
}

.comment-content p {
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
    margin: 0;
}

/* Footer Styling */
.site-footer {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    text-align: center;
    padding: 30px 20px;
    background-color: #0f172a;
    color: #94a3b8;
    font-size: 13px;
    margin-top: 50px;
}

.footer-disclaimer {
    font-size: 11px;
    color: #64748b;
    margin-top: 5px;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .news-article {
        padding: 20px;
    }
    .article-title {
        font-size: 24px;
    }
    .fake-nav {
        display: none;
    }
    .btn-primary {
        font-size: 16px;
        padding: 14px 20px;
    }
}