/**
 * Phusa Common Styles
 * Shared styles for Phusa components
 */

/* Wrapper bao cả 2 component */
.phusa-sanpham-tintuc-wrapper {
    position: relative;
    margin: 0;
    margin-top: -35px;
    border-radius: 40px 40px 0px 0px;
    z-index: 12;
}

/* Màu nền với height giảm */
.phusa-sanpham-tintuc-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 92%; /* Giảm height giống hình overlay */
    background: #0D0C55;
    border-radius: 40px 40px 0px 0px;
    z-index: -1;
}

/* Rectangle 31 - Hình overlay chèn lên màu nền - Phủ kín background */
.phusa-sanpham-tintuc-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 92%; /* Giảm height xuống 95% */
    background: url('/images/tin-tuc.png');
    background-size: 100% 100%; /* Phủ kín 100% cả chiều rộng và chiều cao */
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 1;
    border-radius: 40px 40px 0px 0px;
    z-index: 0;
    pointer-events: none;
}

/* Đảm bảo nội dung nằm trên background */
.phusa-sanpham-tintuc-wrapper > * {
    position: relative;
    z-index: 1;
}
