/* Estilos customizados adicionais */

.site-header {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.entry-content {
    font-size: 1.05rem;
    line-height: 1.8;
}

.entry-content h2,
.entry-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.entry-content p {
    margin-bottom: 1.5rem;
}

.entry-content ul,
.entry-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.entry-content li {
    margin-bottom: 0.5rem;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    margin: 1.5rem 0;
    border-radius: 8px;
}

.page-links {
    clear: both;
    margin: 2rem 0;
    text-align: center;
}

.page-links a {
    display: inline-block;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem;
    background: #f5f7fa;
    border-radius: 4px;
}

.page-links a:hover {
    background: #e8f0f5;
}

.no-posts-found {
    text-align: center;
    padding: 3rem 0;
    color: #999999;
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.site-header,
.page-header,
.entry-content {
    animation: fadeIn 0.5s ease-out;
}

/* Impressão */
@media print {
    .site-header,
    .site-footer,
    .page-links {
        display: none;
    }
}
