/* Hero Banner
============*/
#news-room-detail .hero-banner .container {
    display: flex;
    align-items: center;
    justify-content: start;
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 1;
}
#news-room-detail .hero-banner .banner-wrap {
    height: 500px;
    position: relative;
}
#news-room-detail .hero-banner .content-wrap {
    width: 100%;
}
#news-room-detail .hero-banner .content-wrap h1 {
    color: var(--color-white);
    font-size: 50px;
    font-weight: 700;
    max-width: 55%;
}
#news-room-detail .hero-banner .content-wrap h1:lang(en_US) {
    font-family: 'Montserrat';
}
#news-room-detail .hero-banner .content-wrap p.top {
    margin-bottom: 70px;
}
#news-room-detail .hero-banner .content-wrap p {
    line-height: 28px;
    width: 400px;
}
#news-room-detail .tab-content h1 {
    /* text-align: center;
    max-width: 70%; */
    margin: auto auto 20px auto;
}
#news-room-detail .tab-content .description {
    max-width: 1130px;
    margin-left: auto;
    margin-right: auto;
}

/* Desktop
========*/
@media(max-width: 1720px) and (max-width: 1440px) {
    #news-room-detail .hero-banner .content-wrap h1 {
        font-size: 50px;
        max-width: 50%;
    }
    #news-room-detail .hero-banner .banner-wrap {
        height: 450px;
    }
}

/* Laptop
=======*/
@media(max-width: 1280px) {}

/* iPad Pro
=======*/
@media (max-width: 1024px) {
    #news-room-detail .hero-banner .content-wrap h1 {
        font-size: 38px;
    }
    #news-room-detail .hero-banner .banner-wrap {
        height: 260px;
    }
}

/* iPad
=====*/
@media(max-width: 768px) {
    /* Hero Banner */
    #news-room-detail .hero-banner .content-wrap h1 {
        font-size: 28px;
    }
    #news-room-detail .hero-banner .banner-wrap {
        height: 240px;
    }
}

/* Mobile
=======*/
@media(max-width: 576px) {
    /* Hero Banner */
    #news-room-detail .hero-banner .banner-wrap {
        display: grid;
        align-items: end;
        justify-items: center;
        height: 240px;
    }
    #news-room-detail .hero-banner .content-wrap h1 {
        font-size: 26px;
        max-width: 80%;
    }
    #news-room-detail .hero-banner .content-wrap p.top {
        margin-bottom: 35px;
    }
    #news-room-detail .hero-banner .content-wrap p {
        width: 90%;
    }

    #news-room-detail .tab-content h1 {
        max-width: 100%;
        margin: auto auto 20px auto;
    }
}