/* ==========================================================================
   Seu Horóscopo - Portal Editorial Claro, Leve & Profissional
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
    /* Cores do Tema Claro (Light Editorial) */
    --bg-main: #f8fafc;
    --bg-surface: #ffffff;
    --bg-subtle: #f1f5f9;
    --border-light: #e2e8f0;
    --border-hover: #cbd5e1;
    
    /* Cores Editoriais */
    --brand-primary: #1e1b4b; /* Indigo Escuro Elegante */
    --brand-accent: #b45309;  /* Dourado Âmbar/Bronze */
    --brand-accent-light: #fef3c7;
    --text-primary: #0f172a;  /* Grafite Escuro */
    --text-secondary: #475569;/* Cinza Leitura */
    --text-muted: #64748b;    /* Cinza Suave */
    
    /* Elementos (Apenas Cores Suaves de Fundo) */
    --bg-fogo: #fef2f2; --color-fogo: #991b1b; --border-fogo: #fecaca;
    --bg-terra: #f0fdf4; --color-terra: #166534; --border-terra: #bbf7d0;
    --bg-ar: #f0f9ff; --color-ar: #075985; --border-ar: #bae6fd;
    --bg-agua: #faf5ff; --color-agua: #6b21a8; --border-agua: #e9d5ff;

    /* Tipografia */
    --font-heading: 'Outfit', -apple-system, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
    
    /* Sombras e Raio */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 16px -2px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 10px 25px -5px rgba(15, 23, 42, 0.08);
    --transition: all 0.2s ease-in-out;
}

/* Reset Básico */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* Tipografia Editorial */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--brand-primary);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(1.8rem, 4vw, 2.75rem);
    margin-bottom: 0.75rem;
}

h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: clamp(1.15rem, 2.5vw, 1.4rem);
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 1rem;
}

a {
    color: var(--brand-accent);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: #92400e;
    text-decoration: underline;
}

/* ==========================================================================
   Header & Navegação Comercial
   ========================================================================== */
.site-header {
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--brand-primary);
    text-decoration: none;
}

.brand-logo .highlight {
    color: var(--brand-accent);
}

.brand-badge {
    background: var(--brand-primary);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 0.25rem;
    text-decoration: none;
}

.nav-link:hover, .nav-link.active {
    color: var(--brand-primary);
    text-decoration: none;
    border-bottom: 2px solid var(--brand-accent);
}

.mobile-menu-btn {
    display: none;
    background: #ffffff;
    color: var(--brand-primary);
    border: 1px solid var(--border-light);
    border-radius: 9999px;
    padding: 0.45rem 1.1rem;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease;
    letter-spacing: 0.02em;
}

.mobile-menu-btn:hover, .mobile-menu-btn:focus {
    background: var(--bg-subtle);
    color: var(--brand-accent);
    border-color: var(--brand-accent);
    box-shadow: 0 4px 10px rgba(180, 83, 9, 0.15);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    padding: 3rem 0 2rem;
    text-align: center;
}

.date-pill {
    display: inline-block;
    background: var(--brand-accent-light);
    border: 1px solid #fde68a;
    color: #92400e;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 2rem;
}

.search-box {
    max-width: 440px;
    margin: 0 auto;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 0.85rem 1.2rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: var(--font-body);
    outline: none;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.search-input:focus {
    border-color: var(--brand-accent);
    box-shadow: 0 0 0 3px rgba(180, 83, 9, 0.15);
}

/* ==========================================================================
   Grid dos 12 Signos (Cards Claros)
   ========================================================================== */
.section-header {
    margin: 2.5rem 0 1.5rem;
    text-align: center;
}

.sign-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 3.5rem;
}

.sign-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1.35rem;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
}

.sign-card:hover {
    transform: translateY(-3px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-md);
    text-decoration: none;
}

.sign-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.sign-symbol {
    font-size: 2rem;
    line-height: 1;
}

.element-tag {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
}

.tag-fogo { background: var(--bg-fogo); color: var(--color-fogo); border: 1px solid var(--border-fogo); }
.tag-terra { background: var(--bg-terra); color: var(--color-terra); border: 1px solid var(--border-terra); }
.tag-ar { background: var(--bg-ar); color: var(--color-ar); border: 1px solid var(--border-ar); }
.tag-agua { background: var(--bg-agua); color: var(--color-agua); border: 1px solid var(--border-agua); }

