.image-text-cards-list {
    padding: 0 22px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.image-text-card__link {
    display: block;
    position: relative;
    border-radius: 7px;
    z-index: 1;
    overflow: hidden;
    height: 132px;
    border-bottom: none;
}

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

}

.image-text-card__link__overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 86.06%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0 0 18px 0;
    transition: all ease 0.3s;

}

.image-text-card__link__overlay button {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.20em;
    text-transform: uppercase;
    margin: 0 auto;
    background: none;
    position: relative;
    padding: 0 21px 0 0;
    border: none;
}

.image-text-card__link__overlay button:after {
    content: "\e90b";
    position: absolute;
    font-family: 'cabinet-systems-icon';
    right: -5px;
    top: 50%;
    transform: translate(0, -50%);
    font-size: 12px;
    font-weight: normal;
}

.image-text-cards__heading {
    margin: 0 0 16px;
}


@media(min-width: 768px) {
    .image-text-cards-list {
        padding: 0;
        flex-direction: row;
        gap: 34px;
    }

    .image-text-card {
        width: calc(50% - 17px);
    }

    .image-text-card__link {
        height: 300px;
    }

    .image-text-card__link__overlay {
        padding: 0 0 24px 0;
        height: 159px;
    }

    .image-text-card:first-child .image-text-card__link {
        border-radius: 0 7px 7px 0;
    }
    

    .image-text-card:last-child .image-text-card__link {
        border-radius: 7px 0 0 7px;
    }

    .image-text-cards__heading {
        margin: 0 0 30px;
    }

    .image-text-card__link__overlay button {
        font-size: 18px;
    }

    .image-text-card__link:hover button {
        color: var(--secondary);
    }

    .image-text-cards__heading__title .sub-heading {
        margin-bottom: 10px;
    }
}


@media(min-width: 1200px) {
    .image-text-cards__heading {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        margin: 0 0 70px;
    }

    .image-text-cards__heading__title {
        width: calc(50% - 17px);
    }

    .image-text-cards__heading__description {
        width: calc(50% - 17px);
    }

    .image-text-cards__heading__title h2:last-child {
        margin: 0;
    }

    .image-text-cards__heading__title h2 {
        line-height: 1.35em;
    }

    .image-text-card__link {
        height: 437px;
    }

    .image-text-card__link__overlay button {
        font-size: 22px;
        padding: 0 23px 0 0;
    }

    .image-text-card__link__overlay {
        padding: 0 0 42px 0;
        height: 215px;
    }

    .image-text-card__link__overlay button:after {
        font-size: 15px;
    }

    .image-text-card__link:hover .image-text-card__link__overlay {
        height: 100%;
    }
}