/*
Theme Name: AutoLife
Theme URI: https://auto.informa.life
Author: André Ballesteros
Author URI: https://auto.informa.life
Description: Tema personalizado para site de notícias automotivas com design moderno e responsivo.
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: autolife
Tags: blog, news, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* Reset e Base - Otimizado para performance */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Otimizações de fonte - usando fontes do sistema para melhor performance */

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    /* Otimizações de renderização */
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Prevenir layout shift */
    min-height: 100vh;
    overflow-x: hidden;
}

/* Prevenir CLS - dimensões explícitas e containers estáveis */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Containers com dimensões fixas para prevenir shift */
.post-thumbnail-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    /* Aspect ratio fixo para prevenir CLS */
    aspect-ratio: 3 / 2;
}

.post-thumbnail-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-post-featured-image {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.single-post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    /* Aspect ratio será calculado automaticamente pelo navegador */
}

/* Prevenir shift em elementos dinâmicos */
.site-container,
.site-main {
    contain: layout;
}

/* Espaçadores para elementos que podem causar shift */
.post-content {
    min-height: 100px; /* Prevenir shift enquanto carrega */
}

a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #004499;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Breadcrumbs */
.breadcrumbs {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.breadcrumbs a {
    color: #666;
}

.breadcrumbs a:hover {
    color: #0066cc;
}

/* Container Principal */
.site-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background-color: #fff;
    margin-bottom: 30px;
}

/* Barra superior com logo */
.header-top {
    background-color: #0F2A44;
    padding: 25px 0;
    min-height: 80px;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    min-height: 50px;
}

.site-branding {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 1;
}

.site-title {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

.site-title a {
    color: #fff;
    text-decoration: none;
}

.custom-logo {
    max-height: 60px;
    width: auto;
    display: block;
    margin: 0 auto;
}

/* Barra de navegação */
.header-nav {
    background-color: #333;
    padding: 0;
    min-height: 0;
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

/* Botão Menu Hambúrguer */
.menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 10px;
    font-size: 14px;
    font-weight: 500;
    transition: opacity 0.3s ease;
    z-index: 10;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.menu-toggle:hover {
    opacity: 0.8;
}

.menu-toggle:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 24px;
    height: 18px;
    justify-content: center;
}

.hamburger-icon span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle[aria-expanded="true"] .hamburger-icon span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle[aria-expanded="true"] .hamburger-icon span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] .hamburger-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.menu-text {
    display: none;
}

/* Botão de Pesquisa */
.search-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 10px;
    transition: opacity 0.3s ease;
    z-index: 10;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.search-toggle:hover {
    opacity: 0.8;
}

.search-toggle:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.search-toggle svg {
    width: 24px;
    height: 24px;
}

/* Menu de Navegação Dropdown */
.main-navigation {
    display: none;
    background-color: #f8f8f8;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
}

