body {
    font-family: Arial, Helvetica, sans-serif;
    max-width: 900px;
    margin: auto;
    padding: 20px;
    line-height: 1.6;
    color: #333;
}

header {
    text-align: center;
    margin-bottom: 50px;
}

.hero {
    background: #f5f5f5;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.posts h2 {
    margin-bottom: 25px;
}

.post-card {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.post-card h3 {
    margin-bottom: 5px;
}

.post-card a {
    text-decoration: none;
    color: #1a4d80;
}

.post-card a:hover {
    text-decoration: underline;
}

.date {
    color: #777;
    font-size: 0.9rem;
}

footer {
    text-align: center;
    margin-top: 60px;
    color: #777;
}