/*
	Theme Name: Hello Elementor
	Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
	Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
	Author: Elementor Team
	Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
	Version: 3.4.4
	Stable tag: 3.4.4
	Requires at least: 6.0
	Tested up to: 6.8
	Requires PHP: 7.4
	License: GNU General Public License v3 or later.
	License URI: https://www.gnu.org/licenses/gpl-3.0.html
	Text Domain: hello-elementor
	Tags: accessibility-ready, flexible-header, custom-colors, custom-menu, custom-logo, featured-images, rtl-language-support, threaded-comments, translation-ready,
*/
/* Container da lista */
/* Container principal */
.lista-posts {
    display: flex;
    flex-direction: column;
    align-items: center; /* centraliza todo o conteúdo */
    gap: 20px; /* espaço entre os quadros */
    max-width: 900px; /* largura máxima para não ficar colado na tela */
    margin: 0 auto; /* centraliza no meio da página */
    padding: 20px;
}

/* Cada post dentro de um quadro */
.item-post {
    width: 100%;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;
}

.item-post:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Título do post */
.titulo-post {
    font-size: 1.4em;
    margin-bottom: 10px;
    text-align: center; /* título centralizado */
}

.titulo-post a {
    color: #3D4AA3; /* azul padrão */
    text-decoration: none;
}

.titulo-post a:hover {
    text-decoration: underline;
}

/* Conteúdo do post */
.conteudo-post {
    font-size: 1em;
    line-height: 1.6;
    color: #333;
    text-align: justify;
}

/* Links dentro do conteúdo */
.conteudo-post a {
    color: #3D4AA3;
    font-weight: 500;
    text-decoration: underline;
}

/* Paginação */
.paginacao {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.paginacao a, .paginacao span {
    padding: 8px 14px;
    border: 1px solid #ddd;
    background: #fff;
    color: #3D4AA3;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
}

.paginacao a:hover {
    background: #3D4AA3;
    color: #fff;
}

.paginacao .current {
    background: #3D4AA3;
    color: #fff;
    font-weight: bold;
}
