/* News Detail Styles */
.news-featured-wrap {
    width: 100%;
    max-height: 480px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 8px;
    border: 3px solid #6091ba;
    box-shadow: 0 6px 20px rgba(39, 67, 90, 0.16);
    background-color: #f4f7f9;
    margin-bottom: 2rem;
    position: relative;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-featured-wrap:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(39, 67, 90, 0.22);
}

.news-featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
    cursor: zoom-in;
}

.news-featured-wrap:hover .news-featured-img {
    transform: scale(1.03);
}

.news-zoom-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(39, 67, 90, 0.85);
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.82rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.news-featured-wrap:hover .news-zoom-badge {
    opacity: 1;
}

.page-sidebar .news-item .thumb img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
}

@media (max-width: 576px) {
    .news-featured-wrap {
        max-height: 260px;
        aspect-ratio: 16 / 10;
    }
}
