/*--------------------------------------------------------------
# Grid
--------------------------------------------------------------*/


.grid {
    margin: 0 auto;
}

/* clearfix */
.grid:after {
    content: '';
    display: block;
    clear: both;
}

.grid-sizer,
.grid-item {
    width: 33.3333%;
}


.grid-item {
    aspect-ratio: 1232 / 832;
    float: left;
    /* vertical gutter */
    background: #eee;
    overflow: hidden;
    margin-bottom: 0;
    box-sizing: border-box;
    position: relative;
}

.products.grid .grid-item:nth-of-type(2) {
    width: 66.66%;
}



.products.grid .grid-item a {
    display: block;
    height: 100%;
    line-height: 1;
    border: .1rem solid white;
}

.products.grid .grid-item a img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.woocommerce #page ul.products.grid {
    margin: 0 auto;
    padding-bottom: 0;
}

ul.products .grid-item .price {
    -webkit-font-smoothing: antialiased;
}

ul.products .grid-item .price,
ul.products .grid-item .product-title {
    display: block;
    opacity: 0;
    position: absolute;
    top: 20px;
    padding: 10px;
    color: #939598;
    font-family: 'Libre Baskerville', 'Baskerville', serif;
    font-size: 14px;
    font-style: italic;
}

ul.products .grid-item .product-title {
    top: 0;
    color: #58595B;
    font-family: 'san_fran_thin', sans-serif;
    font-size: 15px;
}


@media screen and (max-width: 480px) {
    .grid-item,
    .products.grid .grid-item:nth-of-type(2) {
        width: 100%;
        margin-bottom: 30px;
        overflow: visible;
        background: white;
    }
}
