.news-bn-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}


.news-bn-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.news-bn-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    pointer-events: none;
}

.news-bn-bg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.95); 
}


.news-bn-wrapper > .container {
    position: relative; 
    z-index: 2;
    height: 100%;
    display: flex;
    justify-content: space-between; 
}


.news-bn-content {
    width: 50%; 
    align-self: center; 
}

.news-bn-title {
    color: #ffffff;
}

.news-bn-title h1 {
    font-size: 75px;
    font-weight: bold;
    line-height: 1;
    margin: 0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.15);
}


.news-bn-text-layout {
    width: 42%; 
    background: rgb(55 55 55 / 60%);
    align-self: flex-end; 
    height: 65%; 
    display: flex;
    align-items: center; 
    padding: 40px;
    box-sizing: border-box;
}

.news-bn-desc p {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
    text-align: justify;
}


@media (max-width: 992px) {
    .news-bn-wrapper {
        min-height: 550px;
    }
    .news-bn-wrapper > .container {
        flex-direction: column; 
        justify-content: flex-start;
        padding: 0;
    }
    .news-bn-content {
        width: 100%;
        padding: 30px;
    }
    .news-bn-text-layout {
        width: 100%;
        height: auto;
        align-self: flex-start;
        padding: 30px 20px;
        background: var(--primary-blue);
        margin-top: auto; 
    }

    .news-bn-desc p {
        color: var(--white); 
    }
}