/*
Theme Name: Acerola
Theme URI: 
Author: Raiphy
Author URI: instagram.com/raiphy
Description: Tema WordPress minimalista, leve e otimizado para SEO, desenvolvido para blogs de tecnologia e aplicativos.
Version: 1.2.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: acerola-theme
Tags: minimalista, leve, otimizado, seo, blog, tecnologia, aplicativos
*/

/* Reset e estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: var(--color-primary);
    --color-primary-hover: #004c99;
    --color-secondary: #333333;
    --color-bg-body: #ffffff;
    --color-text-main: #333333;
    --color-text-heading: #111111;
}

body {
    background-color: var(--color-bg-body);
    color: var(--color-text-main);
    font-family: 'Mulish', 'Muli', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Links */
a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover,
a:focus {
    color: var(--color-primary-hover);
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-text-heading);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

/* Paragraphs */
p {
    margin-bottom: 20px;
    color: var(--color-text-main);
}

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

/* Container principal */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Container para single posts - centralizado e mais largo */
.single-container {
    max-width: 900px;
    /* Aumentado de 800px para 900px */
    margin: 0 auto;
    padding: 0 15px;
}

/* Removidos os estilos do cabeçalho antigo */

/* Seções de conteúdo */
.content-section {
    margin: 30px 0;
}

.section-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #404040;
    /* Removida a linha azul abaixo dos títulos */
}

/* Seção sem título */
.no-title {
    margin-top: 0;
}

/* Layout de duas colunas */
.main-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
}

.main-content {
    flex: 0 0 70%;
    max-width: 70%;
    padding-right: 30px;
}

.sidebar {
    flex: 0 0 30%;
    max-width: 30%;
}

/* Seção de Destaques - Layout Atualizado (Uniforme 3 colunas) */
.home-featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.featured-grid-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 280px;
    /* Fixed height for uniformity */
}

.featured-grid-item:hover {
    /* transform: translateY(-5px); Removed as per user request */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    /* Optional: just deepen shadow instead */
}

/* Remove old layout classes that are no longer used but safe to keep empty or clear */
.featured-grid-item-large,
.featured-grid-column-small,
.featured-grid-item-small {
    /* Deprecated */
}

.featured-item-image-link {
    display: block;
    width: 100%;
    height: 100%;
}

.post-card-image-wrapper {
    width: 100%;
    height: 100%;
}

.post-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-grid-item:hover .post-card-image {
    transform: scale(1.05);
}

.post-card-category-wrapper {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
}

.post-card-category-tag {
    background-color: rgba(60, 60, 60, 0.7);
    /* Dark semi-transparent pill */
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: background-color 0.2s;
}

.post-card-category-tag:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

.post-card-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.featured-grid-item-small .post-card-content-overlay {
    padding: 16px;
    /* Smaller padding for small cards */
}

.post-card-title {
    margin: 0;
    line-height: 1.3;
}

.home-featured-grid .post-card-title a {
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    text-decoration: none;
}

.featured-grid-item-large .post-card-title a {
    font-size: 24px;
}

.featured-grid-item-small .post-card-title a {
    font-size: 16px;
    font-weight: 600;
}

