.image-buttons__headlines {
    color: #5D5D5D;
}

.bg-dark-blue .image-buttons__headlines {
    color: var(--white);
}

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

.image-button {
    position: relative;
    display: block;
    border-radius: 15px;
    overflow: hidden;
    width: 292px;
    height: 266px;
    margin: 0 auto;
}

.image-button::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(4, 36, 82, 0.00) 42.08%, var(--dark-blue) 114.91%);
}

.image-button__hover {
    z-index: 1;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    padding: 20px 25px;
}

.image-button__title {
    margin: 0;
    color: #fff;
    font-size: 22px;
    line-height: normal;
    position: relative;
}

.image-buttons__bttn {
    margin-top: 30px;
}

@media (min-width: 768px) {
    .image-button-item {
        margin-top: 32px;
    }

    .image-button {
        width: 100%;
        height: 265px;
        margin: 0;
    }
}

@media (min-width: 1200px) {
    .image-buttons .image-button-flex {
        justify-content: center;
    }
    
    .image-button.has-link:hover::after {
        background: linear-gradient(180deg, rgba(4, 36, 82, 0.00) -23.96%, var(--dark-blue) 114.91%);
    }

    .image-button__title::after {
        content: '\e913';
        font-family: 'hales-icon';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translate(0, -50%);
        width: 21px;
        height: 21px;
        color: #fff;
        font-weight: normal;
        font-size: 11px;
        line-height: 1em;
        background: #042452;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
    }

    .image-button.has-link:hover .image-button__title::after {
        opacity: 1;
    }

    .image-button.no-link {
        cursor: default;
    }
}