/* News Hero Section */
.news-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 4rem 0;
    margin-bottom: 2rem;
}

.news-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.news-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.news-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.9rem;
}

.news-category {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
}

/* News Content Section */
.news-content-section {
    padding: 2rem 0;
}

.news-article {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.featured-image {
    margin-bottom: 2rem;
}

.featured-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.article-body {
    padding: 2rem;
}

.article-section {
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-content {
    color: var(--text-color);
    line-height: 1.8;
}

.lead {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.feature-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li:before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: var(--border-radius);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.article-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: var(--light-bg);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Sidebar */
.news-sidebar {
    padding-left: 2rem;
}

.sidebar-block {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.sidebar-title {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.related-news-item {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.related-news-item:last-child {
    border-bottom: none;
}

.news-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.read-more:hover {
    color: var(--primary-dark);
}

/* Responsive Design */
@media (max-width: 992px) {
    .news-sidebar {
        padding-left: 0;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .news-hero h1 {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .article-body {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .news-hero {
        padding: 3rem 0;
    }

    .news-hero h1 {
        font-size: 1.8rem;
    }

    .news-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* News Detail Page Styles */
.news-detail-hero {
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 3rem;
}

.news-detail-hero .container {
    position: relative;
}

.breadcrumb {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb .current {
    color: white;
}

.news-detail-content {
    padding: 0 0 3rem;
}

.news-article {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 3rem;
    margin-bottom: 3rem;
    
    margin-left: auto;
    margin-right: auto;
}

.article-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.article-title {
    font-size: 2.5rem;
    color: #212529;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.article-meta {
    color: #6c757d;
    font-size: 1rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.article-meta .date,
.article-meta .category {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-meta .date i,
.article-meta .category i {
    font-size: 1.1rem;
}

.article-image {
    margin-bottom: 2.5rem;
    border-radius: 8px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-body {
    line-height: 1.8;
    color: #495057;
    font-size: 1.1rem;
}

.article-body h2 {
    font-size: 1.8rem;
    color: #212529;
    margin: 2.5rem 0 1.5rem;
    font-weight: 600;
}

.article-body p {
    margin-bottom: 1.5rem;
}

.article-body ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.article-body li {
    margin-bottom: 0.8rem;
}

.article-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #dee2e6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.share-buttons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.share-buttons span {
    font-weight: 500;
    color: #495057;
}

.share-button {
    color: #6c757d;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.share-button:hover {
    color: #1a237e;
}

/* Related News Section */
.related-news {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.section-title {
    font-size: 2rem;
    color: #212529;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 600;
}

.news-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.news-image {
    height: 220px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    padding: 1.5rem;
}

.news-content h3 {
    font-size: 1.25rem;
    margin: 0.5rem 0;
    font-weight: 600;
    line-height: 1.4;
}

.news-date {
    color: #6c757d;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more {
    color: #1a237e;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    margin-top: 1rem;
    transition: color 0.3s;
}

.read-more:hover {
    color: #283593;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .news-article {
        padding: 2rem;
    }
    
    .article-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .news-detail-hero {
        padding: 2rem 0;
    }
    
    .article-title {
        font-size: 1.8rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .article-body {
        font-size: 1rem;
    }
    
    .article-body h2 {
        font-size: 1.5rem;
    }
    
    .news-card {
        margin-bottom: 1.5rem;
    }
    
    .article-footer {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
} 