.custom-blog-layout{
    max-width:1200px;
    margin:auto;
    padding:40px 20px;
}
.blog-filters{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:40px;
}

.blog-filters a{
    padding:10px 18px;
    border:1px solid #ddd;
    border-radius:30px;
    text-decoration:none;
    color:#333;
}

.blog-filters a.active{
    background:#222;
    color:#fff;
}

.featured-post{
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:40px;
    align-items:center;
    margin-bottom:60px;
}

.featured-image img{
    width:100%;
    object-fit:cover;
    border-radius:12px;
}

.featured-content h2{
    font-size:42px;
    line-height:1.2;
    margin:15px 0;
}

.featured-content p{
    color:#666;
    margin-bottom:20px;
}

.read-more{
    text-decoration:none;
    font-weight:600;
}

.latest-title{
    font-size:30px;
    margin-bottom:30px;
}

.blog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.blog-card{
    background:#fff;
}

.blog-thumb img{
    width:100%;
    height:240px;
    object-fit:cover;
    border-radius:10px;
}

.blog-content{
    padding-top:15px;
}

.blog-cat{
    font-size:11px;
    text-transform:uppercase;
    margin-bottom:10px;
    color:#888;
}

.blog-content h4{
    font-size:22px;
    line-height:1.3;
    margin-bottom:10px;
}

.blog-content h4 a{
    text-decoration:none;
    color:#111;
}
.post-category {
    display: flex;
    gap: 20px;
    align-items: center;
}
.post-meta{
    font-size:13px;
    color:#8c867a;
    font-weight: 600;
}
button.blog-filter {
    border-color: #e7e1cb !important;
    border-radius: 30px;
    color: #1a1813;
    font-weight: 700;
    padding: 13px 26px;
}
.blog-filters {
    border-bottom: 2px solid #e7e1cb;
    padding-bottom: 40px;
	  margin-bottom:60px;
}
button.blog-filter:hover{
	 background: #2a2218 !important;
    color: #fff;
}
button.blog-filter.active {
    background: #2a2218 !important;
    color: #fff;
}
.post-category a {
    background: #dce6c9;
    padding: 10px 15px;
    border-radius: 30px;
    font-size: 12px;
    color: #1a1813;
    font-weight: 700;
	letter-spacing:1px;
}
@media(max-width:768px){

    .featured-post{
        grid-template-columns:1fr;
    }

    .blog-grid{
        grid-template-columns:1fr;
    }

    .featured-content h2{
        font-size:32px;
    }
}