/* Blog Section */
.blog-section {
    max-width: 1300px;
    margin: 0 auto;
    padding: 80px 40px;
}

.blog-section .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
}

.blog-section .section-tag::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #3675ff;
    border-radius: 2px;
}

.blog-section h2 {
    font-size: 42px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 60px;
    color: #000000;
    max-width: 600px;
}

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

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    display: block;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.blog-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #e5e7eb;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 24px;
}

.blog-category {
    display: inline-block;
    color: #3675ff;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 12px;
    text-transform: capitalize;
}

.blog-card h3 {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    color: #000000;
}

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

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

    .blog-section h2 {
        font-size: 32px;
        margin-bottom: 40px;
        line-height: 1.25;
    }

    .blog-content {
        padding: 20px;
        /* Reduced padding for compactness */
    }

    .blog-card h3 {
        font-size: 18px;
        /* Smaller font size */
    }

    .blog-image {
        aspect-ratio: 16 / 9;
        /* Shorter image (widescreen) to save vertical space */
    }
}