/*
Theme Name: Diário Central
Theme URI: https://github.com/marcusmatsutani/diario-central
Author: Marcus Matsutani
Author URI: https://github.com/marcusmatsutani
Description: Tema oficial para o portal de notícias Diário Central. Desenvolvido sob medida com base no layout Figma.
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: diario-central
*/

/* ==========================================
   Design Tokens & CSS Variables
   ========================================== */
:root {
    --primary: #185fa5;
    --primary-hover: #124c85;
    --dark: #1c2b3a;
    --dark-hover: #131f2b;
    --light: #f7f8fa;
    --white: #ffffff;
    --gray: #e6eef6;
    --text-color: #1a1a1a;
    --text-muted: #667788;
    --border-color: #e2e8f0;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

/* ==========================================
   CSS Reset & Base HTML Elements
   ========================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

a:hover {
    color: var(--primary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: #1C2B3A;
}

/* Visualmente oculto, mas acessível para leitores de tela */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

/* Skip-link: some quando o foco chega nela (primeiro Tab da página) */
.skip-link.screen-reader-text:focus {
    background-color: var(--white);
    border-radius: 0 0 4px 0;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
    clip: auto !important;
    clip-path: none;
    color: var(--dark);
    display: block;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    height: auto;
    left: 0;
    line-height: normal;
    padding: 15px 23px;
    text-decoration: none;
    top: 0;
    width: auto;
    z-index: 100000;
}

/* ==========================================
   Layout Helpers (Containers & Alignment)
   ========================================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-main {
    padding: 0 0 60px;
}

/* ==========================================
   TOPBAR Styles
   ========================================== */
.topbar {
    background-color: var(--dark);
    color: #c9d4e0;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    padding: 8px 0;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left {
    display: flex;
    align-items: center;
}

.topbar-left ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 24px;
}

.topbar-left ul li {
    display: inline-block;
}

.topbar-left ul li a {
    color: #c9d4e0;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.55px;
    text-transform: none;
    text-decoration: none;
    transition: color 0.2s ease;
}

.topbar-left ul li a:hover {
    color: var(--white);
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.topbar-date {
    color: #c9d4e0;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.55px;
}

.topbar-weather {
    display: none;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.55px;
    transition: opacity 0.2s ease;
}

.topbar-weather:hover {
    opacity: 0.8;
}

.topbar-socials {
    display: flex;
    gap: 12px;
}

.topbar-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border: 1px solid #7090b0;
    border-radius: 50%;
    color: #7090b0;
    font-size: 10px;
    background-color: transparent;
    transition: all 0.2s ease;
}

.topbar-socials a:hover {
    color: var(--white);
    border-color: var(--white);
    background-color: #185fa5;
}

/* ==========================================
   HEADER Styles
   ========================================== */
.site-header-main {
    background-color: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.site-header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo a {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.brand-logo a span {
    color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-impressa {
    background-color: var(--primary);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-impressa:hover {
    background-color: var(--primary-hover);
    color: var(--white);
}

.header-search-icon {
    font-size: 18px;
    color: var(--dark);
    cursor: pointer;
}

.main-navigation {
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.main-navigation ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    padding: 14px 0;
}

.main-navigation ul a {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #334455;
    letter-spacing: 0.5px;
}

.main-navigation ul a:hover {
    color: var(--primary);
}

/* ==========================================
   TICKER (Breaking News) Styles
   ========================================== */
.ticker-wrap {
    display: flex;
    background-color: var(--primary);
    color: var(--white);
    height: 36px;
    align-items: center;
    overflow: hidden;
}

.ticker-label {
    background-color: var(--dark);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0 16px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    letter-spacing: 1px;
}

.ticker-content {
    flex-grow: 1;
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.ticker-track {
    display: flex;
    align-items: center;
    gap: 32px;
    white-space: nowrap;
    animation: ticker-loop 30s linear infinite;
    position: absolute;
}

.ticker-track:hover {
    animation-play-state: paused;
}

.ticker-track a {
    color: var(--white);
    font-size: 12px;
}

.ticker-separator {
    color: rgba(255,255,255,0.5);
}

@keyframes ticker-loop {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* ==========================================
   DESTAQUES (Main Layout Grids)
   ========================================== */
.ad-banner-container {
    text-align: center;
    display: flex;
    justify-content: center;
}

/* ==========================================
   PUBLICIDADE — dc-banner-zone
   ========================================== */

/* Zona wrapper */
.dc-banner-zone {
    width: 100%;
    text-align: center;
    margin-bottom: 24px;
}

/* Super Banner: centraliza e limita em 728px */
.dc-banner-zone--super-banner {
    display: flex;
    justify-content: center;
}
.dc-banner-zone--super-banner .dc-banner-carousel,
.dc-banner-zone--super-banner .dc-banner-slide {
    width: 100%;
    max-width: 728px;
}
.dc-banner-zone--super-banner .dc-banner-img {
    width: 100%;
    max-width: 728px;
    height: 90px;
    object-fit: cover;
    display: block;
}

/* Lateral: container de largura total da coluna */
.dc-banner-zone--lateral .dc-banner-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Links não decorados */
.dc-banner-link {
    display: block;
    line-height: 0;
}

/* Carrossel */
.dc-banner-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* Slides */
.dc-banner-slide {
    display: none;
    animation: dcBannerFadeIn 0.4s ease-in-out;
}
.dc-banner-slide--active {
    display: block;
}
@keyframes dcBannerFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Código embutido: responsivo */
.dc-banner-code {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}
.dc-banner-code iframe,
.dc-banner-code script ~ * {
    max-width: 100% !important;
}

/* Dots de navegação */
.dc-banner-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 8px;
}
.dc-banner-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background-color: #c9d4e0;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.2s;
}
.dc-banner-dot--active {
    background-color: var(--primary);
}

/* Mobile: garante max-width 100% em qualquer tamanho */
@media (max-width: 767px) {
    .dc-banner-zone--super-banner .dc-banner-img {
        height: auto;
    }
    .dc-banner-zone--super-banner .dc-banner-carousel,
    .dc-banner-zone--super-banner .dc-banner-slide {
        max-width: 100%;
    }
}


.destaques-grid {
    display: grid;
    grid-template-columns: minmax(0, 9fr) minmax(0, 3fr);
    gap: 24px;
    margin-bottom: 40px;
}

.main-destaques-left {
    min-width: 0;
    position: sticky;
    top: 20px;
    align-self: start;
}

.hero-main-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 451px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    background-color: var(--dark);
    margin-bottom: 24px;
}

.hero-main-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    z-index: 1;
    transition: transform 0.5s ease;
}

.hero-main-card:hover img {
    transform: scale(1.03);
}

.hero-main-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(28, 43, 58, 0) 0%, rgba(28, 43, 58, 0.9) 65%, rgba(28, 43, 58, 0.95) 100%);
    z-index: 1.5;
}

