/* News Styles */
.news-detail-header {
    color: var(--color-text-1);
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.news-image-detail {
    width: 20%;
    /* object-fit: cover; */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.news-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c3e50;
}

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

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

.news-meta-detail {
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.social-share {
    border-top: 1px solid #e9ecef;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.share-btn {
    border-radius: 25px;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

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

.sidebar-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.sidebar-card .card-header {
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.category-list .list-group-item {
    border: none;
    border-bottom: 1px solid #f1f1f1;
    padding: 0.75rem 1rem;
    transition: background-color 0.3s ease;
}

.category-list .list-group-item:last-child {
    border-bottom: none;
}

.category-list .list-group-item:hover {
    background-color: #f8f9fa;
}

.category-list .badge {
    font-size: 0.75rem;
    padding: 0.35rem 0.5rem;
}

.latest-news-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f1f1;
}

.latest-news-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.latest-news-item h6 {
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
    line-height: 1.4;
}

.latest-news-item h6 a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.latest-news-item h6 a:hover {
    color: #007bff;
}

.news-date {
    font-size: 0.8rem;
    color: #6c757d;
}

/* Responsive */
@media (max-width: 992px) {
    .news-image-detail {
        height: 300px;
    }
    
    .news-detail-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .news-image-detail {
        height: 250px;
    }
    
    .news-detail-header {
        padding: 2rem 0;
    }
    
    .news-content {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .news-image-detail {
        height: 200px;
        border-radius: 8px;
    }
    
    .share-btn {
        margin: 0.25rem;
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .news-detail-header h1 {
        font-size: 1.75rem;
    }
}
