/* Newspaper Header Styles */
.newspaper-grid {
    background-color: #fff;
    text-align: center;
}

.newspaper-grid .container {
    max-width: 1200px;
}

/* Navigation Styles */
.category-nav {
    margin-top: -18px;
    padding: -30px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid #dee2e6;
    position: sticky;
    top: 0;
    font-size: 1.1rem;
    scroll-behavior: smooth;
}

.nav-categories {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.nav-categories::-webkit-scrollbar {
    display: none;
}

.nav-category-item {
    color: #333;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
}

.nav-category-item:hover {
    color: #000;
    border-bottom-width: 3px;
}

/* Article Styles */
.article-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.article-header {
    margin-bottom: 3rem;
    text-align: center;
}

.article-category {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.article-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.article-content {
    font-family: 'Georgia', serif;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin: 2.5rem 0 1.5rem;
    color: #1a1a1a;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
}

/* Comments Section */
.comments-section {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid #eee;
}

.comment-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.comment-card:hover {
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .category-nav {
        font-size: 2.1rem;
        scroll-behavior: smooth;
    }
    
    .nav-categories {
        font-size: 100px;
    }
    
    .nav-category-item {
        font-size: 1.1rem;
        width: 100%;
        text-align: center;
        background-color: #f8f9fa;
        border-radius: 6px;
    }

    .article-title {
        font-size: 2.5rem;
    }
}