.blog-section {
    padding: 60px 20px;
    background: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.blog-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
}

.blog-category {
    display: inline-block;
    background: var(--lime);
    color: var(--graphite);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
}

.blog-card h2 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--navy);
}

.blog-excerpt {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: var(--text-gray);
}

.blog-meta i {
    margin-right: 5px;
}

.blog-modal {
    max-width: 900px;
    padding: 50px;
}

.blog-article h1 {
    font-size: 36px;
    margin: 15px 0 20px;
    color: var(--navy);
}

.blog-featured-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin: 30px 0;
}

.blog-body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--graphite);
}

.blog-body h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: var(--navy);
}

.blog-body p {
    margin-bottom: 20px;
}

.blog-body ul {
    margin: 20px 0 20px 25px;
}

.blog-body li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.blog-body strong {
    color: var(--navy);
}

@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-modal {
        padding: 30px 20px;
    }
    
    .blog-article h1 {
        font-size: 28px;
    }
    
    .blog-featured-image {
        height: 250px;
    }
}
