/* Base Reset */
:root {
    --primary-color: #0c2b5e;
    --accent-color: #e63946;
    --text-primary: #1a1a1a;
    --text-secondary: #5a5a5a;
    --bg-light: #f8f9fa;
    --border-color: #e0e0e0;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    background-color: #ffffff;
}

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

/* Header */
.header {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Merriweather', serif;
}

.logo-accent {
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #ffffff;
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
}

/* Main Content */
.article-container {
    padding-top: 40px;
    padding-bottom: 60px;
}

.category-badge {
    display: inline-block;
    background-color: var(--accent-color);
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.article-title {
    font-family: 'Merriweather', serif;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #000;
}

.article-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-weight: 400;
}

/* Author Info */
.author-info {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin-right: 15px;
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-details strong {
    font-size: 1rem;
    color: var(--text-primary);
}

.author-details span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Featured Image */
.featured-image {
    margin-bottom: 40px;
}

.featured-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.image-caption {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 10px;
    font-style: italic;
    text-align: right;
}

/* Article Body */
.article-content {
    font-family: 'Merriweather', serif;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #2b2b2b;
}

.article-content p {
    margin-bottom: 25px;
}

.article-content h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #000;
}

.pull-quote {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    font-style: italic;
    color: var(--primary-color);
    border-left: 4px solid var(--accent-color);
    padding-left: 20px;
    margin: 40px 0;
    background: var(--bg-light);
    padding: 20px;
    border-radius: 0 8px 8px 0;
}

.pull-quote cite {
    display: block;
    margin-top: 10px;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-secondary);
}

/* CTA Box */
.cta-box {
    background-color: #f0f4f8;
    border: 1px solid #b9d2eb;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    margin-top: 50px;
}

.cta-box h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.cta-box p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.primary-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 6px;
    transition: background-color 0.2s, transform 0.1s;
    box-shadow: 0 4px 12px rgba(12, 43, 94, 0.2);
}

.primary-btn:hover {
    background-color: #092047;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
    padding: 40px 0;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Merriweather', serif;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.disclaimer {
    font-size: 0.8rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
}

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

.copyright {
    font-size: 0.85rem;
    color: #888;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .article-title {
        font-size: 2.2rem;
    }
    
    .article-subtitle {
        font-size: 1.1rem;
    }
    
    .article-content {
        font-size: 1.05rem;
    }
    
    .pull-quote {
        font-size: 1.2rem;
    }
}