.hero-main-card-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 95%;
}

.badge-tag {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 2px;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.hero-main-card-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.3;
}

.hero-main-card-title a {
    color: var(--white);
}

.hero-main-card-title a:hover {
    color: #cbd5e1;
}

.hero-main-card-desc {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 400;
    color: #c9d4e0;
    margin-bottom: 12px;
    line-height: 1.3;
}

.hero-main-card-meta {
    font-size: 11px;
    color: #b0c2d3;
    display: flex;
    gap: 8px;
    align-items: center;
}

/* Secondary Cards Grid */
.secondary-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.card-item {
    background-color: var(--white);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.card-image-wrap {
    height: 110px;
    background-color: var(--gray);
    position: relative;
    overflow: hidden;
}

.card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-body {
    padding: 12px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-category {
    font-family: var(--font-heading);
    font-size: 9px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.card-title {
    font-size: 12.5px;
    font-weight: 700;
    line-height: 1.4;
    color: #1a1a1a;
    margin-bottom: auto;
    min-height: 52px;
}

.card-meta {
    margin-top: 12px;
    font-size: 10px;
    color: var(--text-muted);
    display: flex;
    gap: 10px;
    align-items: center;
    border-top: 1px solid #f0f4f8;
    padding-top: 8px;
}

.card-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ASIDE Column Layout */
.aside-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.aside-card-item {
    background-color: transparent;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #e2e8f0;
    padding: 0 0 16px 0;
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.aside-card-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.aside-card-image {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
    background-color: var(--gray);
}

.aside-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aside-card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.aside-card-body .card-category {
    margin-bottom: 2px;
}

.aside-card-body .card-title {
    font-size: 12.5px;
    font-weight: 700;
    margin-bottom: 4px;
    min-height: auto;
    line-height: 1.3;
}

/* MAIS LIDAS List */
.sidebar-box {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
}

.sidebar-box-title {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary);
    color: var(--dark);
}

.mais-lidas-list li {
    display: flex;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f4f8;
}

.mais-lidas-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.mais-lidas-num {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.mais-lidas-text {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
}

/* ==========================================
   CATEGORY BLOCKS Styles
   ========================================== */
.category-section {
    padding: 40px 0;
    background-color: var(--light);
}

.category-section-title-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 24px;
    border-bottom: 2px solid var(--section-color, var(--primary));
    padding-bottom: 8px;
}

.category-section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--section-color, var(--dark));
    margin-bottom: 0;
}

.btn-ver-tudo {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    color: var(--section-color, var(--primary));
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
}

.btn-ver-tudo i {
    color: var(--section-color, var(--primary));
}

.category-grid-four {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* HEALTH SECTION (Saúde layout - Left big card, center list cards, right 300x250 ad) */
.health-layout {
    display: grid;
    grid-template-columns: 1fr 1fr 300px;
    gap: 24px;
    align-items: start;
}

.health-big-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.health-big-card-image {
    height: 250px;
    background-color: var(--gray);
}

.health-big-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.health-big-card-body {
    padding: 24px;
}

.health-big-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.health-big-card-excerpt {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.5;
}

.health-list-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.health-ad-box {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

/* Category column layout (Figma categories list: caret + title) */
.theme-column-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.column-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.column-card-category {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.column-card-main-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.4;
}

.column-card-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
    border-top: 1px solid #f0f4f8;
    padding-top: 14px;
    margin-top: auto;
}

.column-card-list-item {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    font-size: 13px;
    line-height: 1.4;
}

.column-card-list-item i {
    color: var(--primary);
    font-size: 11px;
    margin-top: 4px;
}

/* ==========================================
   FOOTER Styles
   ========================================== */
.site-footer {
    background-color: #1c2b3a;
    color: #7090b0;
    padding: 60px 0 30px;
    font-size: 14px;
    border-top: none;
}

/* Footer CTA Strip: Newsletter + Anuncie + WhatsApp */
.footer-cta-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 28px 32px;
    margin-bottom: 48px;
}

.footer-cta-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.footer-cta-desc {
    font-size: 13px;
    color: #7090b0;
    margin-bottom: 14px;
}

.footer-cta-newsletter {
    flex: 1 1 320px;
}

.footer-cta-newsletter .newsletter-form {
    flex-direction: row;
    max-width: 380px;
}

.footer-cta-newsletter .newsletter-btn {
    background-color: var(--primary);
    white-space: nowrap;
}

.footer-cta-newsletter .newsletter-btn:hover {
    background-color: var(--primary-hover);
}

/* Fluent Forms - newsletter (footer) */
.footer-cta-newsletter .fluentform fieldset {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 8px;
    max-width: 380px;
    border: 0;
    margin: 0;
    padding: 0;
    min-width: 0;
}

.footer-cta-newsletter .fluentform legend {
    display: none !important;
}

.footer-cta-newsletter .fluentform .ff-el-group {
    margin-bottom: 0;
}

.footer-cta-newsletter .fluentform .ff-el-group:not(.ff_submit_btn_wrapper) {
    flex: 1;
    min-width: 0;
}

.footer-cta-newsletter .fluentform .ff_submit_btn_wrapper {
    flex: 0 0 auto;
}

.footer-cta-newsletter .fluentform label {
    display: none;
}

.footer-cta-newsletter .fluentform input[type="email"] {
    width: 100%;
    height: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: var(--font-body);
    box-sizing: border-box;
    color: var(--dark);
}

.footer-cta-newsletter .fluentform input[type="email"]::placeholder {
    color: #9aa5b1;
    opacity: 1;
}

.footer-cta-newsletter .fluentform .ff-btn {
    background-color: var(--primary);
    white-space: nowrap;
    font-family: var(--font-heading);
    border-radius: 4px;
    padding: 10px 16px;
    box-sizing: border-box;
}

.footer-cta-newsletter .fluentform .ff-btn:hover {
    background-color: var(--primary-hover);
}

.footer-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 12px 20px;
    border-radius: 4px;
    white-space: nowrap;
    transition: background-color 0.2s ease-in-out;
}

