/* Blog Specific Styles */
.blog-header {
    padding: 120px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, #1a4d7d 0%, #0d3d56 100%);
    color: white;
}

.blog-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.blog-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.blog-posts {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-post-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.post-image {
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    background: linear-gradient(135deg, #1a4d7d 0%, #0d3d56 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.post-placeholder {
    font-size: 4rem;
    color: white;
    opacity: 0.5;
}

.post-content {
    padding: 2rem;
}

.post-category {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background-color: #1a4d7d;
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.post-content h2 {
    margin-bottom: 1rem;
}

.post-content h2 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.post-content h2 a:hover {
    color: #1a4d7d;
}

.post-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
    flex-wrap: wrap;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-excerpt {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.read-more {
    color: #1a4d7d;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.read-more:hover {
    color: #0d3d56;
}

.nav-menu a.active {
    color: #1a4d7d;
    font-weight: 600;
}

@media (max-width: 768px) {
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-header h1 {
        font-size: 2rem;
    }
}