.post-card-meta {
    margin-top: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.post-card-meta span {
    margin-right: 5px;
}

@media (max-width: 768px) {
    .home-featured-grid {
        flex-direction: column;
    }

    .featured-grid-item-large,
    .featured-grid-column-small {
        flex: 100%;
        max-width: 100%;
        height: auto;
    }

    .featured-grid-item-large {
        height: 300px;
    }

    .featured-grid-column-small {
        height: auto;
    }

    .featured-grid-item-small {
        height: 200px;
    }
}

/* Cards de artigos populares */
.posts-list {
    margin-bottom: 20px;
}

.horizontal-card {
    display: flex;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.horizontal-card:hover {
    transform: translateY(-3px);
}

.horizontal-card-image {
    flex: 0 0 120px;
    max-width: 120px;
    height: 90px;
}

.horizontal-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.horizontal-card-content {
    flex: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.horizontal-card-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    margin-top: 20px;
}

.horizontal-card-title a {
    color: #404040;
    /* Alterada a cor dos títulos para preto #404040 */
}

/* Últimos posts na sidebar */
.sidebar-section {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.latest-posts-list {
    margin-bottom: 20px;
}

.latest-post {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

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

.latest-post-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

.latest-post-title a {
    color: #404040;
    /* Alterada a cor dos títulos para preto #404040 */
}

/* Cores de categorias */
.category-border-blue {
    border-left: 4px solid var(--color-primary);
}

.category-border-green {
    border-left: 4px solid #00cc66;
}

.category-border-purple {
    border-left: 4px solid #9933cc;
}

.category-border-orange {
    border-left: 4px solid #ff9900;
}

.category-border-red {
    border-left: 4px solid #ff3366;
}

/* Botão Ver Mais */
.load-more-container {
    text-align: center;
    margin: 20px 0;
}

.load-more-btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--color-primary);
    color: #fff;
    text-align: center;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.load-more-btn:hover {
    background-color: var(--color-primary-hover);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

/* Rodapé */
.site-footer {
    background-color: var(--color-text-main);
    color: #fff;
    padding: 40px 0 20px;
    margin-top: 50px;
}

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

.footer-widget-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

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

.footer-widget li {
    margin-bottom: 10px;
}

.footer-widget a {
    color: #ccc;
}

.footer-widget a:hover {
    color: #fff;
}

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

/* Formulário de contato */
.contact-form {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
}

.form-control:focus {
    border-color: var(--color-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.2);
}

.submit-btn {
    background-color: var(--color-primary);
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--color-primary-hover);
}

/* Estilos para Single Post - Minimalista */
.single-article {
    background-color: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
    margin-top: 40px;
}

.entry-header {
    margin-bottom: 30px;
}

.entry-title {
    font-size: 42px;
    /* Tamanho da fonte do título para desktop */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #404040;
}

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

.entry-meta span {
    margin-right: 15px;
}

.entry-content {
    font-size: 16px;
    /* Tamanho da fonte do texto do artigo */
    line-height: 1.8;
    color: var(--color-text-main);
    margin-bottom: 30px;
}

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

.entry-content h2 {
    font-size: 1.7em;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #000000;

}

.entry-content h3 {
    font-size: 1.4em;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #000000;

}

.entry-content h4 {
    font-size: 1.1em;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #000000;
}

.entry-content ul,
.entry-content ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

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

.entry-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.tags-links {
    margin-bottom: 20px;
}

.tag-label {
    font-weight: 600;
    margin-right: 5px;
}

/* Botões de Compartilhamento */
/* Botões de Compartilhamento */
.share-buttons {
    margin: 30px 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    /* Garante que nao quebre em mobile */
}

.share-title {
    font-size: 1rem;
    font-weight: 700;
    margin-right: 15px;
    margin-bottom: 0px;
    color: var(--color-text-heading);
}

.share-links {
    display: flex;
    gap: 10px;
}

.share-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f0f0f0;
    color: var(--color-text-main);
    transition: all 0.3s ease;
    text-decoration: none;
}

.share-links a:hover {
    background-color: var(--color-text-heading);
    color: #fff;
    transform: translateY(-3px);
}

/* Cores especificas no hover se desejar, mas vou manter preto premium */
/* .share-facebook:hover { background: #3b5998; } */
/* .share-whatsapp:hover { background: #25d366; } */

/* Tags do Artigo */
.tags-links {
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    width: 100%;
    padding: 0;
    /* Padrao desktop */
}

/* Ajuste Responsivo para Tags */
@media (max-width: 768px) {
    .tags-links {
        padding: 0 20px;
        /* Garante o recuo lateral no mobile igual ao texto */
        box-sizing: border-box;
        /* Garante que o padding nao estoure a largura */
    }
}

.tag-label {
    font-weight: 800;
    color: var(--color-text-heading);
    margin-right: 5px;
    font-size: 1rem;
    /* Tamanho base consistente */
    line-height: 1;
    /* Remove altura de linha excessiva */
    display: flex;
    align-items: center;
    height: 34px;
    /* Altura fixa igual aos botoes */
}

.tags-links a {
    display: flex;
    /* Flex para centralizar o texto dentro do botao */
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    height: 34px;
    /* Altura fixa para garantir alinhamento */
    background-color: #f5f5f5;
    color: #555;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    line-height: 1;
    /* Remove espacos verticais da fonte */
}

.tags-links a:hover {
    background-color: var(--color-text-heading);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Seção do Autor (Rodapé do Artigo) */
.author-section {
    display: flex;
    align-items: center;
    background-color: #fafafa;
    border-radius: 12px;
    padding: 30px;
    margin: 50px 0;
    border: 1px solid #eee;
}

.author-avatar {
    flex: 0 0 80px;
    /* Fixo 80px */
    margin-right: 25px;
}

.rounded-avatar {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-text-heading);
}

.author-description p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Artigos Relacionados */
.related-posts {
    margin: 40px 0;
}

.related-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #404040;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.related-post {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.related-post:hover {
    transform: translateY(-5px);
}

.related-post-thumbnail {
    display: block;
    height: 180px;
    overflow: hidden;
}

.related-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-post:hover .related-post-thumbnail img {
    transform: scale(1.05);
}

.related-post-title {
    font-size: 16px;
    font-weight: 600;
    padding: 15px;
    line-height: 1.3;
}

.related-post-title a {
    color: #404040;
}

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

.nav-links {
    display: flex;
    justify-content: space-between;
}

.nav-previous,
.nav-next {
    flex: 0 0 48%;
}

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

.nav-title {
    font-size: 16px;
    font-weight: 500;
    color: #404040;
}

/* Responsividade */
@media (max-width: 992px) {
    .main-content {
        flex: 0 0 100%;
        max-width: 100%;
        padding-right: 0;
    }

    .sidebar {
        flex: 0 0 100%;
        max-width: 100%;
        margin-top: 30px;
    }

    .featured-posts-container {
        flex-direction: column;
    }

    .featured-post-main,
    .featured-posts-secondary {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .featured-post-main .featured-post-image {
        height: 300px;
    }

    .related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .featured-post-main .featured-post-image {
        height: 250px;
    }

    .entry-title {
        font-size: 30px;
        /* Tamanho da fonte do título para celular */
    }

    .author-section {
        flex-direction: column;
        text-align: center;
    }

    .author-avatar {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .related-posts-grid {
        grid-template-columns: 1fr;
    }

    /* Remover contorno branco em artigos no mobile */
    .single-article,
    .page-article,
    .post,
    .featured-post,
    .horizontal-card,
    .related-post {
        background-color: transparent !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
    }

    /* Ajustar espaçamento para conteúdo */
    .entry-content {
        padding: 0;
        margin: 0;
    }
}

@media (max-width: 576px) {

    .featured-post-main .featured-post-image,
    .featured-post-secondary .featured-post-image {
        height: 200px;
    }

    .section-title {
        font-size: 20px;
    }

    .featured-post-title,
    .horizontal-card-title {
        font-size: 16px;
    }
}

/* Ajustes para compatibilidade com o novo header */
body.admin-bar .custom-site-header.sticky-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .custom-site-header.sticky-header {
        top: 46px;
    }
}

/* Ajuste para espaçamento após o header */
.custom-site-header+#primary {
    margin-top: 30px;
}

/* Ajuste para menu mobile */
body.menu-open {
    overflow: hidden;
}

/* Ajuste para overlay de pesquisa */
body.search-open {
    overflow: hidden;
}

/* Classe para esconder o header ao rolar para baixo */
.custom-site-header.header-hidden {
    transform: translateY(-100%);
}

/* Remover contorno branco em artigos */
.single-article,
.page-article,
.post {
    background-color: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
}

/* Ajustes para o conteúdo principal */
#primary {
    padding: 0;
    margin-top: 20px;
}

