.custom-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
    padding: 20px;
}


.custom-blog-card {
    background: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: box-shadow 0.2s ease;
}

.custom-blog-card:hover {
    box-shadow: 0 0 15px rgba(0,0,0,0.15);
}

.custom-blog-card .thumb img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 15px;
}

.custom-blog-card .title {
    font-size: 20px;
    margin: 10px 0;
}

.custom-blog-card .excerpt {
    flex-grow: 1;
    margin-bottom: 15px;
    color: #555;
}

.custom-blog-card .read-more {
    padding: 10px 16px;
    text-align: center;
    font-size: 16px!important;
}

#load-more-posts {
    display: block;
    margin: 40px auto;
    padding: 12px 24px;
    font-size: 1.5rem;
    background: #222;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease;
    width: 20%;
}

#load-more-posts:hover {
    background: #444;
}

@media screen and (max-width:991px){
#load-more-posts {
    width: 100%;
}
}