.blog-section {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Grid layout */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 30px;
}

/* Blog card */
.blog-card {
    padding: 20px;
    border-radius: 8px;
    overflow: hidden;
}

/* Blog image */
.blog-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 15px;
}

/* Blog content */
.blog-content h3 {
    margin-bottom: 10px;
}

.blog-meta {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 12px;
}

.blog-summary {
    font-size: 16px;
    margin-bottom: 15px;
}

/* Read More link */
.blog-readmore {
    color: #b30000;
    font-weight: bold;
    text-decoration: none;
}

.blog-readmore:hover {
    text-decoration: underline;
}

.blog-video {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 15px;
    display: block;
}