#main {
    padding: 0;
    margin: 0;
}

/*******************************************************
>>> INÍCIO DOS ESTILOS DOS CARROSSÉIS DA PÁGINA INICIAL <<<
Copie e cole este bloco de código no final do seu arquivo style.css 
OU em uma seção apropriada para novos componentes.
*******************************************************/

/* Estilos para a Seção do Carrossel */
.custom-carousel-section {
    margin-left: -15px;
    /* Compensa o padding-left do .container pai */
    margin-right: -15px;
    /* Compensa o padding-right do .container pai */
    padding-left: 15px;
    /* Adiciona padding interno para o conteúdo da seção (título, wrapper) */
    padding-right: 15px;
    /* Adiciona padding interno para o conteúdo da seção (título, wrapper) */
    margin-bottom: 30px;
    /* Espaçamento abaixo de cada carrossel */
}

/* .custom-carousel-section .container -> Removido, pois o container principal do tema já faz o controle de largura e centralização. */

/* Título da Seção do Carrossel - DEVE USAR a classe .section-title do tema principal para consistência */
/* .carousel-section-title foi removido do CSS. A classe .section-title do tema será usada diretamente no HTML. */

/* Wrapper para os Cards do Carrossel */
.carousel-wrapper {
    display: grid;
    /* Layout em grade */
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    /* Grade responsiva, 4 colunas em telas largas, ajusta para menos colunas em telas menores */
    gap: 20px;
    /* Espaçamento entre os cards */
    padding-bottom: 20px;
    /* Espaço inferior */
    /* Removido overflow-x, white-space e -webkit-overflow-scrolling */
}

