/* Blog Styles */
.blog-header {
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.9) 0%, rgba(58, 92, 30, 0.9) 100%);
    padding: 100px 0 60px;
    text-align: center;
    color: white;
    margin-top: 70px;
    border-radius: 0 0 40px 40px;
}

.blog-header h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: white;
}

.blog-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.blog-posts-section {
    padding: 60px 0;
}

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

.blog-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(90, 140, 66, 0.08) 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 30px;
}

.blog-category {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.blog-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary);
    line-height: 1.4;
}

.blog-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: var(--primary);
}

.blog-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    gap: 15px;
    flex-wrap: wrap;
}

.blog-meta-info {
    display: flex;
    gap: 15px;
    align-items: center;
}

.blog-date {
    color: #888;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-author {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.read-more {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--primary);
    gap: 12px;
}

.coming-soon {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(90, 140, 66, 0.05) 100%);
    border-radius: 20px;
    margin-top: 40px;
}

.coming-soon h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.coming-soon p {
    color: #666;
    max-width: 500px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.topic {
    background: rgba(212, 175, 55, 0.1);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.topic:hover {
    transform: translateY(-5px);
    background: rgba(212, 175, 55, 0.15);
}

.topic i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.topic h4 {
    color: var(--secondary);
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-header {
        padding: 80px 0 40px;
        border-radius: 0 0 30px 30px;
    }
    
    .blog-header h1 {
        font-size: 2.2rem;
    }
    
    .blog-header p {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .blog-image {
        height: 200px;
    }
    
    .topics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .blog-header h1 {
        font-size: 1.8rem;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .topics-grid {
        grid-template-columns: 1fr;
    }
}
