.blog-section{
            max-width: 1240px;
        }
        .custom-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    background-color: #e2dfdf;
    box-shadow: 0 5px 20px rgba(139, 138, 138, 0.08);
    transition: 0.3s ease;
    /* text-align: center; */
    border: 2px solid #b5b5b5;
    transition: 0.3s ease;
}

.blog-card:hover {
    /* transform: translateY(-10px); */
    background-color: #ffffff;
    border: 2px solid #0078d4;
}
.blog-card img {
    width: 100%;
	height:200px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.blog-card h3 {
    margin-bottom: 10px;
    margin-top: 10px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2em;
}

.blog-card p {
    margin-bottom: 15px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
}

.blog-btn {
    display: inline-block;
    padding: 5px 20px;
    background: #0078d4;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s ease;
    font-family: Arial, Helvetica, sans-serif;

}

.blog-btn:hover {
    background: #0078d4b7;
}

/* Tablet */
@media (max-width: 980px) {
    .custom-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 767px) {
    .custom-blog-grid {
        grid-template-columns: 1fr;
    }
}

.publish-date{
    margin: 0;
    color: #6a6868;
    font-size: 14px;
}