/* Estilos para cada Card do Carrossel */
.carousel-card {
    /* flex: 0 0 auto; Removido, não aplicável a grid da mesma forma */
    /* width: 280px; Removido, a largura será controlada pelo grid-template-columns */
    /* max-width: 75vw; Removido */
    background-color: #fff;
    /* Cor de fundo do card */
    border: 1px solid #e0e0e0;
    /* Borda sutil para os cards */
    border-radius: 8px;
    /* Bordas arredondadas */
    overflow: hidden;
    /* Garante que o conteúdo não ultrapasse as bordas arredondadas */
    display: flex;
    /* Para organizar imagem e conteúdo internamente */
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Imagem Destacada do Card */
.carousel-card-thumbnail {
    width: 100%;
    height: 180px;
    /* Altura fixa para a área da imagem, ajuste conforme necessário */
    overflow: hidden;
    background-color: #f0f0f0;
    /* Cor de fundo para área da imagem caso não haja imagem */
}

.carousel-card-thumbnail a {
    display: block;
    width: 100%;
    height: 100%;
}

.carousel-card-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Garante que a imagem cubra a área sem distorcer */
    transition: transform 0.3s ease;
}

.carousel-card:hover .carousel-card-thumbnail img {
    transform: scale(1.05);
}

/* Conteúdo do Card */
.carousel-card-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    /* Faz o conteúdo ocupar o espaço restante no card */
}

/* Categoria do Post no Card */
.carousel-card-category {
    font-size: 0.8em;
    color: #777;
    /* Cor do texto da categoria, ajuste conforme o tema */
    margin-bottom: 8px;
    text-transform: uppercase;
}

.carousel-card-category a {
    color: inherit;
    /* Herda a cor definida acima */
    text-decoration: none;
}

.carousel-card-category a:hover {
    text-decoration: underline;
}

/* Título do Post no Card */
.carousel-card-title {
    font-size: 1.1em;
    /* Tamanho do título do post, ajuste conforme o tema */
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 10px;
    line-height: 1.3;
}

.carousel-card-title a {
    text-decoration: none;
    color: var(--color-text-main);
    /* Cor do título, ajuste conforme o tema */
}

.carousel-card-title a:hover {
    color: var(--color-primary);
    /* Cor do título ao passar o mouse, ajuste conforme o tema */
}

/* Trecho do Post no Card */
.carousel-card-excerpt {
    font-size: 0.9em;
    color: #555;
    /* Cor do texto do trecho, ajuste conforme o tema */
    line-height: 1.5;
    flex-grow: 1;
    /* Ocupa o espaço restante antes de qualquer meta/botão */
}

/* Ajustes para Responsividade da Grade */
/* O grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); já lida bem com a responsividade.
   Ajustes adicionais podem ser feitos se necessário para larguras de card específicas em breakpoints. */

@media (max-width: 600px) {
    .carousel-wrapper {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        /* Cards um pouco menores em telas pequenas */
    }
}

/* Removida a estilização da barra de rolagem, pois não haverá mais scroll */

/*****************************************************
>>> FIM DOS ESTILOS DOS CARROSSÉIS DA PÁGINA INICIAL <<<
*****************************************************/