.sign-card h3 {
    font-size: 1.2rem;
    color: var(--brand-primary);
    margin-bottom: 0.2rem;
}

.sign-date-range {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.sign-summary {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-card-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brand-accent);
}

/* ==========================================================================
   Artigo em Destaque SEO (Leão)
   ========================================================================== */
.featured-box {
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-left: 4px solid var(--brand-accent);
    border-radius: var(--radius-md);
    padding: 2rem;
    margin-bottom: 3rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
    box-shadow: var(--shadow-sm);
}

.featured-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--brand-accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    display: block;
}

.btn-solid {
    display: inline-block;
    background: var(--brand-primary);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.65rem 1.4rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: var(--transition);
}

.btn-solid:hover {
    background: #2e1065;
    color: #ffffff;
    text-decoration: none;
}

.featured-symbol-box {
    background: var(--bg-subtle);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    text-align: center;
}

.featured-symbol-box .big-symbol {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.25rem;
}

/* ==========================================================================
   Página Individual de Horóscopo (Layout Editorial)
   ========================================================================== */
.horoscope-header {
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-light);
    padding: 2.5rem 0 2rem;
    margin-bottom: 2.5rem;
}

.horoscope-title-wrap {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1rem;
}

.header-zodiac-symbol {
    font-size: 3rem;
    line-height: 1;
}

.meta-tags-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.meta-tag-item {
    background: var(--bg-subtle);
    border: 1px solid var(--border-light);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.meta-tag-item strong {
    color: var(--text-primary);
}

.main-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    margin-bottom: 4rem;
}

.content-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 2.25rem;
    box-shadow: var(--shadow-sm);
}

.block-section {
    margin-bottom: 2rem;
}

.block-section h2, .block-section h3 {
    color: var(--brand-primary);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 0.4rem;
}

.indicators-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    background: var(--bg-subtle);
    border: 1px solid var(--border-light);
    padding: 1.25rem;
    border-radius: var(--radius-sm);
    text-align: center;
}

.ind-val {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--brand-accent);
}

.ind-lbl {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
}

/* Sidebar Editorial */
.sidebar-widget {
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1.35rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.sidebar-widget h3 {
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.sidebar-links {
    list-style: none;
}

.sidebar-links li {
    margin-bottom: 0.6rem;
}

.sidebar-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
}

.sidebar-links a:hover {
    color: var(--brand-accent);
}

/* ==========================================================================
   Páginas Legais (Termos / Privacidade)
   ========================================================================== */
.legal-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    margin: 2.5rem 0 4rem;
    box-shadow: var(--shadow-sm);
}

.legal-card h2 {
    margin-top: 1.75rem;
    font-size: 1.35rem;
}

.legal-card ul {
    margin: 0.75rem 0 1.25rem 1.5rem;
}

.legal-card li {
    margin-bottom: 0.4rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   Footer Editorial Comercial
   ========================================================================== */
.site-footer {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-light);
    padding: 3rem 0 1.5rem;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-brand p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
}

.footer-col h4 {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--brand-primary);
    margin-bottom: 1rem;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 0.4rem;
}

.footer-list a {
    color: var(--text-secondary);
    font-size: 0.875rem;
    text-decoration: none;
}

