/* Blog list styles */
body {
    background: #f7f8fa;
}

h1 {
    color: #1a237e;
    font-weight: 700;
    margin-bottom: 2rem;
}

.post {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    padding: 2rem 1.5rem;
    margin-bottom: 2.5rem;
    transition: box-shadow 0.2s;
}
.post:hover {
    box-shadow: 0 4px 24px rgba(0,0,0,0.13);
}

.post h2 {
    color: #1976d2;
    font-size: 2rem;
    margin-bottom: 0.7rem;
    font-weight: 600;
}

.post p {
    color: #333;
    font-size: 1.08rem;
    margin-bottom: 0.5rem;
}

.post strong {
    color: #1a237e;
}

@media (max-width: 600px) {
    .post {
        padding: 1.2rem 0.7rem;
    }
    h1 {
        font-size: 1.5rem;
    }
    .post h2 {
        font-size: 1.2rem;
    }
}