/************************************************************
>>> INÍCIO DOS ESTILOS DO NOVO GRID DE DESTAQUES DA HOME (v5 - Cor do Título Clicável Ajustada) <<<
Copie e cole este bloco de código no final do seu arquivo style.css 
OU em uma seção apropriada para novos componentes.
************************************************************/

.home-featured-grid-section {
    margin-bottom: 30px;
}

/* Container do Grid */
.home-featured-grid-section {
    margin-bottom: 40px;
    padding-top: 20px;
}

.home-featured-grid {
    display: grid;
    /* 3 Colunas: Pequena, Grande (Dobro), Pequena */
    grid-template-columns: 1fr 2.2fr 1fr;
    /* Centro bem mais largo */
    grid-auto-rows: 240px;
    gap: 15px;
    /* Gap branco generoso */
    width: 100%;
}

/* Item Genérico do Grid */
.featured-grid-item {
    position: relative;
    overflow: hidden;
    background-color: #000;
    border-radius: 2px;
    /* Quase quadrado */
}

/* POSICIONAMENTO DOS 5 POSTS (Simétrico) */

/* POST 1: O GRANDE DESTAQUE (Centro) */
.featured-grid-item:nth-child(1) {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
}

/* POST 2: Esquerda Topo */
.featured-grid-item:nth-child(2) {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

/* POST 3: Esquerda Baixo */
.featured-grid-item:nth-child(3) {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

/* POST 4: Direita Topo */
.featured-grid-item:nth-child(4) {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

/* POST 5: Direita Baixo */
.featured-grid-item:nth-child(5) {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

/* Tratamento de Imagem e Hover */
.post-card-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.featured-item-image-link {
    display: block;
    width: 100%;
    height: 100%;
}

.post-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center center;
}

.featured-grid-item:hover .post-card-image {
    transform: scale(1.1);
}

/* Overlay FLEXBOX (Crucial para alinhamento) */
.post-card-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    /* Overlay ocupa tudo para garantir gradiente full height se precisar, mas vamos focar no bottom */
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
    pointer-events: none;

    /* Flexbox Magic */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Conteúdo no rodapé */
    align-items: flex-start;
    /* Alinhado à esquerda */
}

.post-card-content-overlay * {
    pointer-events: auto;
}

/* Categoria (Wrapper) */
.post-card-category-wrapper {
    position: relative;
    /* Reset total */
    top: auto;
    left: auto;
    bottom: auto;
    right: auto;
    margin-bottom: 8px;
    /* Espaço para o título */
    z-index: 3;
}

/* Estilo da Tag de Categoria */
.post-card-category-tag {
    background-color: #000;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    /* Extra bold */
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 2px;
    text-decoration: none;
    display: inline-block;
}

.post-card-category-tag:hover {
    background-color: var(--color-primary);
}

/* Títulos */
.post-card-title {
    margin: 0;
    line-height: 1.1;
    font-weight: 800;
    width: 100%;
}

.featured-grid-item .post-card-title {
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
}

.post-card-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
    display: block;
    /* Garante que o link ocupe o espaço */
}

.post-card-title a:hover {
    color: var(--color-primary);
}

/* Título Grande no Centro */
.featured-grid-item:nth-child(1) .post-card-title {
    font-size: 34px;
    /* Bem grande */
    line-height: 1.1;
}

.featured-grid-item:nth-child(1) .post-card-content-overlay {
    padding: 30px;
    /* Mais respiro no card grande */
}

/* Títulos Menores nas Laterais */
.featured-grid-item:not(:nth-child(1)) .post-card-title {
    font-size: 16px;
    line-height: 1.3;
}

/* Efeito de Brilho (Shine) "Lâminas Passando" */
.featured-grid-item::before {
    position: absolute;
    top: 0;
    left: -100%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    transform: skewX(-25deg);
    pointer-events: none;
    /* Não bloquear cliques */
}

.featured-grid-item:hover::before {
    animation: shine 0.75s;
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

/* Responsividade */
@media (max-width: 1024px) {
    .home-featured-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    /* Layout Tablet: Grande em cima */
    .featured-grid-item:nth-child(1) {
        grid-column: 1 / 3;
        grid-row: auto;
        height: 350px;
    }

    .featured-grid-item:nth-child(2),
    .featured-grid-item:nth-child(3),
    .featured-grid-item:nth-child(4),
    .featured-grid-item:nth-child(5) {
        grid-column: auto;
        grid-row: auto;
    }
}

@media (max-width: 600px) {
    .home-featured-grid {
        grid-template-columns: 1fr;
    }

    .featured-grid-item:nth-child(1) {
        grid-column: 1 / 2;
        height: 280px;
    }

    .featured-grid-item:nth-child(1) .post-card-title {
        font-size: 24px;
    }
}

/**********************************************************
>>> FIM DOS ESTILOS DO NOVO GRID DE DESTAQUES DA HOME (v5) <<<
**********************************************************/

/* CSS para garantir o estilo correto do ícone de pesquisa no header */
.custom-search-toggle svg {
    fill: none !important;
    /* Garante que não haja preenchimento na "bolinha" */
    stroke: currentColor;
    /* O contorno usará a cor do texto definida para o header */
}

/* Corrige o overflow horizontal */
html,
body {
    overflow-x: hidden;
    width: 100%;
}



/* Immersive Grid Layout */
.immersive-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.immersive-card {
    position: relative;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.immersive-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.immersive-card-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.immersive-image-wrapper {
    width: 100%;
    height: 100%;
}

.immersive-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.immersive-card:hover .immersive-card-image {
    transform: scale(1.05);
}

.immersive-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0.1) 100%);
    pointer-events: none;
    z-index: 1;
}

