/* Tiêu đề chính */
.highlights-title {
    color: #2d3a87;
    font-family: 'Inter', sans-serif;
}

/* Tiêu đề overlay */
.highlights-heading {
    color: #303880;
    font-family: 'Inter', sans-serif;
    font-size: 30px;
}

/* Nội dung mô tả */
.highlights-paragraph {
    color: #0E144B;
    font-family: 'Inter', sans-serif;
}

/* Container mở rộng toàn màn hình */
.highlights-wrapper {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

/* Ảnh nền */
.highlights-bg {
    width: 100vw;
    height: 522px;
    object-fit: cover;
}

/* Box overlay */
.highlights-news-overlay {
    margin-left: 150px;
    width: 682px;
    height: 435px;
    background-color: rgba(255, 240, 222, 0.93);
    backdrop-filter: blur(6px);
    font-family: 'Inter', sans-serif;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .highlights-news-overlay {
        position: static !important;
        transform: none !important;
        margin: 1rem !important;
        width: 100% !important;
        backdrop-filter: none !important;
    }

    .highlights-bg {
        width: 100vw !important;
        height: auto;
    }
}