/* ===================================
   Block: Banner
   =================================== */
#dd-banner {
    float: left;
    width: 100%;
    padding: 55px;
    box-sizing: border-box;
}

.banner-inner {
    width: 100%;
    min-height: 550px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
}

/* White content box — bottom left */
.banner-content {
    background-color: var(--txt-light);
    padding: 60px 60px 60px 0;
    width: 38%;
    max-width: 435px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.banner-cta {
    width: 245px;
}

.banner-title {
    font-size: 38px;
    font-weight: 500;
    line-height: 54px;
    color: var(--main);
    margin: 0;
}

.banner-text {
    font-size: 16px;
    font-weight: 300;
    line-height: 28px;
    color: var(--main);
    margin: 0;
}

/* ===================================
   Responsive
   =================================== */
@media screen and (max-width: 1400px) {
    .banner-content {
        width: 45%;
    }

    .banner-title {
        font-size: 32px;
        line-height: 46px;
    }
}

@media screen and (max-width: 1199px) {
    .banner-inner {
        min-height: 450px;
    }

    .banner-content {
        width: 55%;
    }

    .banner-title {
        font-size: 28px;
        line-height: 40px;
    }
}

@media screen and (max-width: 991px) {
    #dd-banner {
        padding: 30px;
    }

    .banner-inner {
        min-height: 380px;
    }

    .banner-content {
        width: 70%;
        padding: 40px 40px 40px 0;
        gap: 16px;
    }
}

@media screen and (max-width: 767px) {
    #dd-banner {
        padding: 20px;
    }

    .banner-inner {
        min-height: 320px;
    }

    .banner-content {
        width: 100%;
        padding: 30px 30px 30px 0;
    }

    .banner-title {
        font-size: 24px;
        line-height: 34px;
    }
}