.footer-cta-btn-anuncie {
    background-color: var(--primary);
    color: var(--white) !important;
}

.footer-cta-btn-anuncie:hover {
    background-color: var(--primary-hover);
}

.footer-cta-btn-whatsapp {
    background-color: #25d366;
    color: var(--white) !important;
}

.footer-cta-btn-whatsapp:hover {
    background-color: #1fb855;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-widget-column {
    position: relative;
}

.footer-widget-column:not(:first-child)::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -20px;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.08);
}

.footer-widget-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 600;
    color: #cbd5e1;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-logo {
    margin-bottom: 16px;
}

.footer-logo-img,
.footer-logo .custom-logo {
    height: 65px;
    width: auto;
    display: block;
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
}

.footer-about {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #7090b0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    font-family: 'Montserrat', sans-serif;
    color: #7090b0;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links li a:hover {
    color: var(--white);
}

.footer-social-icons {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer-social-icons a {
    width: 36px;
    height: 36px;
    background-color: transparent;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #7090b0;
    transition: all 0.2s ease;
}

.footer-social-icons a:hover {
    background-color: #185fa5;
    border-color: #185fa5;
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(112, 144, 176, 0.2);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: #7090b0;
}

.footer-bottom-dev {
    font-weight: 700;
    color: #adeca0;
}

/* ==========================================
   SINGLE POST LAYOUT Styles
   ========================================== */
.post-header {
    margin-bottom: 24px;
}

.post-title {
    font-size: 32px;
    font-weight: 800;
    margin: 12px 0;
}

.post-meta {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.post-thumbnail-wrap {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.post-content {
    font-size: 15px;
    line-height: 1.7;
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.post-content p {
    margin-bottom: 20px;
}

.post-content h2, .post-content h3 {
    margin: 30px 0 15px;
}

/* ==========================================
   Responsive Media Queries
   ========================================== */






/* ==========================================
   REFACTORED UTILITY & COMPONENT CLASSES
   ========================================== */

/* Margins & Sizing Utilities */
.mt-16 {
    margin-top: 16px !important;
}
.mt-24 {
    margin-top: 24px !important;
}
.mt-40 {
    margin-top: 40px !important;
}
.text-center {
    text-align: center !important;
}
.display-none {
    display: none !important;
}

/* Fallback Placeholders */
.fallback-thumb-gray {
    background: #e2e8f0;
    width: 100%;
    height: 100%;
}
.fallback-thumb-light {
    background: #eaeff5;
    width: 100%;
    height: 100%;
}
.fallback-thumb-dc {
    background: #eaeff5;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    font-weight: 700;
}
.fallback-thumb-dc-esporte {
    background: #eaeff5;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adb9c3;
    font-size: 12px;
    font-weight: 700;
}
.fallback-thumb-dc-medium {
    background: #eaeff5;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    font-weight: 700;
}

/* Typography & Metas */
.meta-no-border {
    border: none !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
    padding-bottom: 0 !important;
}
.title-fs-14 {
    font-size: 14px !important;
}
.title-aside-small {
    font-size: 12.5px !important;
    font-weight: 700 !important;
    min-height: auto !important;
    line-height: 1.3 !important;
}

/* Category Sections Borders & Colors */
.section-cities-border {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-top: 40px;
}
.section-saude-border {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 40px 0;
}
.section-bottom-border {
    border-top: 1px solid var(--border-color);
    padding: 40px 0 60px;
}
.section-esporte-border {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.saude-red-color {
    color: #dc2626 !important;
}
.esporte-green-color {
    color: #16a34a !important;
}
.card-transparent {
    border: none !important;
    background: none !important;
    padding: 0 !important;
    box-shadow: none !important;
}

/* Government Yellow Ad Box */
.ad-gov-container {
    background: #fdf087;
    border: 1px solid #fce838;
    border-radius: 6px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}
.ad-gov-title {
    color: #854d0e;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    border-bottom: 2px solid #ca8a04;
    padding-bottom: 4px;
}
.ad-gov-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 18px;
    line-height: 1.3;
    color: #1e3a8a;
}
.ad-gov-subtitle {
    font-size: 10px;
    color: #ca8a04;
    margin-top: 14px;
    font-weight: 600;
}

/* Aparecida Horizontal Ad Banner */
.ad-horizontal-container {
    margin: 30px auto;
    text-align: center;
}
.ad-horizontal-banner {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 728px;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}
.ad-horizontal-tag {
    background: #2563eb;
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 800;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    text-transform: uppercase;
}
.ad-horizontal-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    color: #1e293b;
}
.ad-horizontal-label {
    color: #64748b;
    font-size: 10px;
    border-left: 1px solid #cbd5e1;
    padding-left: 10px;
}

/* Saúde Vertical Ad Banner */
.ad-vertical-container {
    height: 100%;
    border-radius: 6px;
    overflow: hidden;
    background: var(--gray);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.ad-vertical-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
}
.ad-vertical-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
}
.ad-vertical-content {
    position: absolute;
    bottom: 20px;
    left: 14px;
    right: 14px;
    z-index: 2;
    color: #ffffff;
    text-align: center;
}
.ad-vertical-tag {
    font-family: var(--font-heading);
    font-size: 9px;
    font-weight: 700;
    color: #fecdd3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}
.ad-vertical-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 12px;
    line-height: 1.3;
}

/* Editorial Columns Widget */
.editorial-col-thumb {
    height: 200px;
    background-color: var(--gray);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 14px;
}

.editorial-col-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Brand Logo (Header) */
.brand-logo-container {
    display: flex;
    align-items: center;
}
.site-logo-img,
.brand-logo-container .custom-logo {
    height: 90px;
    width: auto;
    max-width: 100%;
    display: block;
}

.site-logo-text {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    text-transform: uppercase;
}

.brand-logo-badge {
    width: 48px;
    height: 48px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--dark);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.brand-logo-badge-text {
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 16px;
    letter-spacing: -1px;
}
.brand-logo-title-link {
    display: flex;
    flex-direction: column;
    line-height: 0.95;
}
.brand-logo-title-span {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 20px;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.header-search-icon-wrap,
.header-menu-icon-wrap {
    border: none;
    background: none;
    padding: 0;
    font-family: inherit;
    cursor: pointer;
}
.header-search-icon-wrap {
    font-size: 16px;
    color: var(--dark);
    margin-left: 8px;
}
.header-menu-icon-wrap {
    font-size: 20px;
    color: var(--dark);
    margin-left: 12px;
}

/* Archive Template Elements */
.category-section-transparent {
    background-color: transparent;
    padding: 20px 0;
}
.archive-header-wrap {
    border-bottom: 2px solid var(--primary);
    padding-bottom: 12px;
    margin-bottom: 30px;
}
.archive-desc {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 8px;
}
.nav-pagination-wrap {
    margin-top: 40px;
    text-align: center;
}
.archive-empty-msg {
    text-align: center;
    padding: 40px 0;
    color: var(--text-muted);
}

/* Fallback Index Layout (index.php) */
.fallback-index-header {
    background: #111;
    color: #fff;
    padding: 20px;
    text-align: center;
}
.fallback-index-title {
    margin: 0;
    font-size: 2.5rem;
    letter-spacing: 1px;
    font-weight: 700;
}
.fallback-index-desc {
    margin: 5px 0 0;
    color: #aaa;
    font-style: italic;
}
.fallback-index-main {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    min-height: 60vh;
}
.fallback-index-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}
.fallback-index-post {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}
.fallback-index-post-title {
    margin-top: 0;
}
.fallback-index-post-title-link {
    color: #1C2B3A;
    text-decoration: none;
}
.fallback-index-post-meta {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 15px;
}
.fallback-index-post-more {
    display: inline-block;
    margin-top: 15px;
    color: #0073aa;
    text-decoration: none;
    font-weight: 600;
}
.fallback-index-footer {
    background: #111;
    color: #aaa;
    padding: 30px 20px;
    text-align: center;
    font-size: 0.9rem;
}
.fallback-index-footer-dev {
    margin-top: 10px;
    font-size: 0.8rem;
    color: #666;
}

/* ==========================================
   FIGMA LAYOUT ALTERATIONS - JUNE 2026
   ========================================== */

/* Destaques Carousel Widget */
.carousel-section {
    margin-top: 16px;
    width: 100%;
    overflow: hidden;
}
.carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.carousel-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.carousel-nav {
    display: flex;
    gap: 8px;
}
.carousel-nav-btn {
    background: none;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-muted);
    transition: all 0.2s ease;
}
.carousel-nav-btn:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.carousel-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 8px;
    scrollbar-width: none; /* Firefox */
}
.carousel-track::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}
.carousel-card {
    min-width: 231px;
    width: 231px;
    height: 263px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.carousel-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.carousel-card-img {
    width: 100%;
    height: 130px;
    object-fit: cover;
}
.carousel-card-body {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex-grow: 1;
    justify-content: space-between;
}
.carousel-card-tag {
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.carousel-card-title {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: auto;
}
.carousel-card-meta {
    font-size: 11px;
    color: var(--text-muted);
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: 4px;
}

/* Sidebar Widgets */
.sidebar-widget-box {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 24px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.01);
}
.sidebar-widget-title {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 6px;
    display: inline-block;
}

/* Mais Lidas Widget */
.mais-lidas-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.mais-lidas-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 12px;
}
.mais-lidas-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.mais-lidas-number {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--text-muted);
    line-height: 1;
    min-width: 24px;
    opacity: 0.4;
}
.mais-lidas-item:hover .mais-lidas-number {
    color: var(--primary);
    opacity: 1;
}
.mais-lidas-title {
    font-family: var(--font-heading);
    font-size: 12.5px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-color);
}
.mais-lidas-title:hover {
    color: var(--primary);
}

