.image-button__info h4 {
    margin: 0 0 10px;
    padding: 0;
    font-size: 18px;
    font-weight: 500;
    color: var(--color-secondary-dark);
    line-height: 1.4em;
}

.image-button__info p {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    line-height: 1.5em;
}

.image-button__image {
    width: 100%;
    height: 140px;
    position: relative;
}

.image-button-item {
    margin-bottom: 32px;
}

.image-button__description {
    padding: 20px 25px 66px;
}

.image-button--link {
    display: block;
    background: #fff;
    box-shadow: 0 4px 16px rgba(9,10,10,0.16);
    position: relative;
}

.image-button__info .btn {
    position: absolute;
    left: 25px;
    bottom: 30px;
    border-bottom: none;
}

.image-buttons-top-content {
    margin-bottom: 45px;
}

.image-button-list {
    margin-bottom: -32px;
}



@media(min-width: 768px) {
    .image-button {
        display: flex;
    }

    .image-button__image {
        width: 290px;
        height: auto;
    }

    .image-button__info {
        width: calc(100% - 290px);
        padding: 30px 26px 68px;
        position: relative;
    }

    .image-button__description {
        padding: 0;
    }
    
    .image-button__info h4 {
        font-size: 20px;
    }
}


@media(min-width: 1200px) {
    .image-button {
        display: block;
        height: 100%;
    }

    .image-button__image {
        width: 100%;
        height: auto;
    }

    .image-button__info {
        width: 100%;
        padding: 0;
        position: unset;
    }

    .image-button__description {
        padding: 24px 25px 65px;
    }

    .image-button--link:hover {
        background: #fff;
        box-shadow: 0 4px 16px rgba(205,164,76,0.50);
    }

    .image-button--link:hover::before {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 6px;
        background: linear-gradient(to right, #d6d182 0%, #a29e52 50%, #7d7b51 100%);
    }

    .image-button--link:hover .image-button__image::before {
        content: "";
        position: absolute;
        left: 10px;
        top: 10px;
        width: calc(100% - 20px);
        height: calc(100% - 20px);
        border: 2px solid var(--color-grey);
    }

    .image-buttons-top-content {
        margin-bottom: 53px;
    }
}