.immersive-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    z-index: 2;
}

.immersive-title {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.3;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 992px) {
    .immersive-grid-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .immersive-grid-wrapper {
        grid-template-columns: 1fr;
    }

    .immersive-card {
        height: 250px;
    }

    .immersive-title {
        font-size: 1.15rem;
    }
}

/* CSS Reverted */
/* Category Layout: Hero + List */

.category-header-modern.minimal {
    padding: 30px 0;
    margin-bottom: 30px;
    text-align: left;
    border-bottom: 2px solid #eaeaea;
}

.category-header-modern.minimal .page-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-text-heading);
    margin: 0;
    letter-spacing: -0.5px;
}

.category-header-modern.minimal .archive-description {
    font-size: 1rem;
    color: #777;
    margin-top: 5px;
}

/* Container Principal */
.category-layout-hero-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* 1. HERO CARD (Destaque Principal - Premium Neutral) */
.category-hero-card {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    /* Mais destaque para imagem */
    gap: 40px;
    background: #fff;
    margin-bottom: 20px;
    align-items: center;
    position: relative;
}

.category-hero-card .hero-image-wrapper {
    position: relative;
    border-radius: 12px;
    /* Reduzi um pouco o arredondamento */
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    aspect-ratio: 16/9;
}

.category-hero-card .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-hero-card:hover .hero-image {
    transform: scale(1.02);
    /* Zoom mais sutil */
}

/* Badge Flutuante */
.hero-cat-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #111;
    /* Fundo preto */
    color: #fff;
    /* Texto branco */
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 14px;
    border-radius: 4px;
    /* Mais quadrado */
    z-index: 10;
}

.category-hero-card .hero-content {
    padding: 20px 0;
}

.hero-title {
    font-size: 2.6rem;
    /* Aumentei o tamanho */
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
    /* Tracking negativo estilo Apple */
}

.hero-title a {
    color: var(--color-text-heading);
    text-decoration: none;
    transition: color 0.2s ease;
    background: none;
    /* Removemos o gradiente */
}

.hero-title a:hover {
    color: #555;
    /* Apenas clareia um pouco no hover */
}

.hero-excerpt {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
    font-weight: 400;
}

/* =========================================
   Restored Styles (Category Hero, Lists, Single Post)
   ========================================= */

.hero-meta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    font-size: 0.9rem;
    color: #888;
    border-top: 1px solid #eee;
    padding-top: 25px;
}

.hero-date {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 0.85rem;
    color: #999;
}

.hero-date i {
    margin-right: 6px;
    color: #ccc;
}

.hero-read-more a {
    display: inline-flex;
    align-items: center;
    background: #111;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: none;
}

.hero-read-more a:hover {
    background: #333;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: none;
}