/* WhatsApp Widget */
.widget-whatsapp {
    background-color: #33ab60;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 20px 16px;
}
.widget-whatsapp .sidebar-widget-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}
.whatsapp-header {
    display: flex;
    align-items: center;
    gap: 12px;
}
.whatsapp-header i {
    color: #ffffff;
    font-size: 30px;
}
.whatsapp-header-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.whatsapp-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}
.whatsapp-subtitle {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.3px;
    text-transform: uppercase;
}
.whatsapp-btn {
    background-color: #ffffff;
    color: #128c46 !important;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px;
    text-align: center;
    border-radius: 4px;
    transition: background-color 0.2s;
    display: block;
}
.whatsapp-btn:hover {
    background-color: #e8f9ee;
}
.whatsapp-followers {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
}

/* Print Edition Widget */
.widget-print {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.print-cover-container {
    background: #f1f5f9;
    padding: 12px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    border: 1px solid var(--border-color);
}
.print-cover-img {
    max-height: auto;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.print-issue-title {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
}
.print-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
}
.print-btn {
    background-color: var(--primary);
    color: var(--white) !important;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px;
    text-align: center;
    border-radius: 4px;
    transition: background-color 0.2s;
}
.print-btn:hover {
    background-color: var(--primary-hover);
}

/* Newsletter Widget */
.widget-newsletter {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.newsletter-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
}
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.newsletter-input {
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 13px;
    width: 100%;
    font-family: var(--font-body);
}
.newsletter-input:focus {
    border-color: var(--primary);
    outline: none;
}
.newsletter-btn {
    background-color: var(--dark);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px;
    text-align: center;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}
.newsletter-btn:hover {
    background-color: var(--dark-hover);
}

/* Fluent Forms - newsletter (bloco de destaques) */
.widget-newsletter .fluentform fieldset {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border: 0;
    margin: 0;
    padding: 0;
    min-width: 0;
}
.widget-newsletter .fluentform legend {
    display: none !important;
}
.widget-newsletter .fluentform .ff-el-group {
    margin-bottom: 0;
}
.widget-newsletter .fluentform label {
    display: none;
}
.widget-newsletter .fluentform input[type="email"] {
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 13px;
    width: 100%;
    font-family: var(--font-body);
}
.widget-newsletter .fluentform input[type="email"]:focus {
    border-color: var(--primary);
    outline: none;
}
.widget-newsletter .fluentform .ff-btn {
    background-color: var(--dark);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
    width: 100%;
}
.widget-newsletter .fluentform .ff-btn:hover {
    background-color: var(--dark-hover);
}

/* Exclusive Section Block (DESTAQUE - CATEGORIA) */
.exclusive-banner {
    background: linear-gradient(135deg, #1a3a5c 0%, #0d2035 60%, #1c2b3a 100%);
    color: var(--white);
    padding: 32px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px auto;
    gap: 30px;
    max-width: 1280px;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}
.exclusive-banner-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.exclusive-badges {
    display: flex;
    gap: 8px;
}
.badge-exclusivo {
    background-color: var(--primary);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 2px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.badge-mobilidade {
    background-color: #e87d18;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 2px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.exclusive-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.exclusive-desc {
    font-size: 14px;
    color: #c9d4e0;
    line-height: 1.5;
}
.exclusive-banner-right {
    display: flex;
    align-items: center;
}
.exclusive-btn {
    background-color: var(--primary);
    color: var(--white) !important;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 12px 24px;
    border-radius: 4px;
    white-space: nowrap;
    transition: background-color 0.2s;
}
.exclusive-btn:hover {
    background-color: var(--primary-hover);
}

/* Columnists Section (Colunistas) */
.colunistas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.colunista-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}
.colunista-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 24px 16px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    min-height: 280px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.colunista-card-link:hover .colunista-card {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.colunista-avatar-container {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 16px;
    background-color: var(--gray);
    border: 2px solid var(--border-color);
}
.colunista-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.colunista-avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
}
.colunista-avatar-rogerio-matos {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}
.colunista-avatar-anderson-silva {
    background: linear-gradient(135deg, #d4fc79 0%, #96e6a1 100%);
    color: var(--dark) !important;
}
.colunista-avatar-marilia-goncalves {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}
.colunista-avatar-sara-leal {
    background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
}
.colunista-card-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}
.colunista-tag {
    font-family: var(--font-heading);
    font-size: 9px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.colunista-name {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
}
.colunista-quote {
    font-family: var(--font-body);
    font-size: 12.5px;
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.4;
    margin-top: 4px;
}




/* ==========================================
   HEADER ACTIONS INTERACTIVITY (Modal & Drawer)
   ========================================== */

.header-search-icon, 
.header-menu-icon {
    cursor: pointer;
    transition: transform 0.2s ease, color 0.2s ease;
}
.header-search-icon:hover, 
.header-menu-icon:hover {
    color: var(--primary);
    transform: scale(1.1);
}

/* Fullscreen Search Modal */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(28, 43, 58, 0.98); /* Deep premium blue matching figma style */
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
}
.search-modal.active {
    display: flex;
    opacity: 1;
}
.search-modal-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 56px;
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.2s ease, transform 0.2s ease;
    padding: 10px;
}
.search-modal-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}
.search-modal-content {
    width: 100%;
    max-width: 680px;
    padding: 20px;
    text-align: center;
}
.search-modal-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}
.search-modal-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding: 12px 0;
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--white);
    text-align: center;
    outline: none;
    transition: border-bottom-color 0.3s ease;
}
.search-modal-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}
.search-modal-input:focus {
    border-bottom-color: var(--primary);
}
.search-modal-submit {
    background-color: var(--primary);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    padding: 14px 36px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 158, 253, 0.3);
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.search-modal-submit:hover {
    background-color: #0087d9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 158, 253, 0.4);
}
.search-modal-submit:active {
    transform: translateY(0);
}

