/* Blog Section Styling */
.blog-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.blog-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.blog-section .section-header h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 700;
}

.blog-section .section-header p {
    color: #666;
    font-size: 16px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

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

.blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #888;
}

.blog-meta span i {
    margin-right: 5px;
    color: #2D6A4F;
}

.blog-card h3 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 600;
}

.blog-card p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: #2D6A4F;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: auto;
}

.read-more:hover {
    text-decoration: underline;
}

.blog-footer {
    text-align: center;
}

.btn-view-all {
    display: inline-block;
    padding: 12px 30px;
    background-color: #2D6A4F;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-view-all:hover {
    background-color: #1b4332;
}

@media (max-width: 768px) {
    .blog-section {
        padding: 50px 0;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
}