.hero-read-more a i {
    margin-left: 10px;
    font-size: 0.9em;
    transition: transform 0.3s ease;
}

.hero-read-more a:hover i {
    transform: translateX(4px);
}

/* 2. LISTA HORIZONTAL (Posts Seguintes) */
.category-list-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.category-list-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding-bottom: 20px;
    border-bottom: 1px solid #f5f5f5;
}

.list-item-image-wrapper {
    width: 140px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    background: #f0f0f0;
}

.list-item-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.category-list-item:hover .list-item-image {
    opacity: 0.9;
}

.list-item-content {
    flex-grow: 1;
}

.list-item-cat span {
    font-size: 0.7rem;
    color: var(--color-text-heading);
    font-weight: 800;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.list-item-title {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 8px 0;
}

.list-item-title a {
    color: #222;
    text-decoration: none;
    transition: color 0.2s;
}

.list-item-title a:hover {
    color: #555;
}

.list-item-meta {
    font-size: 0.8rem;
    color: #999;
}

/* Responsive */
@media (max-width: 992px) {
    .category-hero-card {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .category-hero-card .hero-image-wrapper {
        aspect-ratio: 16/9;
    }

    .hero-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .category-list-container {
        grid-template-columns: 1fr;
    }

    .category-list-item {
        align-items: center;
    }

    .desktop-only {
        display: none !important;
    }
}

/* 3. SINGLE POST - DESKTOP ENHANCEMENTS */

/* Breadcrumb Premium */
.desktop-breadcrumb {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 20px;
    font-weight: 600;
    font-family: 'Mulish', 'Muli', sans-serif;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.desktop-breadcrumb a {
    color: var(--color-text-heading);
    text-decoration: none;
    transition: color 0.2s ease;
    border-bottom: 1px solid transparent;
}

.desktop-breadcrumb a:hover {
    color: #666;
    border-color: #eee;
}

.desktop-breadcrumb .sep {
    color: #ddd;
    font-size: 0.8em;
}

.desktop-breadcrumb .current-post {
    color: #999;
    font-weight: 600;
}

/* Author Meta Grid (Foto + Info) */
.desktop-author-meta {
    display: flex;
    align-items: center;
    margin-top: 25px;
    margin-bottom: 40px;
    gap: 15px;
}

.desktop-meta-avatar {
    flex-shrink: 0;
}

.desktop-meta-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.desktop-meta-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.3;
}

.desktop-author-name {
    font-size: 0.95rem;
    color: var(--color-text-main);
}

.desktop-author-name strong {
    font-weight: 700;
    color: #000;
}

.desktop-post-date {
    font-size: 0.8rem;
    color: #999;
}

/* =========================================
   PRIVACY POLICY THEME NATIVE (HARMONIZED)
   ========================================= */

/* Layout Container - Matches theme grid/sidebar gap */
.privacy-theme-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    padding-top: 40px;
    padding-bottom: 60px;
}

/* Sidebar (Navigation) */
.privacy-theme-sidebar {
    position: sticky;
    top: 40px;
    height: fit-content;
}

/* Nav Card - Standard Box Style */
.privacy-nav-card {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    /* Theme radius */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    /* Soft consistent shadow */
    border: 1px solid rgba(0, 0, 0, 0.03);
    margin-bottom: 20px;
}

.privacy-nav-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--color-text-heading, #111);
    font-weight: 700;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--color-primary);
    /* Brand Accent */
    padding-bottom: 10px;
    display: inline-block;
}

.privacy-toc-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.privacy-toc-list li {
    margin-bottom: 8px;
}

.privacy-toc-list a {
    text-decoration: none;
    color: #666;
    font-size: 0.95rem;
    transition: all 0.2s;
    display: block;
    padding: 5px 0;
}

.privacy-toc-list a:hover,
.privacy-toc-list a.active {
    color: var(--color-primary);
    transform: translateX(5px);
    /* Interaction feedback */
    font-weight: 600;
}

/* Update Badge */
.privacy-update-badge {
    background: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: #666;
}

.privacy-update-badge .icon {
    font-size: 1.2rem;
}

