/**
 * Theme Name: kadence child
 * Template:   kadence
 * ...other header fields
 */
section#block-12 figure {
    margin-left: 0;
}

.header-account img {
	width: 20px;
}
section#block-15 {
    max-width: 350px;
}
.newsletter-form {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto;
}
.woocommerce ul.products li.product a img {
	aspect-ratio: 1/1;
	    object-fit: cover;
}
.newsletter-input {
    flex: 1;
}

.newsletter-input input[type="email"] {
    width: 100%;
    height: 54px;
    padding: 0 20px;
    border: 1px solid #d9d9d9;
    border-radius: 50px;
    font-size: 16px;
    outline: none;
    transition: all .3s ease;
    background: #fff;
}

.newsletter-input input[type="email"]:focus {
    border-color: #0d8b73;
    box-shadow: 0 0 0 3px rgba(13,139,115,.15);
}

.newsletter-btn input[type="submit"] {
    height: 54px;
    padding: 0 32px;
    border: none;
    border-radius: 50px;
    background: #0d8b73;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.newsletter-btn input[type="submit"]:hover {
    background: #076b59;
}
/* blogs css home */
.featured-blogs{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
    margin:40px 0;
}

.featured-blog-card{
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.featured-blog-card:hover{
    transform:translateY(-5px);
}

.featured-blog-image img{
    width:100%;
    height:230px;
    object-fit:cover;
    display:block;
}

.featured-blog-content{
    padding:20px;
}

.blog-date{
    color:#888;
    font-size:14px;
}

.featured-blog-content h3{
    margin:12px 0;
    font-size:22px;
}

.featured-blog-content h3 a{
    text-decoration:none;
    color:#222;
}

.featured-blog-content p{
    color:#666;
    line-height:1.7;
}

.read-more{
    display:inline-block;
    margin-top:15px;
    color:#2a7de1;
    text-decoration:none;
    font-weight:600;
}

@media(max-width: 767px) {
	.woocommerce ul.products {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}
	header .site-container {
		padding: 10px !important;
	}
    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-input,
    .newsletter-btn {
        width: 100%;
    }

    .newsletter-btn input[type="submit"] {
        width: 100%;
    }
}
@media(max-width: 991px) {
	section#block-15 {
		max-width: 100%;
	}
}