/**
 * Newspaper Front Page Styles
 * Modern newspaper layout for the front page
 * 
 * @package Twenty Twenty-Four
 */

/* Import Google Fonts for exact typography */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Inter:wght@400;500;600;700&display=swap');

/* Reset and Base Styles */
body {
    background: #fff !important;
}

.newspaper-modern-layout {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    width: 100%;
    background: #fff;
}

/* Newspaper page wrapper */
.newspaper-page-wrapper {
    background: #fff;
    min-height: 100vh;
    padding: 0;
}

/* Ensure sections are full width */
.newspaper-top-snippets,
.newspaper-main-content,
.newspaper-featured-grid,
.newspaper-trending,
.newspaper-latest,
.newspaper-brand-promotion,
.newspaper-neet-promotion,
.newspaper-whatgpt-promotion,
.newspaper-about-us,
.newspaper-editors-pick,
.newspaper-popular-categories,
.newspaper-social-follow,
.newspaper-newsletter,
.newspaper-archive {
    width: 100%;
}

.newspaper-container {
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Fixed width on large screens like reference site */
@media only screen and (min-width: 1440px) {
    .newspaper-modern-layout .newspaper-container {
        width: 1400px !important;
        max-width: 1400px !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

/* Main Layout */
.newspaper-modern-layout {
    background: #fff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    padding: 0;
}

/* Top Snippets Section */
.newspaper-top-snippets {
    padding: 35px 0;
    background: #fff;
}

.newspaper-top-snippets .newspaper-container {
    border-bottom: 3px solid #000;
    padding-bottom: 35px;
}

.newspaper-snippets-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.newspaper-snippet-item {
    padding: 20px 30px;
    position: relative;
}

.newspaper-snippet-border::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20px;
    bottom: 20px;
    width: 1px;
    background: #000;
}

.newspaper-snippet-category {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #d32f2f;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.newspaper-snippet-title {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
    margin: 0;
    font-family: 'Playfair Display', Georgia, "Times New Roman", serif;
}

.newspaper-snippet-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.newspaper-snippet-title a:hover {
    color: #000;
}

/* Main Content Section */
.newspaper-main-content {
    padding: 50px 0;
    background: #fff;
}

.newspaper-columns-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.newspaper-section-heading {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 35px 0;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.2;
}

/* Breaking News Column */
.newspaper-breaking-news {
    padding-right: 0;
}

.newspaper-breaking-post {
    margin-bottom: 0;
}

.newspaper-breaking-image {
    margin-bottom: 25px;
    overflow: hidden;
}

.newspaper-breaking-image img {
    width: 100%;
    height: auto;
    display: block;
}

.newspaper-breaking-category {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #d32f2f;
    text-transform: uppercase;
    margin-bottom: 18px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.newspaper-breaking-title {
    font-size: 42px;
    line-height: 1.3;
    font-weight: 700;
    margin: 0 0 25px 0;
    font-family: 'Playfair Display', Georgia, serif;
}

.newspaper-breaking-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.newspaper-breaking-title a:hover {
    color: #000;
}

.newspaper-breaking-excerpt {
    font-size: 16px;
    line-height: 1.75;
    color: #444;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Daily Feed Column */
.newspaper-daily-feed {
    padding-left: 50px;
    border-left: 1px solid #e0e0e0;
}

.newspaper-feed-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.newspaper-feed-item {
    padding: 30px 0;
    border-bottom: 1px solid #e0e0e0;
}

.newspaper-feed-item:last-child {
    border-bottom: none;
}

.newspaper-feed-category {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #d32f2f;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.newspaper-feed-title {
    font-size: 24px;
    line-height: 1.4;
    font-weight: 700;
    margin: 0 0 18px 0;
    font-family: 'Playfair Display', Georgia, serif;
}

.newspaper-feed-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.newspaper-feed-title a:hover {
    color: #000;
}

.newspaper-feed-excerpt {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Featured Posts Grid Section */
.newspaper-featured-grid {
    padding: 60px 0;
    background: #fff;
    border-top: 1px solid #e0e0e0;
}

.newspaper-featured-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.newspaper-featured-post {
    display: flex;
    flex-direction: column;
}

.newspaper-featured-image {
    margin-bottom: 20px;
    overflow: hidden;
}

.newspaper-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.newspaper-featured-image:hover img {
    transform: scale(1.05);
}

.newspaper-featured-category {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #d32f2f;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.newspaper-featured-title {
    font-size: 22px;
    line-height: 1.4;
    font-weight: 700;
    margin: 0 0 15px 0;
    font-family: 'Playfair Display', Georgia, serif;
}

.newspaper-featured-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.newspaper-featured-title a:hover {
    color: #000;
}

.newspaper-featured-excerpt {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 12px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.newspaper-featured-date {
    font-size: 12px;
    color: #888;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Trending Posts Section */
.newspaper-trending {
    padding: 60px 0;
    background: #fff;
    border-top: 1px solid #e0e0e0;
}

.newspaper-trending-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.newspaper-trending-main-post {
    margin-top: 0;
}

.newspaper-trending-main-image {
    margin-bottom: 25px;
    overflow: hidden;
}

.newspaper-trending-main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.newspaper-trending-category {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #d32f2f;
    text-transform: uppercase;
    margin-bottom: 18px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.newspaper-trending-main-title {
    font-size: 36px;
    line-height: 1.3;
    font-weight: 700;
    margin: 0 0 20px 0;
    font-family: 'Playfair Display', Georgia, serif;
}

.newspaper-trending-main-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.newspaper-trending-main-title a:hover {
    color: #000;
}

.newspaper-trending-main-excerpt {
    font-size: 16px;
    line-height: 1.75;
    color: #444;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Trending Sidebar */
.newspaper-trending-sidebar {
    padding-left: 50px;
    border-left: 1px solid #e0e0e0;
}

.newspaper-sidebar-heading {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 30px 0;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Playfair Display', Georgia, serif;
}

.newspaper-trending-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.newspaper-trending-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

.newspaper-trending-item:last-child {
    border-bottom: none;
}

.newspaper-trending-number {
    font-size: 32px;
    font-weight: 700;
    color: #d32f2f;
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1;
    min-width: 40px;
}

.newspaper-trending-content {
    flex: 1;
}

.newspaper-trending-item-category {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #d32f2f;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.newspaper-trending-item-title {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 600;
    margin: 0;
    font-family: 'Playfair Display', Georgia, serif;
}

.newspaper-trending-item-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.newspaper-trending-item-title a:hover {
    color: #000;
}

/* Latest Posts Section */
.newspaper-latest {
    padding: 60px 0;
    background: #fff;
    border-top: 1px solid #e0e0e0;
}

.newspaper-latest-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.newspaper-latest-post {
    display: flex;
    flex-direction: column;
}

.newspaper-latest-image {
    margin-bottom: 15px;
    overflow: hidden;
}

.newspaper-latest-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.newspaper-latest-image:hover img {
    transform: scale(1.05);
}

.newspaper-latest-content {
    flex: 1;
}

.newspaper-latest-category {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #d32f2f;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.newspaper-latest-title {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
    margin: 0 0 10px 0;
    font-family: 'Playfair Display', Georgia, serif;
}

.newspaper-latest-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.newspaper-latest-title a:hover {
    color: #000;
}

.newspaper-latest-meta {
    font-size: 12px;
    color: #888;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Brand Promotion Section */
.newspaper-brand-promotion {
    padding: 60px 0;
    background: #fff;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.newspaper-promotion-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.newspaper-promotion-poster {
    position: relative;
    overflow: visible;
    background: #f5f5f5;
    display: block;
}

.newspaper-promotion-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.newspaper-promotion-placeholder {
    width: 100%;
    height: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border: 2px dashed #ddd;
}

.newspaper-promotion-placeholder-content {
    text-align: center;
    padding: 40px;
}

.newspaper-promotion-placeholder-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #666;
    font-family: 'Playfair Display', Georgia, serif;
}

.newspaper-promotion-placeholder-content p {
    font-size: 14px;
    color: #999;
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.newspaper-promotion-content {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.newspaper-promotion-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff3e0;
    padding: 12px 20px;
    border-left: 4px solid #d32f2f;
    border-radius: 4px;
    margin-bottom: 10px;
}

.newspaper-promotion-badge-icon {
    font-size: 20px;
}

.newspaper-promotion-badge-text {
    font-size: 16px;
    font-weight: 600;
    color: #d32f2f;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.newspaper-promotion-main-title {
    font-size: 42px;
    font-weight: 700;
    margin: 0;
    color: #000;
    line-height: 1.3;
    font-family: 'Playfair Display', Georgia, serif;
}

.promotion-icon {
    font-size: 36px;
    margin-right: 10px;
    vertical-align: middle;
}

.newspaper-promotion-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: #444;
    margin: 0;
    font-weight: 500;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.newspaper-promotion-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 10px 0;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 4px;
}

.newspaper-promotion-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #333;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #d32f2f;
    color: #fff;
    border-radius: 50%;
    font-size: 14px;
    font-weight: bold;
    flex-shrink: 0;
}

.newspaper-promotion-cta {
    margin-top: 10px;
}

.newspaper-promotion-visit {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin: 0 0 15px 0;
    font-weight: 600;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.newspaper-promotion-btn {
    display: inline-block;
    background: #d32f2f;
    color: #fff;
    padding: 15px 40px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    border: none;
    cursor: pointer;
}

.newspaper-promotion-btn:hover {
    background: #b71c1c;
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}

/* NEST for NEET Promotion Section */
.newspaper-neet-promotion {
    padding: 60px 0;
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.newspaper-neet-promotion-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.newspaper-neet-promotion-content {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.newspaper-neet-title {
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    color: #000;
    line-height: 1.2;
    font-family: 'Playfair Display', Georgia, serif;
}

.newspaper-neet-subtitle {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    color: #d32f2f;
    font-style: italic;
    font-family: 'Playfair Display', Georgia, serif;
}

.newspaper-neet-description {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    margin: 0;
    font-weight: 500;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.newspaper-neet-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 10px 0;
    padding: 25px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.newspaper-neet-feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    color: #333;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.neet-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: #4caf50;
    color: #fff;
    border-radius: 50%;
    font-size: 14px;
    font-weight: bold;
    flex-shrink: 0;
}

.newspaper-neet-cta {
    margin-top: 15px;
}

.newspaper-neet-cta-text {
    font-size: 17px;
    line-height: 1.6;
    color: #333;
    margin: 0 0 12px 0;
    font-weight: 600;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.newspaper-neet-start-text {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin: 0 0 20px 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.newspaper-neet-btn {
    display: inline-block;
    background: #1976d2;
    color: #fff;
    padding: 16px 45px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    border-radius: 4px;
}

.newspaper-neet-btn:hover {
    background: #1565c0;
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
}

.newspaper-neet-promotion-poster {
    position: relative;
    overflow: visible;
    background: #f5f5f5;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    display: block;
}

.newspaper-neet-promotion-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* WhatGPT Promotion Section */
.newspaper-whatgpt-promotion {
    padding: 60px 0;
    background: #fff;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.newspaper-whatgpt-promotion-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.newspaper-whatgpt-promotion-poster {
    position: relative;
    overflow: visible;
    background: #f5f5f5;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    display: block;
}

.newspaper-whatgpt-promotion-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.newspaper-whatgpt-promotion-content {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.newspaper-whatgpt-title {
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    color: #000;
    line-height: 1.2;
    font-family: 'Playfair Display', Georgia, serif;
}

.newspaper-whatgpt-description {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    margin: 0;
    font-weight: 500;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.newspaper-whatgpt-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 10px 0;
    padding: 25px;
    background: #f0f7ff;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.newspaper-whatgpt-feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    color: #333;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.whatgpt-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: #2196f3;
    color: #fff;
    border-radius: 50%;
    font-size: 14px;
    font-weight: bold;
    flex-shrink: 0;
}

.newspaper-whatgpt-cta {
    margin-top: 15px;
}

.newspaper-whatgpt-cta-text {
    font-size: 17px;
    line-height: 1.6;
    color: #333;
    margin: 0 0 12px 0;
    font-weight: 600;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.newspaper-whatgpt-start-text {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin: 0 0 20px 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.newspaper-whatgpt-btn {
    display: inline-block;
    background: #2196f3;
    color: #fff;
    padding: 16px 45px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    border-radius: 4px;
}

.newspaper-whatgpt-btn:hover {
    background: #1976d2;
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
}

/* About Us Section */
.newspaper-about-us {
    padding: 50px 0;
    background: #fff;
}

.newspaper-about-content {
    padding: 40px;
}

.newspaper-about-heading {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 20px 0;
    color: #000;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.newspaper-about-text {
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 20px 0;
    color: #1a1a1a;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.newspaper-about-list {
    padding-left: 30px;
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: #1a1a1a;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.newspaper-about-list li {
    margin-bottom: 8px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .newspaper-columns-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .newspaper-daily-feed {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid #e0e0e0;
        padding-top: 40px;
        margin-top: 40px;
    }
    
    .newspaper-breaking-news {
        padding-right: 0;
    }
    
    .newspaper-snippets-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .newspaper-snippet-item {
        padding: 15px 20px;
    }
    
    .newspaper-snippet-border::after {
        display: none;
    }
    
    .newspaper-snippet-item:nth-child(2n) {
        border-right: none;
    }
    
    /* Brand Promotion Sections - Tablet */
    .newspaper-promotion-wrapper,
    .newspaper-neet-promotion-wrapper,
    .newspaper-whatgpt-promotion-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .newspaper-brand-promotion,
    .newspaper-neet-promotion,
    .newspaper-whatgpt-promotion {
        padding: 50px 0;
    }
    
    .newspaper-promotion-main-title,
    .newspaper-neet-title,
    .newspaper-whatgpt-title {
        font-size: 38px;
    }
    
    .newspaper-neet-subtitle {
        font-size: 22px;
    }
    
}

@media (max-width: 767px) {
    .newspaper-snippets-grid {
        grid-template-columns: 1fr;
    }
    
    .newspaper-section-heading {
        font-size: 28px;
    }
    
    .newspaper-breaking-title {
        font-size: 32px;
    }
    
    .newspaper-feed-title {
        font-size: 20px;
    }
    
    .newspaper-snippet-title {
        font-size: 16px;
    }
    
    .newspaper-top-snippets {
        padding: 25px 0;
    }
    
    .newspaper-main-content {
        padding: 40px 0;
    }
    
    .newspaper-featured-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .newspaper-trending-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .newspaper-trending-sidebar {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid #e0e0e0;
        padding-top: 40px;
        margin-top: 40px;
    }
    
    .newspaper-latest-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    /* Brand Promotion Sections - Mobile */
    .newspaper-promotion-wrapper,
    .newspaper-neet-promotion-wrapper,
    .newspaper-whatgpt-promotion-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Ensure image appears first on mobile for better UX */
    .newspaper-neet-promotion-wrapper {
        display: flex;
        flex-direction: column;
    }
    
    .newspaper-neet-promotion-wrapper .newspaper-neet-promotion-poster {
        order: -1;
    }
    
    .newspaper-whatgpt-promotion-wrapper {
        display: flex;
        flex-direction: column;
    }
    
    .newspaper-whatgpt-promotion-wrapper .newspaper-whatgpt-promotion-poster {
        order: -1;
    }
    
    .newspaper-promotion-poster,
    .newspaper-neet-promotion-poster,
    .newspaper-whatgpt-promotion-poster {
        overflow: visible;
    }
    
    .newspaper-promotion-image,
    .newspaper-neet-promotion-image,
    .newspaper-whatgpt-promotion-image {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
}

@media (max-width: 767px) {
    .newspaper-featured-posts-grid,
    .newspaper-latest-grid {
        grid-template-columns: 1fr;
    }
    
    .newspaper-featured-grid,
    .newspaper-trending,
    .newspaper-latest {
        padding: 40px 0;
    }
    
    .newspaper-trending-main-title {
        font-size: 28px;
    }
    
    .newspaper-about-content {
        padding: 30px 20px;
    }
    
    .newspaper-about-us {
        padding: 40px 0;
    }
    
    /* Brand Promotion Section - Mobile */
    .newspaper-brand-promotion {
        padding: 30px 0;
    }
    
    .newspaper-promotion-content {
        gap: 20px;
    }
    
    .newspaper-promotion-main-title {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .newspaper-promotion-subtitle {
        font-size: 16px;
        line-height: 1.5;
    }
    
    .newspaper-promotion-badge {
        padding: 10px 15px;
        margin-bottom: 15px;
    }
    
    .newspaper-promotion-badge-text {
        font-size: 13px;
    }
    
    .newspaper-promotion-features {
        padding: 18px;
        gap: 10px;
        margin: 15px 0;
    }
    
    .newspaper-promotion-feature-item {
        font-size: 14px;
        gap: 10px;
    }
    
    .feature-icon {
        width: 22px;
        height: 22px;
        font-size: 12px;
    }
    
    .newspaper-promotion-cta {
        margin-top: 15px;
    }
    
    .newspaper-promotion-visit {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .newspaper-promotion-btn {
        padding: 14px 30px;
        font-size: 13px;
        width: 100%;
        text-align: center;
        display: block;
        box-sizing: border-box;
    }
    
    /* NEST for NEET Promotion - Mobile */
    .newspaper-neet-promotion {
        padding: 30px 0;
    }
    
    .newspaper-neet-promotion-content {
        gap: 20px;
    }
    
    .newspaper-neet-title {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 10px;
    }
    
    .newspaper-neet-subtitle {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .newspaper-neet-description {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .newspaper-neet-features {
        padding: 20px;
        gap: 12px;
        margin: 15px 0;
    }
    
    .newspaper-neet-feature-item {
        font-size: 14px;
        gap: 12px;
    }
    
    .neet-feature-icon {
        width: 24px;
        height: 24px;
        font-size: 13px;
    }
    
    .newspaper-neet-cta {
        margin-top: 15px;
    }
    
    .newspaper-neet-cta-text {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .newspaper-neet-start-text {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .newspaper-neet-btn {
        padding: 14px 30px;
        font-size: 13px;
        width: 100%;
        text-align: center;
        display: block;
        box-sizing: border-box;
    }
    
    /* WhatGPT Promotion - Mobile */
    .newspaper-whatgpt-promotion {
        padding: 30px 0;
    }
    
    .newspaper-whatgpt-promotion-content {
        gap: 20px;
    }
    
    .newspaper-whatgpt-title {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .newspaper-whatgpt-description {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .newspaper-whatgpt-features {
        padding: 20px;
        gap: 12px;
        margin: 15px 0;
    }
    
    .newspaper-whatgpt-feature-item {
        font-size: 14px;
        gap: 12px;
    }
    
    .whatgpt-feature-icon {
        width: 24px;
        height: 24px;
        font-size: 13px;
    }
    
    .newspaper-whatgpt-cta {
        margin-top: 15px;
    }
    
    .newspaper-whatgpt-cta-text {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .newspaper-whatgpt-start-text {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .newspaper-whatgpt-btn {
        padding: 14px 30px;
        font-size: 13px;
        width: 100%;
        text-align: center;
        display: block;
        box-sizing: border-box;
    }
}

/* ============================================
   EDITOR'S PICK SECTION
   ============================================ */
.newspaper-editors-pick {
    padding: 60px 0;
    background: #fff;
    border-top: 1px solid #e0e0e0;
}

.newspaper-editors-pick-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.newspaper-editors-pick-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.newspaper-editors-pick-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.newspaper-editors-pick-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.newspaper-editors-pick-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.newspaper-editors-pick-item:hover .newspaper-editors-pick-image img {
    transform: scale(1.05);
}

.newspaper-editors-pick-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #d32f2f;
    color: #fff;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.newspaper-editors-pick-content {
    padding: 25px;
}

.newspaper-editors-pick-category {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 12px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.newspaper-editors-pick-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

.newspaper-editors-pick-title a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.newspaper-editors-pick-title a:hover {
    color: #d32f2f;
}

.newspaper-editors-pick-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

.newspaper-editors-pick-date {
    font-size: 12px;
    color: #999;
    font-family: 'Inter', sans-serif;
}

/* ============================================
   POPULAR CATEGORIES SECTION
   ============================================ */
.newspaper-popular-categories {
    padding: 60px 0;
    background: #f8f8f8;
    border-top: 1px solid #e0e0e0;
}

.newspaper-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.newspaper-category-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.newspaper-category-item:hover {
    border-color: #d32f2f;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.newspaper-category-link {
    display: block;
    padding: 25px 20px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.newspaper-category-name {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.newspaper-category-item:hover .newspaper-category-name {
    color: #d32f2f;
}

.newspaper-category-count {
    display: block;
    font-size: 13px;
    color: #666;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

/* Mobile: Compact multi-column list */
@media (max-width: 767px) {
    .newspaper-popular-categories {
        padding: 30px 0;
    }
    
    .newspaper-categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        margin-top: 25px;
    }
    
    .newspaper-category-item {
        border: 1px solid #e0e0e0;
    }
    
    .newspaper-category-link {
        padding: 12px 8px;
    }
    
    .newspaper-category-name {
        font-size: 13px;
        margin-bottom: 4px;
        line-height: 1.3;
    }
    
    .newspaper-category-count {
        font-size: 11px;
    }
    
    .newspaper-category-item:hover {
        transform: none;
        box-shadow: none;
    }
}

/* ============================================
   SOCIAL MEDIA FOLLOW SECTION
   ============================================ */
.newspaper-social-follow {
    padding: 60px 0;
    background: #fff;
    border-top: 1px solid #e0e0e0;
}

.newspaper-social-wrapper {
    text-align: center;
}

.newspaper-social-content {
    margin-bottom: 40px;
}

.newspaper-social-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 42px;
    font-weight: 900;
    color: #000;
    margin-bottom: 15px;
}

.newspaper-social-subtitle {
    font-size: 18px;
    color: #666;
    font-family: 'Inter', sans-serif;
    margin-bottom: 10px;
}

.newspaper-social-description {
    font-size: 16px;
    color: #888;
    font-family: 'Inter', sans-serif;
    max-width: 600px;
    margin: 0 auto;
}

.newspaper-social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.newspaper-social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    text-decoration: none;
    color: #000;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.newspaper-social-link svg {
    width: 20px;
    height: 20px;
}

.newspaper-social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.newspaper-social-facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: #fff;
}

.newspaper-social-twitter:hover {
    background: #1da1f2;
    border-color: #1da1f2;
    color: #fff;
}

.newspaper-social-instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #bc1888;
    color: #fff;
}

.newspaper-social-youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
    color: #fff;
}

/* ============================================
   NEWSLETTER SUBSCRIPTION SECTION
   ============================================ */
.newspaper-newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
    border-top: 1px solid #e0e0e0;
}

.newspaper-newsletter-wrapper {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newspaper-newsletter-content {
    margin-bottom: 40px;
}

.newspaper-newsletter-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 48px;
    font-weight: 900;
    color: #000;
    margin-bottom: 15px;
}

.newspaper-newsletter-subtitle {
    font-size: 20px;
    color: #666;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-bottom: 10px;
}

.newspaper-newsletter-description {
    font-size: 16px;
    color: #888;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

.newspaper-newsletter-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.newspaper-newsletter-form {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.newspaper-newsletter-input {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.3s ease;
}

.newspaper-newsletter-input:focus {
    border-color: #d32f2f;
}

.newspaper-newsletter-btn {
    padding: 16px 40px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.newspaper-newsletter-btn:hover {
    background: #d32f2f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
}

.newspaper-newsletter-privacy {
    font-size: 13px;
    color: #999;
    font-family: 'Inter', sans-serif;
    margin: 0;
}

/* ============================================
   ARCHIVE/LOAD MORE SECTION
   ============================================ */
.newspaper-archive {
    padding: 60px 0;
    background: #fff;
    border-top: 1px solid #e0e0e0;
}

.newspaper-archive-wrapper {
    text-align: center;
}

.newspaper-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 50px;
}

.newspaper-archive-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.newspaper-archive-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.newspaper-archive-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.newspaper-archive-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.newspaper-archive-item:hover .newspaper-archive-image img {
    transform: scale(1.05);
}

.newspaper-archive-content {
    padding: 20px;
}

.newspaper-archive-category {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.newspaper-archive-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
}

.newspaper-archive-title a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.newspaper-archive-title a:hover {
    color: #d32f2f;
}

.newspaper-archive-meta {
    margin-top: 10px;
}

.newspaper-archive-date {
    font-size: 12px;
    color: #999;
    font-family: 'Inter', sans-serif;
}

.newspaper-archive-footer {
    margin-top: 40px;
}

.newspaper-archive-btn {
    display: inline-block;
    padding: 16px 50px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    border-radius: 6px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.newspaper-archive-btn:hover {
    background: #d32f2f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
}

/* Archive Page Header */
.newspaper-archive-header {
    padding: 60px 0 40px;
    background: #fff;
    border-bottom: 3px solid #000;
}

.newspaper-archive-page-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 56px;
    font-weight: 900;
    color: #000;
    margin-bottom: 15px;
    text-align: center;
}

.newspaper-archive-page-description {
    font-size: 18px;
    color: #666;
    font-family: 'Inter', sans-serif;
    text-align: center;
    margin: 0;
}

/* All Articles Section */
.newspaper-all-articles {
    padding: 60px 0;
    background: #fff;
}

.newspaper-all-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.newspaper-archive-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-top: 12px;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
}

/* Pagination */
.newspaper-pagination {
    margin-top: 60px;
    text-align: center;
}

.newspaper-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.newspaper-pagination .page-numbers li {
    display: inline-block;
    margin: 0 5px;
}

.newspaper-pagination .page-numbers a,
.newspaper-pagination .page-numbers span {
    display: inline-block;
    padding: 12px 18px;
    background: #fff;
    border: 1px solid #e0e0e0;
    color: #000;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.newspaper-pagination .page-numbers a:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

.newspaper-pagination .page-numbers .current {
    background: #d32f2f;
    color: #fff;
    border-color: #d32f2f;
}

.newspaper-pagination .page-numbers .prev,
.newspaper-pagination .page-numbers .next {
    padding: 12px 24px;
}

.newspaper-no-posts {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #666;
}

/* Responsive Styles for New Sections */
@media (max-width: 991px) {
    .newspaper-editors-pick-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .newspaper-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .newspaper-archive-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .newspaper-social-heading {
        font-size: 36px;
    }
    
    .newspaper-newsletter-heading {
        font-size: 38px;
    }
    
    .newspaper-newsletter-form {
        flex-direction: column;
    }
    
    .newspaper-newsletter-btn {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .newspaper-editors-pick {
        padding: 40px 0;
    }
    
    .newspaper-editors-pick-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    /* Popular Categories mobile styles moved above */
    
    .newspaper-social-follow {
        padding: 40px 0;
    }
    
    .newspaper-social-heading {
        font-size: 28px;
    }
    
    .newspaper-social-subtitle {
        font-size: 16px;
    }
    
    .newspaper-social-description {
        font-size: 14px;
    }
    
    .newspaper-social-links {
        flex-direction: column;
        align-items: stretch;
    }
    
    .newspaper-social-link {
        justify-content: center;
    }
    
    .newspaper-newsletter {
        padding: 50px 0;
    }
    
    .newspaper-newsletter-heading {
        font-size: 32px;
    }
    
    .newspaper-newsletter-subtitle {
        font-size: 18px;
    }
    
    .newspaper-newsletter-description {
        font-size: 14px;
    }
    
    .newspaper-newsletter-form-wrapper {
        padding: 30px 20px;
    }
    
    .newspaper-archive {
        padding: 40px 0;
    }
    
    .newspaper-archive-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .newspaper-archive-btn {
        padding: 14px 40px;
        font-size: 15px;
    }
    
    /* Archive Page Responsive */
    .newspaper-archive-header {
        padding: 40px 0 30px;
    }
    
    .newspaper-archive-page-title {
        font-size: 42px;
    }
    
    .newspaper-archive-page-description {
        font-size: 16px;
    }
    
    .newspaper-all-articles {
        padding: 40px 0;
    }
    
    .newspaper-all-articles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-bottom: 40px;
    }
    
    .newspaper-pagination {
        margin-top: 40px;
    }
    
    .newspaper-pagination .page-numbers a,
    .newspaper-pagination .page-numbers span {
        padding: 10px 15px;
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .newspaper-archive-header {
        padding: 30px 0 25px;
    }
    
    .newspaper-archive-page-title {
        font-size: 32px;
    }
    
    .newspaper-archive-page-description {
        font-size: 14px;
    }
    
    .newspaper-all-articles {
        padding: 30px 0;
    }
    
    .newspaper-all-articles-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 30px;
    }
    
    .newspaper-pagination {
        margin-top: 30px;
    }
    
    .newspaper-pagination .page-numbers {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .newspaper-pagination .page-numbers li {
        margin: 5px;
    }
    
    .newspaper-pagination .page-numbers a,
    .newspaper-pagination .page-numbers span {
        padding: 10px 14px;
        font-size: 13px;
    }
}

/* ============================================
   SINGLE POST STYLES
   ============================================ */
.newspaper-single-header {
    padding: 60px 0 40px;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
}

.newspaper-single-category {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #d32f2f;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.newspaper-single-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 48px;
    font-weight: 900;
    color: #000;
    line-height: 1.2;
    margin-bottom: 20px;
}

.newspaper-single-meta {
    display: flex;
    gap: 20px;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #666;
}

.newspaper-single-date {
    font-weight: 500;
}

.newspaper-single-author {
    font-weight: 500;
}

.newspaper-single-featured-image {
    padding: 40px 0;
    background: #fff;
}

.newspaper-single-image-wrapper {
    width: 100%;
    max-height: 600px;
    overflow: hidden;
    border-radius: 4px;
}

.newspaper-single-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.newspaper-single-content {
    padding: 40px 0 60px;
    background: #fff;
}

.newspaper-single-content-wrapper {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.newspaper-single-content-wrapper p {
    margin-bottom: 24px;
}

.newspaper-single-content-wrapper h2,
.newspaper-single-content-wrapper h3,
.newspaper-single-content-wrapper h4 {
    font-family: 'Playfair Display', Georgia, serif;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #000;
}

.newspaper-single-content-wrapper h2 {
    font-size: 36px;
    font-weight: 700;
}

.newspaper-single-content-wrapper h3 {
    font-size: 28px;
    font-weight: 700;
}

.newspaper-single-content-wrapper h4 {
    font-size: 22px;
    font-weight: 700;
}

.newspaper-single-content-wrapper ul,
.newspaper-single-content-wrapper ol {
    margin: 24px 0;
    padding-left: 30px;
}

.newspaper-single-content-wrapper li {
    margin-bottom: 12px;
}

.newspaper-single-content-wrapper a {
    color: #d32f2f;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.newspaper-single-content-wrapper a:hover {
    color: #000;
}

.newspaper-single-content-wrapper blockquote {
    border-left: 4px solid #d32f2f;
    padding-left: 24px;
    margin: 32px 0;
    font-style: italic;
    color: #555;
}

.newspaper-single-content-wrapper img {
    max-width: 100%;
    height: auto;
    margin: 32px 0;
    border-radius: 4px;
}

.newspaper-single-tags {
    padding: 40px 0;
    background: #f8f8f8;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.newspaper-tags-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.newspaper-tags-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.newspaper-tag-link {
    display: inline-block;
    padding: 6px 14px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.newspaper-tag-link:hover {
    background: #d32f2f;
    border-color: #d32f2f;
    color: #fff;
}

.newspaper-single-navigation {
    padding: 60px 0;
    background: #fff;
}

.newspaper-post-nav-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.newspaper-post-nav-prev,
.newspaper-post-nav-next {
    padding: 20px;
    background: #f8f8f8;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.newspaper-post-nav-prev:hover,
.newspaper-post-nav-next:hover {
    border-color: #d32f2f;
    background: #fff;
}

.newspaper-post-nav-next {
    text-align: right;
}

.newspaper-nav-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.newspaper-nav-link {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.newspaper-nav-link:hover {
    color: #d32f2f;
}

/* Single Post Responsive */
@media (max-width: 991px) {
    .newspaper-single-title {
        font-size: 38px;
    }
    
    .newspaper-single-content-wrapper {
        font-size: 16px;
    }
    
    .newspaper-single-content-wrapper h2 {
        font-size: 30px;
    }
    
    .newspaper-single-content-wrapper h3 {
        font-size: 24px;
    }
    
    .newspaper-post-nav-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .newspaper-post-nav-next {
        text-align: left;
    }
}

@media (max-width: 767px) {
    .newspaper-single-header {
        padding: 40px 0 30px;
    }
    
    .newspaper-single-title {
        font-size: 28px;
    }
    
    .newspaper-single-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .newspaper-single-featured-image {
        padding: 30px 0;
    }
    
    .newspaper-single-content {
        padding: 30px 0 40px;
    }
    
    .newspaper-single-content-wrapper {
        font-size: 16px;
        line-height: 1.7;
    }
    
    .newspaper-single-content-wrapper h2 {
        font-size: 26px;
    }
    
    .newspaper-single-content-wrapper h3 {
        font-size: 22px;
    }
    
    .newspaper-single-content-wrapper h4 {
        font-size: 20px;
    }
    
    .newspaper-single-tags {
        padding: 30px 0;
    }
    
    .newspaper-single-navigation {
        padding: 40px 0;
    }
    
    .newspaper-post-nav-wrapper {
        padding-top: 30px;
    }
}

/* ============================================
   ENHANCED SINGLE POST LAYOUT
   ============================================ */
.newspaper-single-main-wrapper {
    padding: 40px 0 60px;
    background: #fff;
}

.newspaper-single-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}

.newspaper-single-main-content {
    min-width: 0;
}

.newspaper-single-reading-time {
    font-weight: 500;
    color: #999;
}

/* Social Share Buttons */
.newspaper-social-share {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    margin: 30px 0;
}

.newspaper-share-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.newspaper-share-btn {
    display: inline-block;
    padding: 8px 16px;
    background: #f8f8f8;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.newspaper-share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.newspaper-share-facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: #fff;
}

.newspaper-share-twitter:hover {
    background: #1da1f2;
    border-color: #1da1f2;
    color: #fff;
}

.newspaper-share-linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
    color: #fff;
}

.newspaper-share-whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
    color: #fff;
}

/* Ad Placements */
.newspaper-ad-banner-large {
    margin: 40px 0;
    padding: 20px 0;
    text-align: center;
}

.newspaper-ad-link {
    display: inline-block;
    max-width: 100%;
    transition: opacity 0.3s ease;
}

.newspaper-ad-link:hover {
    opacity: 0.9;
}

.newspaper-banner-ad-image {
    width: 100%;
    max-width: 728px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 4px;
}

.newspaper-ad-small {
    margin-bottom: 30px;
}

.newspaper-ad-placeholder {
    width: 100%;
    min-height: 200px;
    background: #f5f5f5;
    border: 2px dashed #ddd;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.newspaper-ad-banner-large .newspaper-ad-placeholder {
    min-height: 90px;
}

.newspaper-ad-small .newspaper-ad-placeholder {
    min-height: 250px;
}

.newspaper-ad-placeholder:hover {
    border-color: #d32f2f;
    background: #fafafa;
}

.newspaper-ad-label {
    position: absolute;
    top: 8px;
    right: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.newspaper-ad-content {
    text-align: center;
    color: #999;
}

.newspaper-ad-content p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: #bbb;
}

.newspaper-ad-content small {
    font-size: 12px;
    color: #ccc;
}

/* Author Bio */
.newspaper-author-bio {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: #f8f8f8;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin: 40px 0;
}

.newspaper-author-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.newspaper-author-info {
    flex: 1;
}

.newspaper-author-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.newspaper-author-description {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Sidebar Styles */
.newspaper-single-sidebar {
    position: sticky;
    top: 20px;
}

.newspaper-sidebar-widget {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
}

.newspaper-sidebar-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Popular Posts Sidebar */
.newspaper-popular-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.newspaper-popular-item {
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.newspaper-popular-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.newspaper-popular-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 4px;
}

.newspaper-popular-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.newspaper-popular-item:hover .newspaper-popular-image img {
    transform: scale(1.1);
}

.newspaper-popular-content {
    flex: 1;
    min-width: 0;
}

.newspaper-popular-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 8px;
}

.newspaper-popular-title a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.newspaper-popular-title a:hover {
    color: #d32f2f;
}

.newspaper-popular-date {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #999;
}

/* Newsletter Sidebar */
.newspaper-newsletter-sidebar-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.newspaper-newsletter-sidebar-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newspaper-newsletter-sidebar-input {
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

.newspaper-newsletter-sidebar-input:focus {
    border-color: #d32f2f;
}

.newspaper-newsletter-sidebar-btn {
    padding: 12px 20px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newspaper-newsletter-sidebar-btn:hover {
    background: #d32f2f;
}

/* Categories Sidebar */
.newspaper-categories-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.newspaper-categories-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.newspaper-categories-list li:last-child {
    border-bottom: none;
}

.newspaper-categories-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.newspaper-categories-list a:hover {
    color: #d32f2f;
}

.newspaper-categories-list a span {
    color: #999;
    font-size: 13px;
}

/* Related Posts Section */
.newspaper-related-posts {
    padding: 60px 0;
    background: #f8f8f8;
    border-top: 1px solid #e0e0e0;
}

.newspaper-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.newspaper-related-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.newspaper-related-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.newspaper-related-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.newspaper-related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.newspaper-related-item:hover .newspaper-related-image img {
    transform: scale(1.05);
}

.newspaper-related-content {
    padding: 20px;
}

.newspaper-related-category {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #d32f2f;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.newspaper-related-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
}

.newspaper-related-title a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.newspaper-related-title a:hover {
    color: #d32f2f;
}

.newspaper-related-meta {
    margin-top: 10px;
}

.newspaper-related-date {
    font-size: 12px;
    color: #999;
    font-family: 'Inter', sans-serif;
}

/* Enhanced Single Post Responsive */
@media (max-width: 991px) {
    .newspaper-single-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .newspaper-single-sidebar {
        position: static;
    }
    
    .newspaper-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .newspaper-author-bio {
        flex-direction: column;
        text-align: center;
    }
    
    .newspaper-author-avatar {
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .newspaper-single-main-wrapper {
        padding: 30px 0 40px;
    }
    
    .newspaper-social-share {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .newspaper-share-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .newspaper-ad-banner-large .newspaper-ad-placeholder {
        min-height: 70px;
    }
    
    .newspaper-ad-small .newspaper-ad-placeholder {
        min-height: 200px;
    }
    
    .newspaper-author-bio {
        padding: 20px;
    }
    
    .newspaper-sidebar-widget {
        padding: 20px;
    }
    
    .newspaper-related-posts {
        padding: 40px 0;
    }
    
    .newspaper-related-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