/* Side Navigation Drawer */
.nav-drawer {
    position: fixed;
    top: 0;
    right: -340px;
    width: 340px;
    height: 100vh;
    background-color: var(--white);
    z-index: 99999;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-drawer.active {
    right: 0;
}
.nav-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(28, 43, 58, 0.6);
    z-index: 99998;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(3px);
}
.nav-drawer-overlay.active {
    display: block;
    opacity: 1;
}
.nav-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
}
.nav-drawer-logo {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
    text-transform: uppercase;
}
.nav-drawer-logo span {
    color: var(--primary);
}
.nav-drawer-close {
    font-size: 32px;
    color: var(--text-muted);
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease, transform 0.2s ease;
}
.nav-drawer-close:hover {
    color: var(--dark);
    transform: scale(1.1);
}
.nav-drawer-body {
    padding: 30px 24px;
    flex-grow: 1;
    overflow-y: auto;
}
.nav-drawer-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.nav-drawer-body ul li a {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: block;
}
.nav-drawer-body ul li a:hover {
    color: var(--primary);
    padding-left: 8px;
}



/* ==========================================
   SINGLE POST PAGE COMPONENT STYLES (single.php)
   ========================================== */

/* Breadcrumb Navigation */
.single-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 400;
    text-transform: none;
    margin-bottom: 20px;
    color: #7090b0;
    width: 100%;
    overflow: hidden;
}
.single-breadcrumb a {
    color: #7090b0;
    text-decoration: none;
    transition: color 0.2s ease;
}
.single-breadcrumb a:hover {
    color: #185fa5;
}
.single-breadcrumb i {
    font-size: 10px;
    color: #7090b0;
}
.single-breadcrumb .active-crumb {
    color: #185fa5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}

/* Post Header */
.single-header {
    margin-bottom: 24px;
}
.single-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #3a4d60;
    line-height: 1.1;
    margin-bottom: 12px;
}
.single-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    color: #7090b0;
    font-style: normal;
}

