/* Front page: center logo and tagline with spacing using margin */
.ast-grid-section-center .ast-site-identity {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
/* Add space between logo and tagline */
.ast-grid-section-center .ast-site-identity > *:not(:first-child) {
    margin-top: 10px; /* adjust the value as needed */
}
/* Below Header background (header menu) */
.ast-below-header-bar {
  background-color: #ffffff !important;
  background-image: none !important;
		}
/* Titles & prices of Products in the Product List */
    .woocommerce ul.products li.product.tablet-align-left, .woocommerce-page ul.products li.product.tablet-align-left {
        text-align: center;
    }
/* Disable shadow for images in Astra */
.ast-article-single img {
    		box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0);
    		-webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0);
    		-moz-box-shadow: 0 0 30px 0 rgba(0,0,0,0);
		}
/* Adjust Image Size of Article Posts */
.ast-article-post .post-thumb-img-content img {
    object-fit: cover;
}