/**
Theme Name: Astra Child
Author: Brainstorm Force
Author URI: http://wpastra.com/about/
Description: Astra is the fastest, fully customizable & beautiful theme suitable for blogs, personal portfolios and business websites. It is very lightweight (less than 50KB on frontend) and offers unparalleled speed. Built with SEO in mind, Astra comes with schema.org code integrated so search engines will love your site. Astra offers plenty of sidebar options and widget areas giving you a full control for customizations. Furthermore, we have included special features and templates so feel free to choose any of your favorite page builder plugin to create pages flexibly. Some of the other features: # WooCommerce Ready # Responsive # Compatible with major plugins # Translation Ready # Extendible with premium addons # Regularly updated # Designed, Developed, Maintained & Supported by Brainstorm Force. Looking for a perfect base theme? Look no further. Astra is fast, fully customizable and beautiful theme!
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: astra-child
Template: astra
*/

/* --- Estilos para a Página de Lista de Autores --- */

/* Layout para Desktop (3 colunas) */
.lista-autores-alfabetica {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.grupo-letra {
    width: 33.333%;
    padding: 0 15px;
    box-sizing: border-box; /* Garante que o padding não aumente a largura */
}

/* --- Estilos para a Página de Arquivo de Autor --- */

/* Layout do cabeçalho do perfil para Desktop */
.author-profile-grid {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
}

.author-image-wrapper {
    flex: 0 0 150px; /* Largura fixa para a imagem */
    text-align: center;
}
.author-image-wrapper p {
    font-size: 0.9em;
    color: #555;
}

.author-details {
    flex: 1; /* Ocupa o espaço restante */
}

/* Layout das colunas de Livros/Artigos para Desktop (2 colunas) */
.author-works-grid {
    display: flex;
    gap: 30px;
}

.author-works-column {
    flex: 1;
}


/* --- MUDANÇAS PARA CELULAR (Responsividade) --- */
@media (max-width: 768px) {

    /* Lista de Autores passa para 1 coluna */
    .grupo-letra {
        width: 100%;
    }

    /* Cabeçalho do perfil do autor empilha verticalmente */
    .author-profile-grid {
        flex-direction: column;
        align-items: center; /* Centraliza a imagem */
        text-align: center;
    }

    /* Colunas de Livros/Artigos empilham verticalmente */
    .author-works-grid {
        flex-direction: column;
    }
}