.footer-list a:hover {
    color: var(--brand-accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
    color: var(--text-muted);
    font-size: 0.825rem;
}

/* ==========================================================================
   Otimização Mobile Rigorosa (Mobile-First Responsiveness)
   ========================================================================== */
@media (max-width: 1024px) {
    .sign-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .main-layout {
        grid-template-columns: 1fr;
    }
    .featured-box {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .sign-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .header-container {
        height: 60px;
    }
    .main-nav {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: var(--bg-surface);
        padding: 1.25rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        border-bottom: 1px solid var(--border-light);
        box-shadow: var(--shadow-md);
    }
    .main-nav.active {
        display: flex;
    }
    .mobile-menu-btn {
        display: block;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    .indicators-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    .horoscope-title-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 640px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .main-layout {
        grid-template-columns: 1fr;
    }
    .sign-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    .indicators-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    .horoscope-title-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .interlink-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-callout-box {
        grid-template-columns: 1fr 1fr;
        padding: 1rem;
        gap: 0.75rem;
    }
    .content-card, .legal-card {
        padding: 1rem;
        box-sizing: border-box;
        overflow-x: hidden;
    }
}

@media (max-width: 480px) {
    .sign-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero-section {
        padding: 2rem 0 1.5rem;
    }
    .hero-callout-box {
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 0.75rem;
    }
    .interlink-grid {
        grid-template-columns: 1fr;
    }
}

/* Adição de Estilos para Imagem de Capa do Post (SEO Discover / 16:9) */
.post-hero-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    display: block;
    box-sizing: border-box;
}

.interlink-box {
    background: var(--bg-subtle);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-top: 2.5rem;
    box-sizing: border-box;
}

.interlink-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.6rem;
    margin-top: 1rem;
}

.interlink-item {
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brand-primary);
    text-decoration: none;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-break: break-word;
}

.interlink-item:hover {
    border-color: var(--brand-accent);
    color: var(--brand-accent);
    text-decoration: none;
}

/* ==========================================================================
   ESTILOS DE BLOG MAGAZINE EDITORIAL (PADRÃO OURO COMPLETO)
   ========================================================================== */

/* Big Blog Featured Card */
.blog-featured-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-featured-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.blog-featured-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.blog-featured-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.blog-featured-card:hover .blog-featured-img-wrap img {
    transform: scale(1.05);
}

.blog-tag-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(30, 27, 75, 0.85);
    backdrop-filter: blur(4px);
    color: #fef3c7;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.blog-featured-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-meta-bar {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-featured-content h2 {
    font-size: 1.75rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    border-bottom: none;
    padding-bottom: 0;
}

.blog-featured-content h2 a {
    color: var(--brand-primary);
    text-decoration: none;
}

.blog-featured-content h2 a:hover {
    color: var(--brand-accent);
}

.blog-featured-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Grid de Posts do Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.75rem;
}

.blog-post-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.blog-post-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-hover);
}

.blog-card-img-link {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--bg-subtle);
}

.blog-card-img-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.blog-post-card:hover .blog-card-img-link img {
    transform: scale(1.06);
}

.blog-card-img-link .element-tag {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.65rem;
    border-radius: 9999px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.blog-card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.blog-card-body h3 {
    font-size: 1.15rem;
    line-height: 1.35;
    margin-bottom: 0.6rem;
    border-bottom: none;
    padding-bottom: 0;
}

.blog-card-body h3 a {
    color: var(--brand-primary);
    text-decoration: none;
}

.blog-card-body h3 a:hover {
    color: var(--brand-accent);
}

.blog-card-body p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.blog-card-read-more {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--brand-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.blog-card-read-more:hover {
    color: var(--brand-accent);
}

@media (max-width: 900px) {
    .blog-featured-card {
        grid-template-columns: 1fr;
    }
    .blog-featured-content {
        padding: 1.5rem;
    }
}

@media (max-width: 640px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

/* Paginação de Posts Recentes */
.pagination-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 2.25rem;
}

.page-btn {
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    color: var(--brand-primary);
    padding: 0.45rem 0.9rem;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.page-btn:hover, .page-btn.active {
    background: var(--brand-primary);
    color: #ffffff;
    border-color: var(--brand-primary);
}

.page-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}



/* Visual Spacing & Editorial Divider */
.hero-callout-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 1.1rem;
    background: var(--bg-subtle);
    border: 1px solid var(--border-light);
    border-left: 4px solid var(--brand-accent);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-sm);
    margin-bottom: 2.25rem;
    box-shadow: var(--shadow-sm);
}

.hero-callout-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero-callout-item span {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--brand-accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-callout-item strong {
    font-size: 0.92rem;
    color: var(--brand-primary);
}

.editorial-divider {
    height: 2px;
    background: linear-gradient(90deg, var(--brand-accent), var(--border-light) 60%, transparent);
    border: none;
    margin: 2.5rem 0;
    opacity: 0.85;
}

.block-section {
    margin-bottom: 2.5rem;
}

.block-section p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
}
