.half-and-half + .image-buttons {
    padding-top: var(--section-margins);
}

.image-buttons:has(+ .bg-white) {
    padding-bottom: 0;
}

.image-buttons__headlines {
    margin-bottom: 25px;
}

.image-button-flex {
    justify-content: center;
    row-gap: 20px;
}

.image-button {
    display: block;
    position: relative;
    height: 145px;
}

.image-button::after {
    content: '';
    position: absolute;
    background: linear-gradient(180deg, rgba(23, 61, 99, 0.45) 0%, rgba(23, 61, 99, 0.95) 100%);
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
}

.image-button__details {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 0 25px;
}

.image-button__title {
    color: #fff;
    color: #F5F5F5;
    font-size: 1.5625rem;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 5px;
}

.image-button__details .btn-tertiary {
    color: var(--white);
    font-size: 1.125rem;
}

.image-buttons__bttns {
    margin-top: 25px;
}

.js-image-button {
    margin-bottom: 90px;
}

.js-image-button button.slick-arrow {
    bottom: -66px;
}

@media (min-width: 768px) {
    .image-buttons__headlines {
        margin-bottom: 30px;
    }

    .image-button-flex {
        row-gap: 30px;
    }

    .image-button {
        height: 215px;
    }

    .image-button::after {
        background: linear-gradient(180deg, rgba(23, 61, 99, 0.0) 0%, rgba(23, 61, 99, 0.95) 100%);
    }

    .image-button__details {
        height: auto;
        padding: 25px 27px;
    }

    .image-button__title {
        font-size: 1.75rem;
    }

    .image-buttons__bttns {
        margin-top: 30px;
    }
    .image-button-item {
        padding-left: 15px;
        padding-right: 15px;
    }
}


@media (min-width: 1200px) {

    .image-buttons:has(+ .bg-white) {
        padding-bottom: var(--section-margins);
    }

    .image-button-flex {
        row-gap: 32px;
    }

    .image-button {
        height: 292px;
    }

    .image-buttons__bttns {
        margin-top: 35px;
    }

    .image-button__title {
        margin-bottom: 0;
    }

    .image-button__hover {
        max-height: 0;
        overflow: hidden;
        transition: all 1s;
    }

    .image-button:hover::after {
        background: linear-gradient(180deg, rgba(23, 61, 99, 0.75) 0%, rgba(23, 61, 99, 0.95) 100%);
    }

    .image-button:hover .image-button__details {
        height: 100%;
    }

    .image-button:hover .image-button__hover {
        max-height: 292px;
    }

    .image-button__hover p {
        color: #f5f5f5;
        font-weight: normal;
        font-size: 1.125rem;
        line-height: 1.5em;
        margin-bottom: 10px;
        margin-top: 3px;
    }
}