/* Post Author & Date Meta Container */
.single-meta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 24px;
}
.author-box {
    display: flex;
    align-items: center;
    gap: 12px;
}
.author-avatar-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, #1c2b3a 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 800;
    border: 2px solid var(--border-color);
}
.author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.author-name {
    font-family: var(--font-heading);
    font-size: 13.5px;
    font-weight: 700;
    color: var(--dark);
}
.author-email {
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}
.author-email:hover {
    color: var(--primary);
}
.post-dates {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.date-published, .date-updated {
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--text-muted);
}
.date-published {
    font-weight: 500;
}

/* Horizontal Share Bars (Top and Bottom) */
.single-share-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border: none;
    margin-bottom: 24px;
}
.share-bar-bottom {
    margin-top: 40px;
    margin-bottom: 30px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
}
.share-label {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--dark);
}
.share-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 500;
    text-transform: none; /* Sentence case matching Figma */
    text-decoration: none;
    padding: 6px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
}
.share-btn i {
    font-size: 14px;
    color: inherit;
}
.share-whatsapp {
    background-color: #e8f7ef;
    border: 1px solid #1b7a40;
    color: #1b7a40;
}
.share-whatsapp:hover {
    background-color: #1b7a40;
    color: var(--white);
}
.share-facebook {
    background-color: #e8f0f7;
    border: 1px solid #466ccc;
    color: #466ccc;
}
.share-facebook:hover {
    background-color: #466ccc;
    color: var(--white);
}
.share-x {
    background-color: #e8f3f7;
    border: 1px solid #02aaff;
    color: #02aaff;
}
.share-x:hover {
    background-color: #02aaff;
    color: var(--white);
}
.share-copy {
    background-color: #ffffff;
    border: 1px solid #7090b0;
    color: #7090b0;
}
.share-copy:hover {
    background-color: #7090b0;
    color: var(--white);
}
.share-email {
    background-color: #fce8e6;
    border: 1px solid #ea4335;
    color: #ea4335;
}
.share-email:hover {
    background-color: #ea4335;
    color: var(--white);
}
.share-btn:active {
    transform: translateY(0);
}

/* Post Featured Figure Image */
.single-figure {
    margin: 0 0 28px 0;
    width: 100%;
}
.single-post-img {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}
.single-caption {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 8px;
    text-align: left;
}

/* Article Body Content Typography */
.post-content {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    color: #3a4d60;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    border: none;
}
.post-content p {
    margin-bottom: 24px;
}
.post-content blockquote {
    border-left: 4px solid var(--primary);
    background-color: #f7f9fa;
    padding: 20px 24px;
    margin: 32px 0;
    border-radius: 0 8px 8px 0;
}
.post-content blockquote p {
    font-style: italic;
    font-size: 17px;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.6;
}
.post-content blockquote cite {
    font-family: var(--font-heading);
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    display: block;
}

