.news-detail-section {
    min-height: 60vh;
    padding: 80px 0;
    background: #f8f9fa;
}

.breadcrumb {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.breadcrumb-item a {
    color: var(--primary-color, #dc3545);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.news-detail-card {
    background: white;
    border-radius: 12px;
}

.news-detail-top-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.news-category-tag {
    background: var(--primary-color, #dc3545);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}


.news-detail-title {
    font-size: 2rem;
    font-weight: 900;
    color: #2c3e50;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.news-detail-meta-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: #6c757d;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 0.9rem;
}

.author-name {
    font-weight: 600;
    color: #2c3e50;
}

.meta-separator {
    color: #dee2e6;
}

.news-detail-image-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.news-detail-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
}

.news-detail-content {
    padding-top: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
}

.news-detail-content p {
    margin-bottom: 1.5rem;
}

.news-detail-content h2,
.news-detail-content h3,
.news-detail-content h4 {
    color: var(--primary-color, #dc3545);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.news-detail-content ul,
.news-detail-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.news-detail-content li {
    margin-bottom: 0.5rem;
}

.news-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.news-detail-content a {
    color: var(--primary-color, #dc3545);
    text-decoration: none;
}

.news-detail-content a:hover {
    text-decoration: underline;
}

.news-social-share {
    margin-top: 2rem;
}

.share-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.social-share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: white;
}

.share-facebook {
    background: #1877f2;
}

.share-twitter {
    background: #1da1f2;
}

.share-linkedin {
    background: #0077b5;
}

.share-tumblr {
    background: #36465d;
}

.share-pinterest {
    background: #bd081c;
}

.share-reddit {
    background: #ff4500;
}

.share-vk {
    background: #4680c2;
}

.share-email {
    background: #6c757d;
}

.share-print {
    background: #495057;
}

.news-author-bio {
    margin-top: 2rem;
}

.author-bio-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.author-bio-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.author-bio-text {
    font-size: 0.9rem;
    margin: 0;
}

.related-news-section {
    margin-top: 3rem;
}

.related-news-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color, #dc3545);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color, #dc3545);
}

.related-news-card {
    transition: all 0.3s ease;
    overflow: hidden;
}

.related-news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

.related-news-image-wrapper {
    width: 100%;
    height: 150px;
    overflow: hidden;
    background: #e9ecef;
}

.related-news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-news-card:hover .related-news-image {
    transform: scale(1.1);
}

.related-news-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.related-news-title a {
    color: #2c3e50;
    transition: color 0.3s ease;
}

.related-news-title a:hover {
    color: var(--primary-color, #dc3545);
}

.related-news-date {
    font-size: 0.85rem;
    color: #6c757d;
}

.news-sidebar {
    position: sticky;
    top: 20px;
}

.sidebar-widget {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.widget-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color, #dc3545);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e9ecef;
}

.latest-news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.latest-news-item {
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.latest-news-item:last-child {
    border-bottom: none;
}

.latest-news-item:hover {
    padding-left: 0.5rem;
}

.latest-news-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.latest-news-item:hover .latest-news-title {
    color: var(--primary-color, #dc3545);
}

.latest-news-date {
    font-size: 0.85rem;
    color: #6c757d;
}

.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-item {
    margin-bottom: 0.5rem;
}

.category-link {
    display: block;
    padding: 0.75rem 1rem;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.category-link:hover {
    background: #f8f9fa;
    color: var(--primary-color, #dc3545);
    padding-left: 1.25rem;
}

.subcategories-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0 1.5rem;
}

.subcategory-item {
    margin-bottom: 0.25rem;
}

.subcategory-link {
    display: block;
    padding: 0.5rem 0.75rem;
    color: #6c757d;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.subcategory-link:hover {
    background: #f8f9fa;
    color: var(--primary-color, #dc3545);
    padding-left: 1rem;
}

@media (max-width: 768px) {
    .news-detail-section {
        padding: 40px 0;
    }
    
    .news-detail-title {
        font-size: 1.8rem;
    }
    
    .news-detail-meta-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .meta-separator {
        display: none;
    }
    
    .social-share-buttons {
        justify-content: center;
    }
    
    .share-btn {
        flex: 1;
        min-width: calc(50% - 0.25rem);
        justify-content: center;
    }
    
    .news-sidebar {
        position: static;
        margin-top: 2rem;
    }
}

