.highlights {
    /* margin-top: 130px; */
    margin-top: 104px;
    /* margin-bottom: 130px; */
    margin-bottom: 104px;
}

.highlights__products {
    display: grid;
    grid-template-areas:
            "l rt"
            "l rb";
    height: 645px;
    gap: 12px;
}
.highlights__item {
    overflow: hidden;
    position: relative;
    transition: .3s;
    /* padding: 31px 45px; */
    padding: 24px 36px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.highlights__item:hover .highlights__item-background {
    transform: scale(1.1);
}

.highlights__item:first-child {
    grid-area: l;
}
.highlights__item:nth-child(2) {
    grid-area: rt;
}
.highlights__item:last-child {
    grid-area: rb;
}
.highlights__item-link {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}
.highlights__item-background {
    transition: .3s;
    position: relative;
    object-fit: cover;
    height: 100%;
    width: 100%;
    background: var(--light-gray);
}
.highlights__item-background-container {
    top: 0;
    left: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: -1;
}

.highlights__text {
    width: 70%;
    text-shadow: 0px 0px 2px var(--black-blue);
}
@media screen and (max-width: 1279px) {
    .highlights__products {
        /* height: 500px; */
        height: 400px;
    }
}
