/* Blog Styles */

.blog-section {
    background-color: #f8f9fa;
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(45, 80, 22, 0.15);
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.blog-image img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-placeholder {
    background: linear-gradient(135deg, #2d5016 0%, #3d6b1f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-content {
    text-align: center;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    color: #2d5016;
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 500;
}

.blog-meta i {
    margin-right: 5px;
}

.blog-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.blog-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: #2d5016;
}

.blog-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-read-more {
    color: #2d5016;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: gap 0.3s ease;
    gap: 5px;
}

.blog-read-more:hover {
    gap: 10px;
    color: #1f3610;
}

.blog-read-more i {
    font-size: 14px;
}

/* Blog Detail Page */

.blog-detail-hero {
    position: relative;
}

.blog-article {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.blog-article p {
    margin-bottom: 20px;
}

.blog-footer {
    padding-top: 30px;
}

/* Responsive */

@media (max-width: 768px) {
    .blog-card {
        margin-bottom: 30px;
    }

    .blog-title {
        font-size: 20px;
    }

    .blog-article {
        font-size: 16px;
    }
}