/* What's New Page Styles */
.whats-new-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.whats-new-container h1 {
    color: #1a365d;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 2px solid #1a365d;
    padding-bottom: 10px;
}

.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.blog-post {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 30px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.post-header {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.post-header h2 {
    color: #1a365d;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.3;
}

.post-meta {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: #666;
}

.post-meta .date {
    font-weight: bold;
}

.post-meta .category {
    background-color: #e9ecef;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 0.8rem;
}

.post-content {
    line-height: 1.8;
    color: #333;
}

.post-content p {
    margin-bottom: 15px;
    font-size: 1rem;
}

.post-content strong {
    color: #1a365d;
    font-weight: bold;
}

/* Responsive Design for What's New */
@media (max-width: 768px) {
    .whats-new-container {
        padding: 10px;
    }
    
    .whats-new-container h1 {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .blog-post {
        padding: 20px;
    }
    
    .post-header h2 {
        font-size: 1.3rem;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 5px;
    }
} 