/* ===== Tipografia e reset simples ===== */
body {
    margin: 0;
    padding: 0;
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.6;
    color: #222;
    background-color: #fff;
}

a {
    color: #222;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ===== Cabeçalho ===== */
.site-header {
    text-align: center;
    padding: 2rem 1rem;
}

.site-header h1 {
    margin: 0;
    font-size: 2.5rem;
}

.site-header p {
    font-size: 1.1rem;
    color: #555;
}

/* ===== Conteúdo ===== */
.content {
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem;
}

.post {
    border-bottom: 1px solid #eee;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
}

.post-title {
    font-size: 2rem;
    margin: 0 0 0.5rem 0;
}

.post-date {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 1rem;
}

.post-body p {
    margin-bottom: 1rem;
}

/* ===== Rodapé ===== */
.site-footer {
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    color: #777;
    border-top: 1px solid #eee;
}