/* --- Blog Header --- */
.blog-header {
    text-align: center;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 40px;
    border-left: 4px solid #667eea;
}

.blog-header h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 5px;
}

/* --- Blog List Page --- */
.blog-list {
    display: grid;
    gap: 30px;
}

.blog-post-summary {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e1e8ed;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.blog-post-summary h3 a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 1.5rem;
}

.post-meta {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin: 5px 0 15px 0;
}

.read-more-btn {
    display: inline-block;
    margin-top: 15px;
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
}
