/*
	* CSS for Products & Product Blocks
	*
	* @package      sixsistersstuff
	* @author       Lindsay Humes
	* @since        1.0.0
	* @license      GPL-2.0+
*/
.post-type-archive-product .archive-content {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
}
.post-type-archive-product .archive-content .product-meta, .post-type-archive-product .archive-content .callout-button {
    display: none;
}
.post-type-archive-product .archive-content .post-product .abbr-content {
    padding: 10px;
}
.post-type-archive-product .archive-content .post-product .product-overprint {
    margin: 0 0 5px;
}
.post-type-archive-product .archive-content .post-product .product-title {
    font-size: 18px;
    margin: 0;
}
/*--------------------------------------------------------------
## Block: Products
--------------------------------------------------------------*/
.block-products {
    margin: 40px auto;
}
.block-products .wrap {
        border: 2px solid #f5f5f5;
    padding: 20px;
}
.block-products .section-title {
margin: 0 0 10px;
}
.section-products {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.section-products.section-posts-large {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
/*--------------------------------------------------------------
## Individual Products
--------------------------------------------------------------*/
.post-product .abbr-content {
    padding: 20px;
}
.post-product .product-overprint {
    margin: 0 0 10px;
}
.post-product .product-title {
    margin: 0 0 10px;
    width: 100%!important;
    line-height: 1.2;
}
.post-product .product-meta {
    line-height: 1.4;
    margin: 0 0 10px;
}
.post-product .callout-button {
    display: block;
    margin: 0;
    padding: 10px;
    color: #FFFFFF;
    background: #3C3B3A;
    width: fit-content;
}
.post-product .callout-button .sm-caps {
    display: block;
}
.post-product .callout-button:hover {
    background: #06727D;
}
/*--------------------------------------------------------------
## LARGE
--------------------------------------------------------------*/
.single .section-products.section-posts-large {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (max-width: 800px) {
   .section-products.section-posts-large {
    grid-template-columns: repeat(2, minmax(0, 1fr)); 
    }
}
@media (max-width: 600px) {
   .section-products.section-posts-large {
    grid-template-columns: repeat(1, minmax(0, 1fr)); 
    }
}
.single .section-posts-large .post-product {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.single .section-posts-large .post-product .product-img {
    width: 50%;
}
.single .section-posts-large .post-product .abbr-content {
    width: 50%;
}
@media (max-width: 600px) {
    .single .section-posts-large .post-product {
        display: block;
    }
    .single .section-posts-large .post-product .product-img {
        width: 100%;
    }
    .single .section-posts-large .post-product .abbr-content {
        width: 100%;
    }
}
/*--------------------------------------------------------------
## SMALL
--------------------------------------------------------------*/
.section-products.section-posts-small {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}
.single .section-products.section-posts-small {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 900px) {
   .section-products.section-posts-small, .single .section-products.section-posts-small {
    grid-template-columns: repeat(3, minmax(0, 1fr)); 
    }
}
@media (max-width: 600px) {
   .section-products.section-posts-small, .single .section-products.section-posts-small {
    grid-template-columns: repeat(2, minmax(0, 1fr)); 
    }
}
.section-posts-small .post-product .abbr-content {
    padding: 10px;
}
.section-posts-small .product-overprint {
    margin: 0 0 5px;
}
.section-posts-small .post-product .product-title {
    font-size: 18px;
    margin: 0;
}
.section-posts-small .post-product .product-meta {
    display: none;
}
.section-posts-small .post-product .callout-button {
    display:none;
}
/*--------------------------------------------------------------
## MEDIUM
--------------------------------------------------------------*/
.single .section-products.section-posts-medium {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 800px) {
   .section-products.section-posts-medium, .single .section-products.section-posts-medium {
    grid-template-columns: repeat(2, minmax(0, 1fr)); 
    }
}
@media (max-width: 600px) {
   .section-products.section-posts-medium, .single .section-products.section-posts-medium{
    grid-template-columns: repeat(1, minmax(0, 1fr)); 
    }
}
.section-posts-medium .post-product .product-overprint {
    display: none;
}
.section-posts-medium .post-product .callout-button {
    display:none;
}
