.categories {
    display: grid;
    grid-gap: 15px;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    margin-top: 30px;
}

.category__item {
    position: relative;
    height: 100%;
    min-height: 235px;
    background-color: white;
    overflow: hidden;
}

.category__item:hover {
    box-shadow: 0 0 12px rgb(0 0 0 / 14%);
    transition: all 0.2s linear 0s;
    z-index: 2;
}

.category__item img {
    position: absolute;
    right: -45px;
    width: calc(27% + 160px);
    height: 100%;
    object-fit: contain;
}

.category__title {
    box-sizing: border-box;
    position: relative;
    z-index: 2;
    width: 100%;
    font-family: Gotham Pro Bold;
    font-size: 16px;
    color: #2D2D2D;
}

.category__item a {
    display: block;
}

.category__link:not(.category:last-child .category__link) {
    height: 100%;
    padding: 20px;
}

.category__link:hover img {
    transform: scale(1.05);
    transition: all 0.2s linear 0s;
}

.category__links {
    position: relative;
    z-index: 2;
    display: block;
    max-width: 50%;
    margin-top: 30px;
}

.category__links a {
    width: fit-content;
    margin-bottom: 10px;
    color: #666;
    font-size: 13px;
}

.category__links .see-all {
    color: #2b9acf;
}

@media (min-width: 625px) {
    .category__item {
        min-height: 300px;
    }

    .category:last-child {
        grid-column: 1 / span 2;
    }
}

.category:last-child .category__item {
    min-height: auto;
    max-height: 97%;
}

.category:last-child .category__item img {
    position: static;
    width: 100%;
}

.category:last-child .category__item .category__title {
    display: none;
}