/**
 * Component: Hero Banner for Single Post (Bài viết)
 * Path: template-parts/sections/baiviet-single-banner/style.css
 */

.baiviet-single-banner {
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    height: 672px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Khử mờ hình ảnh trên màn hình độ phân giải cao / trình duyệt Webkit */
    image-rendering: -webkit-optimize-contrast;
}

.baiviet-banner-overlay {
    position: absolute;
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0;
    /* Gradient dịu nhẹ, giữ lại độ nét và độ tương phản gốc của hình ảnh 1920x1080 */
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.baiviet-banner-title {
    position: relative;
    z-index: 2;
    color: var(--text-white, #ffffff);
    margin: 0 auto;
    max-width: 960px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    line-height: 1.3;
}

@media (max-width: 1023px) {
    .baiviet-single-banner {
        height: 480px;
    }
}

@media (max-width: 767px) {
    .baiviet-single-banner {
        height: 360px;
    }
    .baiviet-banner-title {
        padding: 0 15px;
    }
}