/* =========================================================
   MSB HR Banner
   ========================================================= */
.msb-hr-banner {
    margin: 0 auto;
    padding: 0 24px;
    z-index: 10;
    position: relative;
}

/* Section title */
.msb-hr-banner__title {
    font-size: 26px;
    font-weight: 700;
    color: #091E42;
    margin: 0 0 24px;
}

/* Banner card */
.msb-hr-banner__card {
    position: relative;
    overflow: hidden;
}

.msb-hr-banner__img {
    display: block;
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    transform: translateY(-20%);
}

/* Text overlay */
.msb-hr-banner__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    padding: 80px 60px;
}

.msb-hr-banner__overlay--left {
    justify-content: flex-start;
    text-align: left;
}

.msb-hr-banner__overlay--center {
    justify-content: center;
    text-align: center;
}

.msb-hr-banner__overlay--right {
    justify-content: flex-end;
    text-align: left;
}

/* Text block */
.msb-hr-banner__text {
    display: flex;
    flex-direction: column;
    flex: 1;
    max-width: 50%;
}

.msb-hr-banner__line {
    display: block;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3;
    flex: 1;
    min-width: 50%;
}

.msb-hr-banner__highlight {
    color: #FFC21B;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 991px) {
    .msb-hr-banner__line {
        font-size: 36px;
    }

    .msb-hr-banner__overlay {
        padding: 32px 40px;
    }
}

@media (max-width: 767px) {
    .msb-hr-banner {
        padding: 0 16px;
    }

    .msb-hr-banner__title {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .msb-hr-banner__line {
        font-size: 24px;
    }

    .msb-hr-banner__overlay {
        padding: 20px 24px;
    }

    .msb-hr-banner__text {
        display: none;
    }
}
