/* ============================================
   BLOG PAGE - blog.css
   ============================================ */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.blog-card {
    display: flex;
    flex-direction: column;
}

.blog-image {
    margin-bottom: 20px;
}

.blog-image img {
    width: 100%;
    display: block;
}

.blog-content h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: rgb(10, 0, 0);
    margin-bottom: 8px;
    line-height: 1.3;
}

.blog-content h3 a {
    color: rgb(10, 0, 0);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-content h3 a:hover {
    color: #ed1c24;
}

.blog-meta {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #666666;
    margin-bottom: 12px;
}

.blog-content p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: rgb(10, 0, 0);
    line-height: 1.7;
    margin-bottom: 12px;
}

.read-more {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #ed1c24;
    text-decoration: none;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #5a140a;
}

/* Responsive */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}
