/* Modern Blog Page Styles */
body {
    background-color: #f9f9f9;
}

.blog-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.blog-header {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-header h1 {
    font-size: 3rem;
    color: #333;
}

.blog-header p {
    font-size: 1.1rem;
    color: #777;
}

.featured-post {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    padding: 2rem;
    text-align: center;
}

.featured-post h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.featured-post .post-meta {
    font-size: 1rem;
    color: #888;
    margin-bottom: 1.5rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-post {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.post-content-wrapper {
    padding: 1.5rem;
}

.blog-post h2 {
    margin-top: 0;
    font-size: 1.5rem;
    color: #333;
}

.post-meta {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 1rem;
}

.post-excerpt {
    line-height: 1.6;
    color: #555;
    margin-bottom: 1rem;
}

.read-more {
    display: inline-block;
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.read-more:hover {
    color: #0056b3;
}
