/* ── SERVICE BANNER ── */
.service-hero {
    background: #000000;
    padding: 24px 0 40px;
}

.service-hero__inner {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* IMAGE BLOCK – top on mobile */
.service-hero__visual {
    order: 0;
    width: 100%;
    margin-bottom: 12px;
    position: relative;
}

.service-hero__img-wrap {
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.service-hero__img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-height: 590px;
}

/* CONTENT BLOCK */
.service-hero__content {
    order: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* HEADING */
.service-hero__title {
    color: var(--white);
    margin-top: 0;
    margin-bottom: 0;
}

/* TAGS */
.service-hero__tags {
    margin: 0;
}

/* DESCRIPTION */
.service-hero__desc {
    color: var(--white);
}

.service-hero__desc strong, .service-hero__desc b {
    color: var(--white);
}

.service-hero__desc.text ul li::before{
    content: url("/assets/images/modules/page-service/banner-checkbox.svg");
    position: relative;
    bottom: -5px;
}

.service-hero__desc.text ul li{
    font-size: 16px;
    line-height: 150%;
}

/* ── TABLET 768px ── */
@media (min-width: 768px) {
    .service-hero {
        padding: 80px 0 150px;
    }

    .service-hero__title {
        margin-top: 20px;
    }

    .service-hero__desc {
        font-size: 15px;
        max-width: 560px;
    }

    .service-hero__content{}
}

/* ── DESKTOP 1024px ── */
@media (min-width: 1024px) {
    .service-hero {
        padding: 0;
        display: flex;
        align-items: stretch;
        overflow: hidden;
    }

    .service-hero .container{
        height: -webkit-fill-available;
        margin: 0 auto;
        width: 100%;
    }

    .service-hero__inner {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        gap: 48px;
        height: -webkit-fill-available;
    }

    .service-hero__content {
        order: 0;
        flex: 0 0 560px;
        max-width: 560px;
        gap: 32px;
        margin-top: 98px;
        margin-bottom: 200px;
    }

    .service-hero__title{
        margin-top: 0;
    }

    .service-hero__tags{
        padding-bottom: 22px;
    }

    .service-hero__desc.text ul li{
        font-size: 20px;
    }

    .service-hero__visual {
        order: 1;
        flex: 1 1 0;
        margin-bottom: 0;
        min-width: 0;
        margin-right: calc(50px - clamp(0px, (100vw - 1204px) / 2, 358px));
        position: relative;
    }

    .service-hero__title {
        line-height: 1.1;
    }

    .service-hero__desc {
        font-size: 14px;
        max-width: 100%;
        padding-bottom: 22px;
    }

    .service-hero__visual-700x600{
        margin-top: 80px;
    }

    .service-hero__visual-700x600 .service-hero__img-wrap{
        max-width: 860px;
        max-height: 716px;
        margin-top: 65px;
        margin-bottom: 125px;
    }

    /*910x780*/
    .service-hero__visual-910x780{
        margin-top: 50px;
    }
    .service-hero__visual-910x780 .service-hero__img-wrap{
        max-width: 910px;
        max-height: 780px;
    }

    .service-hero__visual-910x780 .service-hero__img-wrap img{
        max-height: 780px;
    }

    /* 1000x970 */
    .service-hero__visual-1000x970 .service-hero__img-wrap{
        max-width: 1000px;
        max-height: 910px;
        margin-top: -50px;
    }

    .service-hero__visual-1000x970 .service-hero__img-wrap img{
        max-height: 910px;
    }

    .service-hero:has(.service-hero__visual-1000x970){
        padding-top: 0;
        padding-bottom: 0;
    }

    /* 1055x962 */
    .service-hero__visual-1055x962 .service-hero__img-wrap{
        max-width: 1000px;
        max-height: 910px;
        margin: 0;
    }

    .service-hero__visual-1055x962 .service-hero__img-wrap img{
        max-height: 910px;
    }

    .service-hero:has(.service-hero__visual-1055x962){
        padding-top: 0;
        padding-bottom: 0;
    }

    .service-hero__visual-1055x962{
        height: -webkit-fill-available;
        display: flex;
        align-items: flex-end;
        justify-content: flex-end;
    }


    .service-hero .button.button-primary{
        width: fit-content;
    }

    .service-hero__img-wrap img {
        max-height: 714px;
    }
}
