/* Premium Editorial Styles */
:root {
    --accent: #c73b2b;
    --accent-hover: #a82f21;
    --bg-light: #fafaf8;
    --text-dark: #1e1e1e;
    --text-gray: #4a4a4a;
    --border-light: #e8e6e2;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.article-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.article-content h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
}

.article-content h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content blockquote {
    border-left: 4px solid var(--accent);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: #f4f4f0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #2c2c2c;
}

.article-content ul, .article-content ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.article-content a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.article-content a:hover {
    color: var(--accent-hover);
}

.article-content img {
    border-radius: 12px;
    margin: 1.5rem 0;
    width: 100%;
    height: auto;
}

.article-content .caption {
    font-size: 0.85rem;
    color: #6b7280;
    text-align: center;
    margin-top: -0.5rem;
    margin-bottom: 1.5rem;
}

/* Card Styles */
.article-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px -12px rgba(0,0,0,0.12);
}

.article-card img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover img {
    transform: scale(1.02);
}

/* Category Badge */
.category-badge {
    display: inline-block;
    background: var(--accent);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 0.2rem 0.9rem;
    border-radius: 30px;
    text-transform: uppercase;
}

/* Buttons */
.btn-primary {
    background: var(--accent);
    color: white;
    font-weight: 600;
    padding: 0.6rem 1.8rem;
    border-radius: 60px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: scale(0.98);
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #f5f3ef 0%, #eae8e4 100%);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
}

/* Ad Placeholder */
.ad-placeholder {
    background: #f3f1ed;
    border: 2px dashed #d5d3cf;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    color: #8a8884;
    font-size: 0.85rem;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Sidebar */
.sidebar-widget {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.sidebar-widget h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6b7280;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0eeea;
}

/* Most Read Numbered List */
.most-read-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0eeea;
}

.most-read-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: #d5d3cf;
    min-width: 2rem;
    text-align: center;
}

/* Responsive Typography */
@media (max-width: 640px) {
    .article-content {
        font-size: 1rem;
    }
    
    .article-content h2 {
        font-size: 1.4rem;
    }
    
    .newsletter-section {
        padding: 2rem 1rem;
    }
}

/* Loading States */
.skeleton-loading {
    background: linear-gradient(90deg, #f0eeea 25%, #e5e3df 50%, #f0eeea 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 8px;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Print Styles */
@media print {
    header, footer, .sidebar, .ad-placeholder, .newsletter-section {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .article-content {
        font-size: 12pt;
        line-height: 1.6;
    }
}