1280/*
	* 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 .section-title {
margin: 0 0 10px;
}
.section-products {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.section-products.section-posts-large {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 800px) {
    .section-products.section-posts-large {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}
.section-products.section-posts-medium {
    gap: 30px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 800px) {
    .section-products.section-posts-medium {
        gap: 30px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 600px) {
    .section-products.section-posts-medium {
        gap: 20px;
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}
.section-products.section-posts-small{
    gap: 20px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
}
.single .entry-content .block-products {
    margin: 30px auto;
}
.single .entry-content .block-products .wrap {
    width: 100%;
}
.single .entry-conent .block-products .section-meta {
    margin: 0 0 15px;
}
.single .entry-content .block-products .section-products.section-posts-large {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 15px;
}

/*--------------------------------------------------------------
## Individual Products
--------------------------------------------------------------*/
.post-product {
    -webkit-box-shadow: 0 0 10px 0 rgba(60, 59, 58, .1);
    -moz-box-shadow: 0 0 10px 0 rgba(60,59,58, .1);
    box-shadow: 0 0 10px 0 rgba(60, 59, 58, .1);
    background: #ffffff;
    position: relative;
}
.post-product .abbr-content {
    padding: 30px;
}
.post-product .product-overprint {
    margin: 0 0 15px;
    font-size: .8rem;
}
.post-product h3.product-title {
    font-size: 28px;
    letter-spacing:-.03rem;
    line-height: 1.2;
    margin: 0 0 15px;
}
.post-product h3.product-title a, .post-product h3.product-title a:visited {
    color: #3C3B3A;
}
.post-product h3.product-title a:hover, .post-product h3.product-title a:visited:hover {
    color: #06727D;
}
.post-product .product-meta {
    line-height: 1.4;
    margin: 0 0 15px;
}
.section-posts-large .post-product .product-overprint {
    display: none;
}
.section-posts-medium .post-product h3.product-title {
    font-size: 24px;
}
.section-posts-medium .post-product .product-meta {
    margin: 0;
}
.section-posts-medium .post-product .product-overprint {
    display:none;
}
.section-posts-small .post-product .abbr-content {
    padding: 10px;
}
.section-posts-small .post-product .product-overprint {
    margin: 0 0 10px;
}
.section-posts-small .post-product h3.product-title {
    font-size: 20px;
    margin: 0;
}
.section-posts-small .post-product .product-meta {
    display:none;
}
.section-posts-small .post-product .read-more {
    display:none;
}
.single .section-posts-large .post-product {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.single .section-posts-large .post-product .product-img {
    width: 30%;
}
.single .section-posts-large .post-product .abbr-content {
    width: 70%;
    padding: 15px;
}
@media (max-width: 800px) {
    .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%;
    }
}
