.products-of-the-month {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0px 6px 30px 0px rgba(0, 0, 0, 0.05);
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 40px;
    align-items: center;
    text-decoration: none;
    color: var(--color-primary);
    transition: .2s ease;
}

.products-of-the-month:hover {
    box-shadow: 0px 6px 50px 0px rgba(0, 0, 0, 0.1);
}

.products-of-the-month__left {
    grid-column: span 4;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.products-of-the-month__right {
    grid-column: span 8;
}

.products-of-the-month__bottom {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.products-of-the-month__bottom a.button.button-full {
    margin-top: 10px;
}

img.products-of-the-month__banner {
    height: 350px;
    object-fit: cover;
    border-radius: var(--border-radius-small);
}

h2.products-of-the-month__heading {
    font-size: 30px;
}

span.products-of-the-month__meta {
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 12px;
}

@media (max-width:1024px) {
    .products-of-the-month {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .products-of-the-month__left {
        order: 2;
        grid-column: span 1;
    }

    .products-of-the-month__right {
        grid-column: span 1;
    }
}

@media (max-width:767px) {
    .products-of-the-month {
        padding: 20px 20px 30px 20px;
    }

    img.products-of-the-month__banner {
        height: 250px;
    }

    .products-of-the-month__top {
        margin-bottom: 15px;
    }
}

@media (max-width:390px) {
    img.products-of-the-month__banner {
        height: 150px;
    }
}