/* =============== PAGE TEMPLATE =============== */
.page-container {
    max-width: 800px; /* Largura ideal para leitura */
    margin: 50px auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.page-title {
    font-size: 2.5rem;
    color: var(--color-text-main, #333);
    margin-bottom: 30px;
    font-weight: 800;
    text-align: center;
}

.page-thumbnail {
    margin: 0 0 40px;
    border-radius: 8px;
    overflow: hidden;
}

.page-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 500px;
    object-fit: cover;
}

/* Corpo do Texto */
.page-content-wrapper .entry-content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-text-main, #333);
    margin-bottom: 40px;
}

.page-content-wrapper .entry-content h2,
.page-content-wrapper .entry-content h3,
.page-content-wrapper .entry-content h4 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--color-text-dark, #111);
    font-weight: 700;
}

/* Links de Paginação Interna da Página */
.page-links {
    margin-top: 30px;
    clear: both;
}

/* Responsivo Mobile */
@media screen and (max-width: 768px) {
    .page-container {
        margin: 30px auto;
    }

    .page-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
}