.image-buttons__headlines {
    padding-bottom: 7px;
}

.image-buttons__headlines h2 {
    padding-bottom: 0;
}

.image-button-item {
    margin-top: 33px;
}

.image-button {
    position: relative;
    display: block;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 40px;
    box-shadow: 0px 0px 16px 4px rgba(32, 56, 100, 0.16);
    text-decoration: none;
}

.image-button__img {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.image-button__hover:after {
    content: '';
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    border-radius: 40px;
    background: linear-gradient(0deg, #0A1831 0%, rgba(10, 24, 49, 0.75) 43.23%, rgba(10, 24, 49, 0.00) 100%);
}

.image-button__hover {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 0 24px 24px 24px;
    color: var(--color-white);
}

.image-button__title,
.image-button__hidden {
    position: relative;
    z-index: 3;
}

.image-button__description,
.image-button__cta {
    display: block;
}

.image-button__title {
    padding-bottom: 12px;
    color: var(--color-white);
    font-size: 18px;
}

.image-button__cta {
    color: var(--color-tertiary);
}

.image-button__description {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.625em;
}

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

    .image-button__hover {
        padding: 0 32px 32px 32px;
    }

    .image-button__title {
        font-size: 24px;
    }
}

@media (min-width: 1024px) {
    .image-button__hover {
        padding: 16px 32px;
        height: 100%;
    }

    .image-button__description {
        margin-top: 0;
    }
}

@media (min-width: 1200px) {
    .image-buttons__headlines {
        padding-bottom: 75px;
    }
    
    .image-button-item {
        margin-top: 0;
    }

    .image-button {
        height: 532px;
    }

    .image-button__hover:after {
        height: 532px;
    }

    .image-button__title {
        padding-bottom: 0;
        margin-bottom: 20px;
        transition: margin 0.3s ease-in-out;
    }

    .image-button__hover {
        z-index: 2;
        bottom: 0;
        color: var(--color-white);
        padding: 0 41px 18px 32px;
        height: auto;
        transform: translateY(84%);
        transition: transform 0.3s ease-in-out;
    }

    .image-button__hidden {
        margin-bottom: 0;
        transition: margin 0.3s ease-in-out;
    }

    .image-button:hover .image-button__hover {
        padding-bottom: 32px;
        transform: translateY(0)
    }

    .image-button:hover .image-button__hidden {
        margin-bottom: 0;
    }

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

    .image-button__cta:hover {
        color: var(--color-tertiary);
        text-decoration: none;
    }

    .image-button__hover {
        z-index: 3;
    }

    .image-button .image-button__hover:after {
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
    }

    .image-button--link:before,
    .image-button--link:after {
        content: "";
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 532px;
        opacity: 0;
        background: linear-gradient(0deg, #0A1831 0%, rgba(10, 24, 49, 0.85) 43.23%, rgba(10, 24, 49, 0.75) 100%);
        transition: opacity 0.3s ease-in-out;
        z-index: 2;
    }

    .image-button--link:after {
        opacity: 1;
        background: linear-gradient(0deg, #0A1831 0%, rgba(10, 24, 49, 0.75) 43.23%, rgba(10, 24, 49, 0.00) 100%);
    }

    .image-button:hover:before {
        opacity: 1;
    }

    .image-button:hover:after {
        opacity: 0;
    }

    .image-buttons__wrapper {
        gap: 32px 0;
    }
}

@media (min-width: 1200px) {
    .page-id-2421 .image-button {
        height: 250px;
    }

    .page-id-2421 .image-button__hover {
        transform: none;
    }

    .page-id-2421 .image-button--link:before,
    .page-id-2421 .image-button--link:after {
        height: 100%;
    }
}