/* Sidebar Widgets: Ad 300x250 Box */
.widget-ad-300x250 {
    width: 300px;
    height: 250px;
    background-color: #f2f4f6;
    border: 1px dashed var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    margin-left: auto;
    margin-right: auto;
}
.ad-placeholder-label {
    font-family: var(--font-heading);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.ad-placeholder-content {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: var(--border-color);
}

/* Sidebar Widgets: Text-to-Speech Player Widget */
.widget-audio-player {
    background-color: #1c2b3a;
    border-left: none;
    border-radius: 8px;
    padding: 0;
    margin-bottom: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.audio-player-mini {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    cursor: pointer;
    user-select: none;
}
.audio-player-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #185fa5; /* Default blue */
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: background-color 0.3s ease, transform 0.1s ease;
    flex-shrink: 0;
}
/* State Specific Icon Background Colors from Figma */
.widget-audio-player[data-state="default"] .audio-player-icon {
    background-color: #185fa5;
}
.widget-audio-player[data-state="playing"] .audio-player-icon {
    background-color: #18a528; /* Green */
}
.widget-audio-player[data-state="paused"] .audio-player-icon {
    background-color: #a56318; /* Orange */
}

.audio-player-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.audio-player-title {
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 600;
    color: #7090b0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.audio-player-desc {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    transition: color 0.2s ease;
}
.audio-player-toggle {
    font-size: 14px;
    color: #7090b0;
    padding: 5px;
    transition: transform 0.3s ease;
}

/* Expanded Player Body Elements */
.audio-divider {
    border: 0;
    border-top: 1px solid rgba(112, 144, 176, 0.25);
    margin: 0 16px;
}
.audio-player-body {
    padding: 0 16px 16px 16px;
}
.audio-player-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 0 12px 0;
}
.audio-time-elapsed, .audio-time-total {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 500;
    color: #7090b0;
    width: 32px;
    text-align: center;
}
.audio-progress-bar-track {
    flex-grow: 1;
    height: 4px;
    background-color: rgba(112, 144, 176, 0.2);
    border-radius: 2px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}
.audio-progress-bar-fill {
    height: 100%;
    background-color: #185fa5;
    width: 0%;
    border-radius: 2px;
    transition: width 0.1s linear;
}
.audio-player-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 8px 0 16px 0;
}
.audio-control-btn {
    background: transparent;
    border: none;
    color: #7090b0;
    font-size: 18px;
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease, transform 0.1s ease;
}
.audio-control-btn:hover {
    color: var(--white);
    transform: scale(1.1);
}
.audio-control-btn:active {
    transform: scale(1);
}
.audio-play-pause-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--white);
    color: #1c2b3a;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.1s ease, background-color 0.2s ease;
}
.audio-play-pause-circle:hover {
    transform: scale(1.05);
    background-color: #f7f9fa;
}
.audio-play-pause-circle:active {
    transform: scale(0.95);
}

.audio-player-extras {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0 4px 0;
}
.audio-voice-selector {
    display: flex;
    gap: 8px;
}
.audio-pill-btn {
    background: transparent;
    border: 1px solid rgba(112, 144, 176, 0.5);
    color: #7090b0;
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 600;
    text-transform: none;
    padding: 4px 12px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.audio-pill-btn:hover {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.8);
}
.audio-pill-btn.active {
    background-color: #185fa5;
    border-color: #185fa5;
    color: var(--white);
}
.audio-speed-selector .speed-btn {
    background-color: #185fa5;
    border-color: #185fa5;
    color: var(--white);
}
.audio-speed-selector .speed-btn:hover {
    background-color: #1c72c2;
    border-color: #1c72c2;
}


/* Sidebar Widgets: Related News cards */
.widget-related-news {
    background-color: #ffffff;
    border: 1px solid #c9d4e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 24px;
}
.widget-related-news .sidebar-widget-title {
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 600;
    color: #185fa5;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    border-left: none;
    padding-left: 0;
}
.related-cards-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.related-card-item {
    border-bottom: 1px solid #e8edf2;
    padding-bottom: 12px;
    margin-bottom: 12px;
}
.related-card-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}
.related-card-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.related-card-tag {
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 600;
    color: #185fa5;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.related-card-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}
.related-card-title a {
    color: #3a4d60;
    text-decoration: none;
    transition: color 0.2s ease;
}
.related-card-title a:hover {
    color: var(--primary);
}
.related-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--text-muted);
}



/* SITE MAIN HEADER NEW FIGMA LAYOUT */
.site-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.brand-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #185fa5;
    margin-left: 2px;
}

.header-print-block {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(112, 144, 176, 0.2);
    padding: 6px 16px;
    border-radius: 6px;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.2s, border-color 0.2s;
}
.header-print-block:hover {
    background-color: rgba(112, 144, 176, 0.05);
    border-color: rgba(24, 95, 165, 0.3);
}

.print-block-thumb img {
    width: 32px;
    height: 46px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
    display: block;
}

.print-block-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.print-block-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 600;
    color: #185fa5;
    letter-spacing: 1px;
}

.print-block-meta {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #3a4d60;
}

.header-search-block {
    display: block;
}

.header-search-form {
    display: flex;
    align-items: center;
    background-color: #f7f8fa;
    border-radius: 4px;
    padding: 6px 14px;
    width: 256px;
    height: 37px;
    border: 1px solid var(--border-color);
}

.header-search-form:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(24, 95, 165, 0.2);
}

.header-search-input {
    border: none;
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #3a4d60;
    width: 100%;
    outline: none;
}

.header-search-submit {
    border: none;
    background: transparent;
    color: #185fa5;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-actions-mobile {
    display: none;
}

/* Header responsive behavior (hide print/search/hamburger on desktop) */



/* Ad placeholder images */
.ad-placeholder-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Archive Listings Grid */
.archive-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

/* ==========================================
   DESKTOP ONLY STYLES (min-width: 1025px)
   ========================================== */
@media (min-width: 1025px) {
    /* From original @media (min-width: 993px) */
    .header-actions-mobile {
            display: none !important;
        }

}

/* ==========================================
   TABLET AND BELOW STYLES (max-width: 1024px)
   ========================================== */