.privacy-update-badge strong {
    color: var(--color-text-heading, #111);
    display: block;
}

/* Main Content Card */
.privacy-card-body {
    background: #fff;
    border-radius: 8px;
    /* Theme radius */
    padding: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    /* Theme's signature shadow */
}

.privacy-header {
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.privacy-header .entry-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-text-heading, #111);
    margin: 0;
    line-height: 1.2;
}

/* Body Typography */
.privacy-card-body .entry-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text-main, #333);
    margin-bottom: 20px;
}

.privacy-card-body .entry-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-text-heading, #111);
    margin-top: 50px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

/* Primary Color Bullet for Sections */
.privacy-card-body .entry-content h2::before {
    content: '';
    display: block;
    width: 6px;
    height: 24px;
    background-color: var(--color-primary);
    margin-right: 15px;
    border-radius: 2px;
}

.privacy-card-body .entry-content ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.privacy-card-body .entry-content li {
    margin-bottom: 10px;
    color: var(--color-text-main, #333);
}

/* Responsive */
@media (max-width: 900px) {
    .privacy-theme-grid {
        grid-template-columns: 1fr;
        padding-top: 20px;
    }

    .privacy-theme-sidebar {
        position: relative;
        top: 0;
        margin-bottom: 0;
        order: -1;
    }

    .privacy-card-body {
        padding: 30px;
    }

    .privacy-header .entry-title {
        font-size: 2rem;
    }
}

/* Utilitario Desktop Only */
@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
}

/* Breadcrumb Premium */
.desktop-breadcrumb {
    font-size: 0.85rem;
    /* Um tiquinho maior que antes pra ler melhor */
    /* text-transform removido */
    /* letter-spacing removido pois em minusculo fica estranho espaçado */
    color: #999;
    margin-bottom: 20px;
    font-weight: 600;
    font-family: 'Mulish', 'Muli', sans-serif;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.desktop-breadcrumb a {
    color: var(--color-text-heading);
    /* Preto para os links */
    text-decoration: none;
    transition: color 0.2s ease;
    border-bottom: 1px solid transparent;
}

.desktop-breadcrumb a:hover {
    color: #666;
    border-color: #eee;
}

.desktop-breadcrumb .sep {
    color: #ddd;
    /* Separador bem sutil */
    font-size: 0.8em;
}

.desktop-breadcrumb .current-post {
    color: #999;
    /* Texto atual em cinza claro para nao brigar com o titulo */
    font-weight: 600;
}

/* Author Meta Grid (Foto + Info) */
.desktop-author-meta {
    display: flex;
    align-items: center;
    margin-top: 25px;
    margin-bottom: 40px;
    /* Espaco antes do conteudo */
    gap: 15px;
}

.desktop-meta-avatar {
    flex-shrink: 0;
}

.desktop-meta-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    /* Foto redonda */
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.desktop-meta-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.3;
}

.desktop-author-name {
    font-size: 0.95rem;
    color: var(--color-text-main);
}

.desktop-author-name strong {
    font-weight: 700;
    color: #000;
}

.desktop-post-date {
    font-size: 0.8rem;
    color: #999;
}

/* =========================================
   ABOUT US MINIMALIST (THEME NATIVE)
   ========================================= */

.about-minimal-wrapper {
    max-width: 900px !important;
    margin: 40px auto 80px !important;
}

.about-card-body {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 60px 80px;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

/* Header */
.about-minimal-header {
    text-align: center;
    margin-bottom: 50px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 40px;
}

.about-minimal-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
}

.about-minimal-header .entry-title {
    font-size: 3rem;
    color: var(--color-text-heading, #111);
    margin-bottom: 20px;
    font-weight: 800;
}

.about-minimal-subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Image */
.about-minimal-image {
    margin-bottom: 50px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.about-minimal-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Content */
.about-minimal-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-main, #333);
}

.about-minimal-content p {
    margin-bottom: 25px;
}

.about-minimal-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-text-heading, #111);
    margin-top: 50px;
    margin-bottom: 20px;
    /* Small accent underline */
    display: inline-block;
    border-bottom: 3px solid rgba(0, 0, 0, 0.05);
}

/* Responsive */
@media (max-width: 768px) {
    .about-card-body {
        padding: 40px 25px;
    }

    .about-minimal-header .entry-title {
        font-size: 2.2rem;
    }
}