/* ================================================
   HERO BANNER - Shared CSS
   Used across: Career, Location, Our Team, Blog, Newsroom
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500;600&display=swap');

/* Hero Banner Section */
.hero_banner {
    background-color: #0d2040;
    position: relative;
    overflow: hidden;
    padding: 9rem 3rem 7rem;
}

.hero_banner .container {
    max-width: 1200px;
    align-items: center;
    margin: 0 auto;
    padding-left: 0px;
    padding-right: 0px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

/* Left Content */

.hero_banner_label {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.64px;
    text-transform: uppercase;
    color: #A0C4D8;
    margin-top: 0;
    margin-bottom: 15px;
}

.hero_banner_label::before {
    content: '';
    display: block;
    width: 28px;
    height: 1.5px;
    background-color: #A0C4D8;
}

.hero_banner_heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: #ffffff;
    margin: 0;
}

.hero_banner_heading em {
    font-style: italic;
    font-weight: 700;
    color: #A8CCE0;
}

.hero_banner_divider {
    width: 47px;
    height: 2px;
    background-color: #C49030;
    margin: 25px 0 27px 0;
    border: none;
}

.hero_banner_desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    color: #979FAD;
    margin: 0;
}

/* Right Image */
.hero_banner_image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero_banner_image img {
    width: 100%;
    max-width: 100%;
    object-fit: cover;
    display: block;
}

/* Wave / Bottom curve */
.hero_banner_wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 80px;
    overflow: hidden;
    pointer-events: none;
}

.hero_banner_wave svg {
    display: block;
    height: 100%;
    width: 100%;
}

/* ================================================
   RESPONSIVE - Hero Banner
   ================================================ */

@media (max-width: 991px) {
    .hero_banner .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero_banner {
        padding: 7rem 1.5rem 5.5rem;
    }

}

@media (max-width: 767px) {

    .hero_banner_desc {
        font-size: 16px;
        line-height: 24px;
    }

}

@media (max-width: 575px) {
    .hero_banner_divider {
        margin: 20px 0 22px 0;
    }
}