.home-page {margin-bottom: 16rem;}
@media only screen and (min-width: 1024px) {
    .home-page {margin-bottom: 18rem;}
}

/* 
LANDING
*/
.home-landing {
    position: relative;
    height: calc(var(--vh) * 100);
    transition: height 100ms;
}

/* Figure */
.home-landing-figure {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: black;
    transition: opacity 1000ms ease-in-out;
}
.home-landing-figure * {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .8;
}

/* Text */
.home-landing-title {
    position: absolute;
    right: .75rem;
    bottom: .75rem;
    left: .75rem;
    z-index: 10;
}


/* 
PRODUCTS
*/
.home-products .product-block {grid-column: span 3;}
.home-products .product-block:nth-child(5n+5) {grid-column: 1/-1;}
@media only screen and (min-width: 768px) {
    .home-products .product-block,
    .home-products .product-block:nth-child(5n+5) {
        grid-column: span 4;
    }
}