@media (max-width: 1024px) {
    .archive-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    /* From original @media (max-width: 1024px) */
    .destaques-grid {
            grid-template-columns: 1fr;
        }
        
        .secondary-cards-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .category-grid-four {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .theme-column-cards {
            grid-template-columns: 1fr;
        }
        
        .footer-widgets {
            grid-template-columns: repeat(2, 1fr);
        }

        .footer-widget-column::before {
            display: none;
        }

    /* Health section: tablet shows 2 cols (hide ad box) */
    .health-layout {
        grid-template-columns: 1fr 1fr;
    }
    .health-ad-box {
        display: none;
    }

    /* From original @media (max-width: 992px) */
    .colunistas-grid {
            grid-template-columns: repeat(2, 1fr);
        }

    /* From original @media (max-width: 992px) */
    .single-meta-container {
            flex-direction: column;
            align-items: flex-start;
            gap: 12px;
        }
        .post-dates {
            text-align: left;
        }
        .single-share-bar {
            flex-direction: column;
            align-items: flex-start;
            gap: 12px;
        }

    /* From original @media (max-width: 992px) */
    .main-navigation {
            display: none !important;
        }
        .brand-tagline {
            display: none !important;
        }
        .header-print-block {
            display: none !important;
        }
        .header-search-block {
            display: none !important;
        }
        .header-actions-mobile {
            display: flex !important;
            align-items: center;
            gap: 16px;
        }
        .header-actions-mobile .header-search-icon-wrap,
        .header-actions-mobile .header-menu-icon-wrap {
            color: var(--dark);
            font-size: 20px;
            cursor: pointer;
            transition: color 0.2s;
        }
        .header-actions-mobile .header-search-icon-wrap:hover,
        .header-actions-mobile .header-menu-icon-wrap:hover {
            color: var(--primary);
        }

}

/* ==========================================
   SMARTPHONE ONLY STYLES (max-width: 767px)
   ========================================== */
@media (max-width: 767px) {
    .archive-cards-grid {
        grid-template-columns: 1fr;
    }
    /* From original @media (max-width: 768px) */
    .topbar {
            display: none;
        }
        
        .site-header-main .container {
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
        }
        
        .main-navigation ul {
            justify-content: center;
            gap: 14px;
        }
        
        .health-layout {
            grid-template-columns: 1fr;
        }
        
        .footer-widgets {
            grid-template-columns: 1fr;
        }

        .footer-cta-strip {
            flex-direction: column;
            align-items: stretch;
        }

        .footer-cta-newsletter .newsletter-form {
            flex-direction: column;
            max-width: 100%;
        }

        .footer-bottom {
            flex-direction: column;
            gap: 10px;
            text-align: center;
        }

    /* From original @media (max-width: 480px) */
    .secondary-cards-grid {
            grid-template-columns: 1fr;
        }
        
        .category-grid-four {
            grid-template-columns: 1fr;
        }

    /* From original @media (max-width: 768px) */
    .site-logo-img,
    .brand-logo-container .custom-logo {
            height: 60px;
        }

    /* From original @media (max-width: 576px) */
    .colunistas-grid {
            grid-template-columns: 1fr;
        }

    /* From original @media (max-width: 480px) */
    

}


.hero-main-card {
    background-size: cover;
    background-position: center;
}

.badge-exclusivo-categoria {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 2px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-block;
}

.section-colunistas {
    background-color: var(--light);
    padding: 48px 0;
}

.block-publicidade-container {
    margin-bottom: 32px;
}

.carousel-card-fallback {
    background-color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-weight: bold;
}

#topbar-weather {
    display: none;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

#weather-icon {
    color: #7090b0;
    font-size: 14px;
}

#weather-temp {
    font-weight: 700;
    color: #ffffff;
}

#weather-city {
    color: #7090b0;
}

/* ==========================================
   EDIÇÕES IMPRESSAS - Arquivo (Archive)
   ========================================== */
.edicoes-filtro-form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 16px;
    margin-bottom: 32px;
}

.edicoes-filtro-field {
    flex: 1 1 220px;
}

.edicoes-filtro-input,
.edicoes-filtro-select {
    width: 100%;
    border: 1px solid var(--border-color);
    background-color: var(--light);
    border-radius: 4px;
    padding: 10px 14px;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-color);
}

.edicoes-filtro-input:focus,
.edicoes-filtro-select:focus {
    outline: none;
    border-color: var(--primary);
}

.edicoes-filtro-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    background-color: var(--primary);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

.edicoes-filtro-submit:hover {
    background-color: var(--primary-hover);
    color: var(--white);
}

.edicoes-filtro-limpar {
    font-size: 12px;
    color: var(--text-muted);
    text-decoration: underline;
    white-space: nowrap;
}

.edicoes-filtro-limpar:hover {
    color: var(--primary);
}

.edicoes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

/* Capa da edição: usa classes próprias (não reaproveita .card-image-wrap,
   que tem altura fixa de 110px usada pelas listagens de notícias) */
.edicao-cover-wrap {
    background-color: var(--gray);
    overflow: hidden;
}

.edicao-cover-wrap img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}

.edicao-card-date {
    font-size: 11px;
    color: var(--text-muted);
}

.edicao-cover-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 286 / 429;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* Botão de acesso ao PDF dentro do .card-meta (classe própria, não altera .card-meta) */
.edicao-meta-pdf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    background-color: var(--primary);
    color: var(--white) !important;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.2s ease-in-out;
}

.edicao-meta-pdf-btn:hover {
    background-color: var(--primary-hover);
    color: var(--white) !important;
}

.edicao-meta-pdf-btn-disabled {
    background-color: var(--text-muted);
    cursor: not-allowed;
    opacity: 0.7;
}

.nav-pagination-wrap .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    margin: 0 4px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--white);
    color: var(--text-color);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
}

.nav-pagination-wrap .page-numbers.current {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.nav-pagination-wrap a.page-numbers:hover {
    border-color: var(--primary);
    color: var(--primary);
}

@media (max-width: 1024px) {
    .edicoes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .edicoes-grid {
        grid-template-columns: 1fr;
    }

    .edicoes-filtro-form {
        flex-direction: column;
        align-items: stretch;
    }

    .edicoes-filtro-submit {
        justify-content: center;
    }
}