.main-navigation.active {
    display: block;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.main-navigation li {
    border-bottom: 1px solid #e0e0e0;
}

.main-navigation li:last-child {
    border-bottom: none;
}

.main-navigation a {
    display: block;
    color: #333;
    font-size: 15px;
    padding: 12px 0;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.main-navigation a:hover {
    color: #0066cc;
    padding-left: 10px;
}

/* Formulário de Busca */
.search-form-container {
    display: none;
    background-color: #f8f8f8;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
}

.search-form-container.active {
    display: block;
}

.search-form-container form,
.search-form-container .search-form {
    display: flex;
    gap: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.search-form-container input[type="search"],
.search-form-container .search-field {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.search-form-container input[type="search"]:focus,
.search-form-container .search-field:focus {
    outline: none;
    border-color: #0066cc;
}

.search-form-container button[type="submit"],
.search-form-container input[type="submit"],
.search-form-container .search-submit {
    padding: 12px 24px;
    background-color: #0066cc;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-form-container button[type="submit"]:hover,
.search-form-container input[type="submit"]:hover,
.search-form-container .search-submit:hover {
    background-color: #004499;
}

/* Acessibilidade - Screen Reader Text */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    word-wrap: normal !important;
}

/* Conteúdo Principal */
.site-main {
    margin-bottom: 40px;
}

/* Posts Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* Posts List (Home) */
.posts-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.post-item-horizontal {
    display: flex;
    gap: 25px;
    background: #fff;
    border: none;
    border-radius: 0;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.post-item-horizontal:last-child {
    border-bottom: none;
}

.post-item-horizontal:hover {
    opacity: 0.9;
}

.post-thumbnail-wrapper {
    flex-shrink: 0;
    width: 300px;
    max-width: 100%;
}

.post-item-horizontal .post-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: #f0f0f0;
    border-radius: 4px;
    margin: 0;
}

.post-item {
    background: #fff;
    border: none;
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.post-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: #f0f0f0;
    border-radius: 4px;
    margin-bottom: 15px;
}

.post-content {
    padding: 0;
    flex: 1;
}

.post-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.post-item-horizontal .post-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
}

.post-title a {
    color: #333;
}

.post-title a:hover {
    color: #0066cc;
}

.post-meta {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
}

.post-meta a {
    color: #666;
}

.post-meta a:hover {
    color: #0066cc;
}

.post-excerpt {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.post-item-horizontal .post-excerpt {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    margin-top: 10px;
}

.post-link {
    color: #0066cc;
    font-weight: 500;
    font-size: 14px;
}

.post-tags {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.post-tags a {
    color: #666;
    font-size: 14px;
    margin-right: 10px;
}

.post-tags a:hover {
    color: #0066cc;
}

/* Post Single */
.single-post {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.single-post-header {
    margin-bottom: 30px;
}

.single-post-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #333;
}

.single-post-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.single-post-meta a {
    color: #666;
}

.single-post-meta a:hover {
    color: #0066cc;
}

.single-post-featured-image {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    border-radius: 4px;
}

.single-post-content {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
}

.single-post-content p {
    margin-bottom: 20px;
}

.single-post-content h2 {
    font-size: 26px;
    font-weight: 600;
    margin: 30px 0 15px;
    color: #333;
}

.single-post-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 25px 0 12px;
    color: #333;
}

.single-post-content img {
    margin: 20px 0;
    border-radius: 4px;
}

.single-post-content a {
    color: #0066cc;
    text-decoration: underline;
}

/* Categoria */
.category-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.category-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.category-description {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-top: 10px;
}

/* Posts Relacionados */
.related-posts {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
}

.related-posts h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #333;
}

/* Navegação entre posts */
.post-navigation {
    margin: 40px 0;
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.post-navigation .nav-links {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
    flex: 1;
}

.post-navigation .nav-subtitle {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.post-navigation .nav-title {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.post-navigation a:hover .nav-title {
    color: #0066cc;
}

/* No Posts */
.no-posts {
    text-align: center;
    padding: 60px 20px;
}

.no-posts h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #333;
}

.no-posts p {
    color: #666;
    font-size: 16px;
}

/* Paginação */
.pagination,
.posts-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.pagination a,
.pagination span,
.posts-navigation a,
.posts-navigation span {
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    color: #666;
    font-size: 14px;
    display: inline-block;
}

.pagination a:hover,
.posts-navigation a:hover {
    background-color: #f5f5f5;
    color: #0066cc;
}

.pagination .current,
.posts-navigation .current {
    background-color: #0066cc;
    color: #fff;
    border-color: #0066cc;
}

.pagination .prev,
.pagination .next,
.posts-navigation .prev,
.posts-navigation .next {
    font-weight: 500;
}

/* Estilos para Tabelas */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    font-size: 16px;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

table thead {
    background-color: #dc2626;
    color: #fff;
}

table thead th {
    padding: 15px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #b91c1c;
}

table tbody tr {
    border-bottom: 1px solid #e5e7eb;
    transition: background-color 0.2s ease;
}

table tbody tr:last-child {
    border-bottom: none;
}

table tbody tr:hover {
    background-color: #f9fafb;
}

table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

table tbody tr:nth-child(even):hover {
    background-color: #f1f3f5;
}

table tbody td {
    padding: 15px 20px;
    color: #333;
    vertical-align: middle;
}

table tbody td:first-child {
    font-weight: 600;
    color: #1f2937;
}

table tfoot {
    background-color: #f8f9fa;
    border-top: 2px solid #e5e7eb;
}

table tfoot td {
    padding: 12px 20px;
    font-size: 14px;
    color: #666;
    font-style: italic;
}

/* Tabelas dentro do conteúdo do post */
.single-post-content table,
.post-content table {
    margin: 30px 0;
}

.single-post-content table thead th,
.post-content table thead th {
    font-size: 14px;
}

.single-post-content table tbody td,
.post-content table tbody td {
    font-size: 15px;
}

/* Responsive para tabelas */
@media (max-width: 768px) {
    table {
        font-size: 14px;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    table thead th,
    table tbody td {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    table thead th {
        font-size: 12px;
    }
}

/* Footer */
.site-footer {
    background-color: #f8f8f8;
    border-top: 1px solid #e0e0e0;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #666;
    font-size: 14px;
}

.footer-section a:hover {
    color: #0066cc;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    color: #666;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .post-item-horizontal {
        flex-direction: column;
    }
    
    .post-thumbnail-wrapper {
        width: 100%;
    }
    
    .post-item-horizontal .post-thumbnail {
        height: 250px;
    }
    
    .post-item-horizontal .post-title {
        font-size: 20px;
    }
    
    .site-title {
        font-size: 24px;
    }
    
    .single-post-title {
        font-size: 26px;
    }
    
    .header-top {
        padding: 12px 0;
        min-height: 60px;
    }
    
    .header-top-content {
        display: flex;
        flex-wrap: nowrap;
        min-height: 36px;
        justify-content: flex-start;
        align-items: center;
        position: relative;
        padding: 0 5px;
    }
    
    .menu-toggle {
        width: 44px;
        height: 44px;
        padding: 10px;
        flex-shrink: 0;
        position: relative;
        z-index: 2;
        margin: 0;
        order: 1;
    }
    
    .site-branding {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: auto;
        max-width: calc(100% - 110px);
        margin-top: 0;
        z-index: 1;
        text-align: center;
        pointer-events: none;
        order: 2;
    }
    
    .site-branding img,
    .site-branding .custom-logo {
        pointer-events: auto;
    }
    
    .search-toggle {
        width: 44px;
        height: 44px;
        padding: 10px;
        flex-shrink: 0;
        position: relative;
        z-index: 2;
        margin: 0 0 0 auto;
        order: 3;
    }
    
    .hamburger-icon {
        width: 22px;
        height: 18px;
    }
    
    .search-toggle svg {
        width: 22px;
        height: 22px;
    }
    
    .custom-logo {
        max-height: 45px;
        width: auto;
    }
    
    .site-title {
        font-size: 18px;
    }
    
    .nav-bar {
        padding: 10px 0;
    }
    
    .menu-text {
        font-size: 13px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .search-form-container form {
        flex-direction: column;
    }
    
    .search-form-container button[type="submit"],
    .search-form-container input[type="submit"] {
        width: 100%;
    }
    
    .author-box {
        margin: 40px 0 30px;
        padding: 25px;
    }
    
    .author-box-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .author-avatar-img {
        width: 100px;
        height: 100px;
    }
    
    .author-info .author-name {
        font-size: 24px;
    }
    
    .author-bio {
        font-size: 15px;
    }
    
    .author-social {
        justify-content: center;
    }
    
    .author-link-button {
        width: 100%;
        text-align: center;
    }
}

/* Author Box - Final do Post */
.author-box {
    margin: 60px 0 40px;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.author-box-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.author-avatar {
    flex-shrink: 0;
}

.author-avatar-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.author-avatar a:hover .author-avatar-img {
    transform: scale(1.05);
}

.author-info {
    display: flex;
    gap: 0px;
    align-items: flex-start;
    flex: 1;
    flex-direction: column;
}

.author-info .author-name {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #333;
    order: 1;
}

.author-info .author-name a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.author-info .author-name a:hover {
    color: #0066cc;
}

.author-bio {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 12px;
    order: 2;
}

.author-bio p {
    margin: 0 0 10px 0;
}

.author-bio p:last-child {
    margin-bottom: 0;
}

.author-social {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
    order: 3;
}

.author-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
}

.author-social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.author-social-link svg {
    width: 20px;
    height: 20px;
}

.author-social-facebook:hover {
    background: #1877f2;
    color: #fff;
    border-color: #1877f2;
}

.author-social-twitter:hover {
    background: #1da1f2;
    color: #fff;
    border-color: #1da1f2;
}

.author-social-instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    border-color: transparent;
}

.author-social-linkedin:hover {
    background: #0077b5;
    color: #fff;
    border-color: #0077b5;
}

.author-social-youtube:hover {
    background: #ff0000;
    color: #fff;
    border-color: #ff0000;
}

.author-social-website:hover {
    background: #0066cc;
    color: #fff;
    border-color: #0066cc;
}

.author-posts-link {
    margin-top: 0;
    order: 4;
}

.author-link-button {
    display: inline-block;
    padding: 8px 16px;
    background: #0066cc;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.author-link-button:hover {
    background: #004499;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

/* Author Page */
.author-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e0e0e0;
}

.author-info {
    display: flex;
    gap: 0;
    align-items: flex-start;
}

.author-info img {
    border-radius: 50%;
    flex-shrink: 0;
}

.author-details {
    flex: 1;
}

.author-name {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.author-bio {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.author-meta {
    font-size: 14px;
    color: #666;
}

.author-posts-count {
    font-weight: 500;
}

/* Page Templates */
.page-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.page-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.page-meta {
    font-size: 14px;
    color: #666;
}

.page-meta time {
    display: block;
    margin-bottom: 5px;
}

.updated-date {
    font-size: 13px;
    color: #888;
}

.page-content-wrapper {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
}

.page-content-wrapper p {
    margin-bottom: 20px;
}

.page-content-wrapper h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 30px 0 15px;
    color: #333;
}

.page-content-wrapper h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 25px 0 12px;
    color: #333;
}

.page-content-wrapper ul,
.page-content-wrapper ol {
    margin: 20px 0;
    padding-left: 30px;
}

.page-content-wrapper li {
    margin-bottom: 10px;
}

/* Utilitários */
.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-20 {
    margin-top: 20px;
}

/* Mobile First - Author Page */
@media (max-width: 768px) {
    .author-info {
        flex-direction: column;
        text-align: center;
    }
    
    .author-info img {
        margin: 0 auto;
    }
    
    .author-name {
        font-size: 28px;
    }
    
    .page-title {
        font-size: 28px;
    }
}
