/*
Theme Name: Hntlr Theme
Theme URI: https://hntlr.com/theme
Author: Sênior WordPress Developer & AI Studio
Author URI: https://hntlr.com
Description: Um tema WordPress elegante, ultralimpador, focado em leitura estruturada para blogs de recrutamento, seleção, ATS e mercado de trabalho. Inspirado no Medium, Substack e Vercel Blog. Oferece alta performance, acessibilidade e conversão otimizada.
Version: 1.0.0
License: GNU GPLv2 or later
Text Domain: hntlr-theme

=== NFORMAÇÕES DE DESIGN ===
- Metodologia: BEM (Block, Element, Modifier)
- Abordagem: Mobile First, CSS Puro, Sem Frameworks
- Foco: Alta legibilidade, tipografia confortável, CTAs estratégicos para captação de leads.
*/

/* ==========================================================================
   1. VARIÁVEIS CSS (DESIGN TOKENS) & FONTES
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Outfit:wght@100..900&family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap');

:root {
    /* Color Palette */
    --color-bg: #ffffff;
    --color-text-main: #0f172a; /* Gray 900 */
    --color-text-muted: #475569; /* Gray 600 */
    --color-text-light: #64748b; /* Gray 400 */
    --color-border: #e2e8f0; /* Gray 100 */
    --color-border-dark: #cbd5e1; /* Gray 200 */
    --color-primary: #000000;
    --color-primary-hover: #1f2937;
    --color-accent: #2563eb; /* ATS Blue */
    --color-accent-bg: #eff6ff;
    --color-accent-hover: #0052cc;
    --color-success: #16a34a;
    --color-success-bg: #f0fdf4;
    --color-neutral-bg: #f8fafc;

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-display: 'Outfit', 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* Font Sizes (Fluid Scale) */
    --font-size-xs: 0.75rem;     /* 12px */
    --font-size-sm: 0.875rem;    /* 14px */
    --font-size-base: 1.0625rem; /* 17px - Comfortable for reading */
    --font-size-md: 1.25rem;     /* 20px */
    --font-size-lg: 1.5rem;      /* 24px */
    --font-size-xl: 2rem;        /* 32px */
    --font-size-xxl: 2.75rem;    /* 44px */

    /* Typography Settings */
    --line-height-body: 1.625;
    --line-height-headings: 1.25;

    /* Layout Constraints */
    --width-content: 680px;      /* Perfect readable line length (Medium-style) */
    --width-page: 1140px;
    --width-blog: 56rem;        /* General layout width */
    
    /* Spacing Units (4px Base) */
    --spacing-xs: 0.25rem;       /* 4px */
    --spacing-sm: 0.5rem;        /* 8px */
    --spacing-md: 1rem;          /* 16px */
    --spacing-lg: 1.5rem;        /* 24px */
    --spacing-xl: 2rem;          /* 32px */
    --spacing-xxl: 3rem;         /* 48px */
    --spacing-huge: 4.5rem;      /* 72px */

    /* Transitions & Focus */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    --focus-ring: 0 0 0 3px rgba(37, 99, 235, 0.4);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
}

/* Dark Mode Preference Support (Opcional, com foco visual minimalista) */
@media (prefers-color-scheme: dark2) {
    /* Mantido essencialmente Light por padrão de legibilidade extrema */
}

/* ==========================================================================
   2. RESETS & COMBINAÇÃO BÁSICA
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-sans);
    font-size: var(--font-size-base);
    line-height: var(--line-height-body);
    color: var(--color-text-main);
    background-color: var(--color-bg);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: var(--line-height-headings);
    color: var(--color-text-main);
    margin-top: 0;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.025em;
}

/* Links */
a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast), border-color var(--transition-fast);
}

a:hover {
    color: var(--color-accent);
}

/* Media Elements */
img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Selection */
::selection {
    background-color: var(--color-accent-bg);
    color: var(--color-accent);
}

/* Screen Reader Text rule (WordPress standard) */
.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;
    width: 1px;
    word-wrap: normal !important;
}

/* ==========================================================================
   3. ESTRUTURA GLOBAL & CONTAINERS
   ========================================================================== */
.hntlr-site {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100dvh;
}

.hntlr-container {
    width: 100%;
    max-width: var(--width-page);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--spacing-lg);
    padding-right: var(--spacing-lg);
}

.hntlr-container--readable {
    max-width: var(--width-content);
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
}

/* ==========================================================================
   4. CABEÇALHO (HEADER) - BEM: hntlr-header
   ========================================================================== */
.hntlr-header {
    border-bottom: 1px solid var(--color-border);
    background-color: var(--color-bg);
}

.hntlr-header__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

/* Logo */
.hntlr-header__logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: var(--font-size-lg);
    letter-spacing: -0.04em;
    color: var(--color-text-main);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.hntlr-header__logo-dot {
    color: var(--color-accent);
}

/* Menus de navegação */
.hntlr-header__nav-menu {
    display: none; /* Mobile default */
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--spacing-xl);
}

@media (min-width: 768px) {
    .hntlr-header__nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        padding: 0;
        border-bottom: none;
        box-shadow: none;
        z-index: auto;
    }
}

.hntlr-header__nav-menu a {
    font-family: var(--font-sans);
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    padding: 6px 2px;
    transition: color var(--transition-fast);
    border-bottom: 2px solid transparent;
}

.hntlr-header__nav-menu a:hover {
    color: #000000;
}

.hntlr-header__nav-menu .current-menu-item > a,
.hntlr-header__nav-menu .current_page_item > a,
.hntlr-header__nav-menu .current-post-ancestor > a,
.hntlr-header__nav-menu .current-category-ancestor > a {
    color: #000000 !important;
    border-bottom-color: #000000;
}

/* Call to action no cabeçalho (Paridade total com o Mock) */
.hntlr-header__actions {
    display: none;
}

@media (min-width: 640px) {
    .hntlr-header__actions {
        display: flex;
        align-items: center;
        gap: 20px;
        font-family: var(--font-sans);
        font-size: 11px;
        text-transform: uppercase;
        font-weight: 800;
        letter-spacing: 0.05em;
    }
}

.hntlr-header__actions-login {
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
    text-decoration: none;
}

.hntlr-header__actions-login:hover {
    color: #000000;
}

.hntlr-header__actions-cta {
    color: var(--color-accent) !important;
    transition: color var(--transition-fast);
    text-decoration: none;
}

.hntlr-header__actions-cta:hover {
    color: #0052cc !important;
}

/* Área de Apresentação da Marca (Logo Principal do Blog) */
.hntlr-brand-hero {
    text-align: center;
    padding: var(--spacing-xxl) 0 var(--spacing-xl);
    background-color: var(--color-bg);
}

.hntlr-brand-hero__title {
    font-family: var(--font-display);
    font-size: var(--font-size-xxl);
    font-weight: 900;
    letter-spacing: -0.05em;
    margin-bottom: var(--spacing-xs);
    color: var(--color-text-main);
}

.hntlr-brand-hero__tagline {
    font-size: var(--font-size-md);
    color: var(--color-text-muted);
    font-weight: 400;
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Logos de Autoridade */
.hntlr-authority {
    margin-top: var(--spacing-xl);
    border-top: 1px dashed var(--color-border-dark);
    padding-top: var(--spacing-lg);
}

.hntlr-authority__title {
    font-size: var(--font-size-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-light);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.hntlr-authority__logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xl) var(--spacing-xxl);
    opacity: 0.55;
    filter: grayscale(100%);
    transition: opacity var(--transition-normal);
}

.hntlr-authority__logos:hover {
    opacity: 0.85;
}

.hntlr-authority__logo {
    height: 24px;
    width: auto;
    object-fit: contain;
}

/* Menu Mobile Toggle Button */
.hntlr-header__toggle {
    display: block;
    background: none;
    border: none;
    color: var(--color-text-main);
    cursor: pointer;
    padding: var(--spacing-xs);
}

/* ==========================================================================
   5. CONTEÚDO PRINCIPAL (INDEX & SINGLE)
   ========================================================================== */
.hntlr-main {
    flex: 1;
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-huge);
}

/* Post Card em Listagem (Blog Index) */
.hntlr-post-card {
    border-bottom: 1px solid var(--color-border);
    padding-bottom: var(--spacing-xxl);
    margin-bottom: var(--spacing-xxl);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

@media (min-width: 768px) {
    .hntlr-post-card {
        flex-direction: row;
        gap: var(--spacing-xl);
    }
}

.hntlr-post-card:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.hntlr-post-card__thumbnail {
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background-color: var(--color-neutral-bg);
    aspect-ratio: 16/9;
}

@media (min-width: 768px) {
    .hntlr-post-card__thumbnail {
        width: 33.333%;
        flex-shrink: 0;
        aspect-ratio: 4/3;
        height: 160px;
    }
}

.hntlr-post-card__thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    transition: transform var(--transition-normal);
}

.hntlr-post-card:hover .hntlr-post-card__thumbnail img {
    transform: scale(1.04);
}

.hntlr-post-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hntlr-post-card__meta {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-accent);
    margin-bottom: var(--spacing-sm);
}

.hntlr-post-card__meta-separator {
    color: var(--color-text-light);
    font-size: 8px;
}

.hntlr-post-card__meta-date {
    color: var(--color-text-light);
    font-weight: 400;
}

.hntlr-post-card__meta-read-time {
    color: var(--color-text-light);
    font-weight: 400;
}

.hntlr-post-card__title {
    font-size: 15px;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    transition: color var(--transition-fast);
}

@media (min-width: 640px) {
    .hntlr-post-card__title {
        font-size: var(--font-size-lg);
    }
}

.hntlr-post-card__title a:hover {
    color: var(--color-accent);
}

.hntlr-post-card__excerpt,
.hntlr-post-card__excerpt p {
    color: #475569;
    font-size: 12px;
    line-height: 1.5;
    margin-top: 0;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (min-width: 640px) {
    .hntlr-post-card__excerpt,
    .hntlr-post-card__excerpt p {
        font-size: 15px;
        line-height: 1.625;
        margin-bottom: 16px;
    }
}

.hntlr-post-card__read-more {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-text-main);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border-bottom: 1px solid var(--color-text-main);
    padding-bottom: 2px;
    transition: color var(--transition-fast), border-bottom-color var(--transition-fast);
}

.hntlr-post-card__read-more:hover {
    color: var(--color-accent);
    border-bottom-color: var(--color-accent);
}

.hntlr-post-card__read-more .arrow {
    transition: transform var(--transition-normal);
}

.hntlr-post-card:hover .hntlr-post-card__read-more .arrow {
    transform: translateX(4px);
}

/* ESTRUTURA DO ARTIGO (single.php) */
.hntlr-article {
    background-color: var(--color-bg);
}

.hntlr-article__header {
    text-align: left;
    margin-bottom: var(--spacing-xl);
}

.hntlr-article__meta {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-md);
}

.hntlr-article__category {
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hntlr-article__title {
    font-size: var(--font-size-xl);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.15;
    margin-bottom: var(--spacing-md);
    color: var(--color-text-main);
}

.hntlr-article__excerpt {
    font-size: var(--font-size-md);
    line-height: 1.5;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-xl);
    font-weight: 400;
}

/* Imagem Destacada (Abaixo da sessão Neste Artigo, responsiva e contida) */
.hntlr-featured-wrapper {
    width: 100%;
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    border: 1px solid var(--color-border-light);
}

.hntlr-featured-image {
    width: 100%;
    max-height: 420px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
}

/* Conteúdo WYSIWYG do WordPress (.hntlr-entry-content) */
.hntlr-entry-content {
    font-family: var(--font-sans);
    font-size: var(--font-size-base);
    color: var(--color-text-main);
    line-height: var(--line-height-body);
}

.hntlr-entry-content p {
    margin-top: 0;
    margin-bottom: var(--spacing-lg);
}

/* Primeiro parágrafo em Drop cap ou maior para dar ar de Substack/Medium */
.hntlr-entry-content > p:first-of-type {
    font-size: 1.125rem;
    line-height: 1.68;
}

.hntlr-entry-content h2, 
.hntlr-entry-content h3 {
    font-family: var(--font-display);
    color: var(--color-text-main);
    margin-top: var(--spacing-xxl);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.03em;
}

.hntlr-entry-content h2 {
    font-size: var(--font-size-lg);
    font-weight: 800;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: var(--spacing-sm);
}

.hntlr-entry-content h3 {
    font-size: var(--font-size-md);
    font-weight: 700;
}

.hntlr-entry-content ul,
.hntlr-entry-content ol {
    margin-top: 0;
    margin-bottom: var(--spacing-lg);
    padding-left: var(--spacing-xl);
}

.hntlr-entry-content li {
    margin-bottom: var(--spacing-xs);
}

.hntlr-entry-content blockquote {
    margin: var(--spacing-xl) 0;
    padding-left: var(--spacing-lg);
    border-left: 4px solid var(--color-accent);
    font-style: italic;
    font-size: var(--font-size-md);
    color: var(--color-text-muted);
}

.hntlr-entry-content code {
    font-family: var(--font-mono);
    font-size: 0.9em;
    background-color: var(--color-neutral-bg);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
}

.hntlr-entry-content pre {
    font-family: var(--font-mono);
    font-size: var(--font-size-sm);
    background-color: var(--color-neutral-bg);
    padding: var(--spacing-md);
    overflow-x: auto;
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-lg);
    border: 1px solid var(--color-border);
}

/* ==========================================================================
   6. SEÇÃO DE CONVERSÃO EXCLUSIVA (CTA) - BEM: hntlr-cta
   ========================================================================== */
.hntlr-cta {
    margin-top: 28px;
    margin-bottom: 28px;
    padding: 18px 16px;
    background-color: #ff0099;
    border: none;
    border-radius: var(--radius-lg);
    text-align: left;
}

@media (min-width: 640px) {
    .hntlr-cta {
        margin-top: var(--spacing-huge);
        margin-bottom: var(--spacing-huge);
        padding: var(--spacing-xl);
    }
}

.hntlr-cta__container {
    text-align: left;
}

.hntlr-cta__badge {
    display: inline-block;
    background-color: #ffffff;
    color: #ff0099 !important;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 3px 8px;
    border-radius: 4px;
    margin-bottom: var(--spacing-sm);
}

@media (min-width: 640px) {
    .hntlr-cta__badge {
        font-size: 10px;
        padding: 4px 10px;
        margin-bottom: var(--spacing-md);
    }
}

.hntlr-cta__title {
    font-size: 16px;
    font-weight: 850;
    margin-top: 0;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: #ffffff !important;
}

@media (min-width: 640px) {
    .hntlr-cta__title {
        font-size: var(--font-size-lg);
        letter-spacing: -0.03em;
    }
}

.hntlr-cta__text {
    color: #ffffff !important;
    margin-bottom: var(--spacing-md);
    font-size: 12px;
    line-height: 1.5;
}

@media (min-width: 640px) {
    .hntlr-cta__text {
        margin-bottom: var(--spacing-lg);
        font-size: var(--font-size-base);
        line-height: 1.6;
    }
}

/* Botões do CTA */
.hntlr-cta__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.hntlr-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    text-align: center;
}

.hntlr-cta__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.hntlr-cta__btn:active {
    transform: scale(0.98);
}

.hntlr-cta__btn--primary {
    background-color: var(--color-text-main) !important;
    color: var(--color-bg) !important;
    border: 1.5px solid var(--color-text-main) !important;
}

.hntlr-cta__btn--primary:hover {
    background-color: var(--color-primary-hover) !important;
    border-color: var(--color-primary-hover) !important;
}

.hntlr-cta__btn--secondary {
    background-color: var(--color-bg) !important;
    color: var(--color-text-main) !important;
    border: 1.5px solid var(--color-bg) !important;
}

.hntlr-cta__btn--secondary:hover {
    background-color: var(--color-neutral-bg) !important;
    border-color: var(--color-neutral-bg) !important;
}

.hntlr-cta__or {
    font-size: var(--font-size-xs);
    color: var(--color-text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   7. ARTIGOS RELACIONADOS - BEM: hntlr-related
   ========================================================================== */
.hntlr-related {
    border-top: 1px solid var(--color-border-dark);
    padding-top: 40px;
}

.hntlr-related__label {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--color-text-muted);
    display: block;
    margin-bottom: 16px;
    font-family: var(--font-sans);
}

.hntlr-related__list {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 16px;
    scroll-behavior: smooth;
    margin-left: -16px;
    padding-left: 16px;
    margin-right: -16px;
    padding-right: 16px;
    font-family: var(--font-sans);
}

/* Hide scrollbar for Chrome, Safari and Opera */
.hntlr-related__list::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.hntlr-related__list {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

@media (min-width: 640px) {
    .hntlr-related__list {
        margin-left: 0;
        padding-left: 0;
        margin-right: 0;
        padding-right: 0;
    }
}

.hntlr-related__card-wrapper {
    width: 58%;
    flex-shrink: 0;
    scroll-snap-align: start;
    cursor: pointer;
    transition: all 0.2s ease;
}

.hntlr-related__card-wrapper:hover .hntlr-related__card-image img {
    opacity: 1;
    transform: scale(1.05);
}

@media (min-width: 640px) {
    .hntlr-related__card-wrapper {
        width: 42%;
    }
}

@media (min-width: 768px) {
    .hntlr-related__card-wrapper {
        width: 31%;
    }
}

.hntlr-related__card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    border-radius: 4px;
    background-color: var(--color-border);
    margin-bottom: 8px;
}

.hntlr-related__card-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.95;
    transition: all 0.3s ease;
}

.hntlr-related__card-heading {
    font-size: 12px;
    font-weight: 800;
    color: var(--color-text-main);
    line-height: 1.35;
    margin: 0;
    font-family: var(--font-sans);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 3.15rem; /* stabilizes the text block height so columns match perfectly */
    transition: color 0.2s ease;
}

.hntlr-related__card-wrapper:hover .hntlr-related__card-heading {
    color: var(--color-accent);
}

.hntlr-related__card-category {
    font-size: 10px;
    color: #374151;
    margin-top: 4px;
    font-family: var(--font-mono);
    text-transform: uppercase;
    font-weight: 700;
}

/* ==========================================================================
   8. RODAPÉ (FOOTER) - BEM: hntlr-footer
   ========================================================================== */
.hntlr-footer {
    border-top: 1px solid var(--color-border);
    background-color: var(--color-neutral-bg);
    padding: var(--spacing-xxl) 0;
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

.hntlr-footer__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
    text-align: center;
}

.hntlr-footer__logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: var(--font-size-base);
    letter-spacing: -0.04em;
    color: var(--color-text-main);
}

.hntlr-footer__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-lg);
    list-style: none;
    margin: 0;
    padding: 0;
}

.hntlr-footer__link a {
    color: var(--color-text-muted);
}

.hntlr-footer__link a:hover {
    color: var(--color-text-main);
}

.hntlr-footer__copyright {
    font-size: var(--font-size-xs);
    color: var(--color-text-light);
}

/* ==========================================================================
   9. RESPONSIVIDADE (MEDIA QUERIES) - MOBILE FIRST
   ========================================================================== */

/* Dispositivos Médios (Tablets & Desktops Pequenos) e Maiores */
@media (min-width: 768px) {
    /* Font Size increases for typography size requested */
    :root {
        --font-size-base: 1.125rem; /* 18px for large, luxurious reading */
        --font-size-md: 1.375rem;    /* 22px */
        --font-size-lg: 1.75rem;     /* 28px */
        --font-size-xl: 2.5rem;      /* 40px */
        --font-size-xxl: 3.5rem;     /* 56px */
    }

    /* Recuo de cabeçalho */
    .hntlr-header__nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        padding: 0;
        border-bottom: none;
        box-shadow: none;
        z-index: auto;
    }

    .hntlr-header__toggle {
        display: none;
    }

    /* Imagem Destacada do Artigo */
    .hntlr-featured-image {
        height: 480px; /* Um pouco mais alto em telas grandes, mas contido no limite */
    }

    /* Grid de Artigos Relacionados */
    .hntlr-related__list {
        flex-wrap: nowrap;
        gap: 16px;
    }

    /* CTA Layout lateral ou central avançado */
    .hntlr-cta__actions {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-lg);
    }

    /* Flex-based Footer align */
    .hntlr-footer__container {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* ==========================================================================
   10. ESTILO ADICIONAIS DE COMENTÁRIOS E PAGINAÇÃO PADRÃO DO WP
   ========================================================================== */
.hntlr-pagination {
    display: flex;
    justify-content: space-between;
    margin-top: var(--spacing-huge);
    border-top: 1px solid var(--color-border);
    padding-top: var(--spacing-xl);
}

.hntlr-pagination__link {
    font-weight: 600;
    font-size: var(--font-size-sm);
}

.hntlr-comments-area {
    margin-top: var(--spacing-huge);
    border-top: 1px solid var(--color-border-dark);
    padding-top: var(--spacing-xl);
}

/* ==========================================================================
   11. RECURSOS DE COMPARTILHAMENTO (MOBILE DRAWER)
   ========================================================================== */

/* FLOATING SHARE BUTTON FOR ALL EXPERIENCES */
.hntlr-mobile-share-trigger {
    display: flex;
    position: fixed;
    bottom: 76px;
    right: 20px;
    z-index: 1000;
    width: 48px;
    height: 48px;
    border-radius: 9999px;
    background-color: var(--color-accent);
    color: #ffffff;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.12), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

@media (min-width: 768px) {
    .hntlr-mobile-share-trigger {
        bottom: 24px;
    }
}

.hntlr-mobile-share-trigger:active {
    transform: scale(0.95);
}

.hntlr-mobile-share-trigger:hover {
    background-color: #0052cc;
}

/* SHARE SHEET DRAWER & BACKDROP FOR ALL EXPERIENCES */
.hntlr-share-backdrop {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.hntlr-share-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
}

.hntlr-share-sheet {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-bg);
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    box-shadow: 0 -10px 25px -5px rgba(0, 0, 0, 0.1), 0 -8px 10px -6px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 24px;
    padding-bottom: 40px;
    max-width: 448px;
    margin: 0 auto;
    font-family: var(--font-sans);
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.hntlr-share-sheet.is-open {
    transform: translateY(0);
    pointer-events: auto;
}

.hntlr-share-sheet__handle {
    width: 48px;
    height: 4px;
    background-color: var(--color-border-dark);
    border-radius: 9999px;
    margin: 0 auto 16px auto;
}

.hntlr-share-sheet__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.hntlr-share-sheet__title {
    font-size: 14px;
    font-weight: 900;
    color: var(--color-text-main);
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin: 0;
}

.hntlr-share-sheet__subtitle {
    font-size: 11px;
    color: #6b7280;
    margin: 2px 0 0 0;
}

.hntlr-share-sheet__close {
    font-size: 11px;
    font-weight: 700;
    font-family: var(--font-mono);
    color: var(--color-text-light);
    background-color: var(--color-border);
    padding: 6px 12px;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.hntlr-share-sheet__close:active {
    transform: scale(0.95);
}

.hntlr-share-sheet__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    row-gap: 24px;
    column-gap: 12px;
}

.hntlr-share-sheet__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
}

.hntlr-share-sheet__icon-wrapper {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    color: var(--color-bg);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.1s ease;
}

.hntlr-share-sheet__item:active .hntlr-share-sheet__icon-wrapper {
    transform: scale(0.9);
}

.hntlr-share-sheet__item--whatsapp .hntlr-share-sheet__icon-wrapper { background-color: #25d366; }
.hntlr-share-sheet__item--linkedin .hntlr-share-sheet__icon-wrapper { background-color: #0a66c2; }
.hntlr-share-sheet__item--twitter .hntlr-share-sheet__icon-wrapper { background-color: #000000; }
.hntlr-share-sheet__item--facebook .hntlr-share-sheet__icon-wrapper { background-color: #1877f2; }
.hntlr-share-sheet__item--threads .hntlr-share-sheet__icon-wrapper { background-color: #111111; }
.hntlr-share-sheet__item--reddit .hntlr-share-sheet__icon-wrapper { background-color: #ff4500; }
.hntlr-share-sheet__item--substack .hntlr-share-sheet__icon-wrapper { background-color: #ff6719; }

.hntlr-share-sheet__item--copy .hntlr-share-sheet__icon-wrapper {
    background-color: var(--color-text-muted);
}
.hntlr-share-sheet__item--copy.copied .hntlr-share-sheet__icon-wrapper {
    background-color: #22c55e !important;
}

.hntlr-share-sheet__label {
    font-size: 10px;
    font-weight: 800;
    color: #374151;
    letter-spacing: -0.01em;
}

/* Custom Success Toast style for copies */
.hntlr-toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background-color: var(--color-text-main);
    color: var(--color-bg);
    padding: 10px 20px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 600;
    font-family: var(--font-sans);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.hntlr-toast.is-visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.hntlr-toast__icon {
    color: #22c55e;
}

/* Responsive helpers for menu parity */
.hntlr-mobile-only {
    display: block;
}

@media (min-width: 768px) {
    .hntlr-mobile-only {
        display: none !important;
    }
}

/* Mobile Bottom Navigation */
.hntlr-mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-bg);
    border-top: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.06);
    z-index: 999;
    padding: 10px 0;
    display: flex;
    flex-direction: row;
}

.hntlr-mobile-bottom-nav__menu {
    display: flex;
    justify-content: space-around;
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
}

.hntlr-mobile-bottom-nav__menu li a {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--color-text-muted);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

@media (min-width: 768px) {
    .hntlr-mobile-bottom-nav {
        display: none !important;
    }
}

/* ==========================================================================
   12. SUMÁRIO (TOC), SUBSCRIPTION CARD & SCROLL DISCLAIMER
   ========================================================================== */

/* Table of Contents (TOC) */
.hntlr-toc {
    margin-bottom: 32px;
    padding: 24px;
    background-color: var(--color-neutral-bg);
    border: 1px solid var(--color-border-dark);
    border-radius: 12px;
    font-family: var(--font-sans);
}

.hntlr-toc__header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.hntlr-toc__header i {
    color: #2563eb;
    font-size: 16px;
}

.hntlr-toc__title {
    margin: 0;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-main);
}

.hntlr-toc__nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hntlr-toc__link {
    display: flex;
    align-items: start;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.hntlr-toc__link:hover {
    color: #2563eb;
    transform: translateX(2px);
}

.hntlr-toc__number {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    color: #2563eb;
    opacity: 0.7;
}

.hntlr-toc__text {
    line-height: 1.4;
}

.hntlr-toc__text:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}


/* Scroll Disclaimer & Bounce Arrows */
.hntlr-scroll-disclaimer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 32px 0;
    font-family: var(--font-sans);
    user-select: none;
}

.hntlr-scroll-disclaimer__label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-light);
    margin-bottom: 8px;
}

.hntlr-scroll-disclaimer__btn {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #065f46;
    transition: all 0.3s ease;
    outline: none;
}

.hntlr-scroll-disclaimer__btn:hover {
    color: var(--color-accent);
    transform: scale(1.1);
}

.hntlr-scroll-disclaimer__btn:active {
    transform: scale(0.95);
}

.hntlr-scroll-disclaimer__arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hntlr-scroll-disclaimer__arrow {
    font-size: 18px;
    animation: hntlr-bounce 2s infinite;
}

.hntlr-scroll-disclaimer__arrow--delay {
    margin-top: -10px;
    animation-delay: 0.15s;
}

@keyframes hntlr-bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-6px);
    }
    60% {
        transform: translateY(-3px);
    }
}


/* Subscription Card (CTA de Assinatura) */
.hntlr-scard {
    margin: 48px 0;
    padding: 32px 24px;
    border-radius: 16px;
    background-color: #1260b1;
    border: 1px solid #0d4a88;
    position: relative;
    overflow: hidden;
    user-select: none;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    font-family: var(--font-sans);
}

@media (min-width: 640px) {
    .hntlr-scard {
        padding: 40px;
    }
}

/* Organic Background Gradients */
.hntlr-scard__gradient-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 192px;
    height: 192px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 9999px;
    filter: blur(40px);
    pointer-events: none;
}

.hntlr-scard__gradient-2 {
    position: absolute;
    bottom: -48px;
    left: -48px;
    width: 240px;
    height: 240px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 9999px;
    filter: blur(40px);
    pointer-events: none;
}

.hntlr-scard__content {
    position: relative;
    z-index: 10;
}

/* Header */
.hntlr-scard__header {
    display: flex;
    align-items: start;
    gap: 16px;
    margin-bottom: 20px;
}

.hntlr-scard__icon-wrapper {
    padding: 12px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}

.hntlr-scard__icon-wrapper i {
    font-size: 20px;
}

.hntlr-scard__tag {
    display: block;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #bfdbfe;
    margin-bottom: 6px;
}

.hntlr-scard__title {
    margin: 0;
    font-size: 22px;
    font-weight: 900;
    color: var(--color-bg);
    line-height: 1.25;
    letter-spacing: -0.02em;
}

@media (min-width: 640px) {
    .hntlr-scard__title {
        font-size: 28px;
    }
}

.hntlr-scard__description {
    font-size: 14px;
    line-height: 1.6;
    color: #dbeafe;
    margin-bottom: 32px;
    margin-top: 0;
    font-weight: 500;
}

@media (min-width: 640px) {
    .hntlr-scard__description {
        font-size: 15px;
    }
}

/* Form layout */
.hntlr-scard__form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

@media (min-width: 640px) {
    .hntlr-scard__form-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.hntlr-scard__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hntlr-scard__label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #bfdbfe;
}

.hntlr-scard__input {
    width: 100%;
    padding: 12px 16px;
    background-color: var(--color-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-main);
    transition: all 0.2s ease;
}

.hntlr-scard__input::placeholder {
    color: #94a3b8;
}

.hntlr-scard__input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25);
}

.hntlr-scard__input.has-error {
    border-color: #fca5a5;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

.hntlr-scard__error {
    font-size: 11px;
    font-weight: 700;
    color: #fecaca;
    background-color: rgba(127, 29, 29, 0.4);
    padding: 4px 10px;
    border-radius: 6px;
    align-self: start;
    border: 1px solid rgba(153, 27, 27, 0.4);
    margin-top: 4px;
}

/* Submit button */
.hntlr-scard__submit {
    width: 100%;
    padding: 16px;
    background-color: var(--color-bg);
    color: #1260b1;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.hntlr-scard__submit:hover:not(:disabled) {
    background-color: #eff6ff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.hntlr-scard__submit:active:not(:disabled) {
    transform: scale(0.99);
}

.hntlr-scard__submit:disabled {
    opacity: 0.75;
    cursor: not-allowed;
}

.hntlr-scard__submit i {
    font-size: 16px;
    transition: transform 0.2s ease;
}

.hntlr-scard__submit:hover i {
    transform: translateX(4px);
}

.hntlr-scard__spinner {
    animation: hntlr-spin 1s linear infinite;
    margin-right: 8px;
}

@keyframes hntlr-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Success View */
.hntlr-scard__success {
    display: none; /* Controlled by active state class .is-success on .hntlr-scard */
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 0;
    position: relative;
    z-index: 10;
}

.hntlr-scard.is-success .hntlr-scard__success {
    display: flex;
}

.hntlr-scard.is-success .hntlr-scard__form-view {
    display: none;
}

.hntlr-scard__success-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-bg);
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.hntlr-scard__success-icon i {
    font-size: 32px;
}

.hntlr-scard__success-title {
    margin: 0 0 12px 0;
    font-size: 24px;
    font-weight: 900;
    color: var(--color-bg);
    letter-spacing: -0.01em;
}

@media (min-width: 640px) {
    .hntlr-scard__success-title {
        font-size: 30px;
    }
}

.hntlr-scard__success-text {
    font-size: 14px;
    line-height: 1.6;
    color: #dbeafe;
    max-width: 440px;
    margin: 0 0 32px 0;
}

.hntlr-scard__reset-btn {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-bg);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.hntlr-scard__reset-btn:hover {
    background-color: rgba(255, 255, 255, 0.15);
    text-decoration: underline;
}

/* Bottom Article Social Sharing (Parity with App.tsx lines 1127:1183) */
.hntlr-post-share {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 32px;
    padding-bottom: 32px;
    font-family: var(--font-sans);
}

@media (min-width: 640px) {
    .hntlr-post-share {
        flex-direction: row;
    }
}

.hntlr-post-share__label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #334155;
}

.hntlr-post-share__list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hntlr-post-share__link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #334155;
    background-color: #f1f5f9;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.hntlr-post-share__link i {
    font-size: 16px;
}

.hntlr-post-share__link:hover {
    color: var(--color-bg);
    transform: scale(1.05);
}

.hntlr-post-share__link--linkedin:hover { background-color: #0a66c2; }
.hntlr-post-share__link--twitter:hover { background-color: #000000; }
.hntlr-post-share__link--whatsapp:hover { background-color: #25d366; }
.hntlr-post-share__link--facebook:hover { background-color: #1877f2; }

/* Responsive Video Container for YouTube Links & Gutenberg embeds */
.hntlr-video-container,
.wp-block-embed-youtube,
.wp-block-embed {
    width: 100%;
    margin: var(--spacing-xl) 0;
}

.hntlr-video-wrapper,
.wp-block-embed__wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    border: 1.5px solid var(--color-border-dark);
    background-color: #000000;
}

.hntlr-video-wrapper iframe,
.wp-block-embed__wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.hntlr-video-caption,
.wp-element-caption,
figcaption {
    font-size: 13px;
    color: var(--color-text-muted);
    text-align: center;
    margin-top: 10px;
    font-style: italic;
    font-family: var(--font-sans);
}

/* ==========================================================================
   DOUBLE GRID
   ========================================================================== */
.hntlr-double-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 48px;
    margin-bottom: 8px;
}

@media (min-width: 640px) {
    .hntlr-double-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hntlr-double-grid .hntlr-post-card {
    display: flex;
    flex-direction: column;
    text-align: left;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.hntlr-double-grid .hntlr-post-card__thumbnail {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    margin-bottom: 16px;
}

.hntlr-double-grid .hntlr-post-card__meta--small {
    margin-bottom: 8px;
}

.hntlr-double-grid .hntlr-post-card__meta--small .hntlr-post-card__meta-cat {
    font-size: 10px;
}

.hntlr-double-grid .hntlr-post-card__meta--small .hntlr-post-card__meta-date {
    font-size: 11px;
}

.hntlr-double-grid .hntlr-post-card__title--small {
    font-size: 18px;
    line-height: 1.35;
    margin-bottom: 8px;
}

.hntlr-double-grid .hntlr-post-card__excerpt--small,
.hntlr-double-grid .hntlr-post-card__excerpt--small p {
    font-size: 14px;
    line-height: 1.625;
    margin-bottom: 12px;
}

.hntlr-double-grid .hntlr-post-card__read-more {
    font-size: 11px;
    border-bottom: none;
    padding-bottom: 0;
}

.hntlr-double-grid .hntlr-post-card__read-more:hover {
    border-bottom: none;
}

.hntlr-bento {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .hntlr-bento {
        grid-template-columns: repeat(12, 1fr);
    }
}

.hntlr-bento__main {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    background-color: var(--color-bg);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    color: inherit;
    text-align: left;
}

.hntlr-bento__main:hover {
    border-color: var(--color-border-dark);
}

@media (min-width: 768px) {
    .hntlr-bento__main {
        grid-column: span 8;
    }
}

.hntlr-bento__image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    margin-bottom: 20px;
}

.hntlr-bento__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.hntlr-bento__main:hover .hntlr-bento__image-wrapper img {
    transform: scale(1.02);
}

.hntlr-bento__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: var(--color-accent);
    color: var(--color-bg);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 10px;
    border-radius: 9999px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.hntlr-bento__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.hntlr-bento__meta-cat {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hntlr-bento__meta-dot {
    font-size: 8px;
    color: var(--color-text-light);
}

.hntlr-bento__meta-date,
.hntlr-bento__meta-read {
    font-size: 12px;
    color: var(--color-text-muted);
    font-family: var(--font-sans);
}

.hntlr-bento__title {
    font-size: 18px;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--color-text-main);
    line-height: 1.3;
    margin-bottom: 8px;
    transition: color var(--transition-normal);
}

@media (min-width: 640px) {
    .hntlr-bento__title {
        font-size: 24px;
        line-height: 1.25;
        margin-bottom: 12px;
    }
}

.hntlr-bento__main:hover .hntlr-bento__title {
    color: var(--color-accent);
}

.hntlr-bento__excerpt,
.hntlr-bento__excerpt p {
    font-size: 12px;
    color: var(--color-text-muted);
    font-family: var(--font-sans);
    line-height: 1.5;
    margin: 0 0 12px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (min-width: 640px) {
    .hntlr-bento__excerpt,
    .hntlr-bento__excerpt p {
        font-size: 15px;
        line-height: 1.6;
        margin: 0 0 16px 0;
    }
}

.hntlr-bento__read-more {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-text-main);
    border-bottom: 1px solid var(--color-text-main);
    padding-bottom: 2px;
    transition: all var(--transition-normal);
}

.hntlr-bento__read-more .arrow {
    display: inline-block;
    transition: transform var(--transition-normal);
}

.hntlr-bento__main:hover .hntlr-bento__read-more {
    color: var(--color-accent);
    border-color: var(--color-accent);
}

.hntlr-bento__main:hover .hntlr-bento__read-more .arrow {
    transform: translateX(4px);
}

.hntlr-bento__sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (min-width: 768px) {
    .hntlr-bento__sidebar {
        grid-column: span 4;
    }
}

.hntlr-bento__card-stat {
    background-color: var(--color-neutral-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    min-height: 180px;
    text-align: left;
}

.hntlr-bento__tag {
    font-size: 10px;
    font-weight: 700;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 8px;
}

.hntlr-bento__metric-group {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 4px;
}

.hntlr-bento__metric {
    font-size: 36px;
    font-weight: 900;
    font-family: var(--font-display);
    color: var(--color-text-main);
    line-height: 1;
}

.hntlr-bento__label-pill {
    font-size: 11px;
    font-weight: 700;
    color: #ef4444;
    background-color: #fef2f2;
    padding: 2px 8px;
    border-radius: 9999px;
}

.hntlr-bento__stat-text {
    font-size: 12px;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin: 8px 0 0 0;
}

.hntlr-bento__stat-link {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-accent);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-align: left;
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
}

.hntlr-bento__stat-link:hover {
    color: var(--color-accent-hover);
}

.hntlr-bento__card-dark {
    background-color: var(--color-text-main);
    color: var(--color-bg);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    min-height: 180px;
    text-align: left;
}

.hntlr-bento__tag-dark {
    font-size: 10px;
    font-weight: 700;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 8px;
}

.hntlr-bento__metric-dark {
    font-size: 36px;
    font-weight: 900;
    font-family: var(--font-display);
    color: var(--color-bg);
    line-height: 1;
}

.hntlr-bento__label-pill-dark {
    font-size: 11px;
    font-weight: 700;
    color: #1e3a8a;
    background-color: #dbeafe;
    padding: 2px 8px;
    border-radius: 9999px;
}

.hntlr-bento__stat-text-dark {
    font-size: 12px;
    color: #cbd5e1;
    line-height: 1.5;
    margin: 8px 0 0 0;
}

.hntlr-bento__stat-link-dark {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-accent);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-align: left;
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    transition: color var(--transition-normal);
}

.hntlr-bento__stat-link-dark:hover {
    color: var(--color-accent-hover);
}

.hntlr-header__login-btn:hover {
    background-color: var(--color-neutral-bg) !important;
}

/* ==========================================================================
   GOOGLE NEWS FEATURED BLOCK
   ========================================================================== */
.hntlr-google-news-featured {
    background-color: var(--color-text-main);
    color: var(--color-bg);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    cursor: pointer;
    transition: background-color var(--transition-normal);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    margin-bottom: 48px;
}

.hntlr-google-news-featured:hover {
    background-color: #1f2937;
}

@media (min-width: 640px) {
    .hntlr-google-news-featured {
        flex-direction: row;
        padding: 32px;
    }
}

.hntlr-google-news-featured__content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hntlr-google-news-featured__icon {
    width: 56px;
    height: 56px;
    border-radius: 9999px;
    background-color: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--color-accent);
    flex-shrink: 0;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.hntlr-google-news-featured__title {
    font-size: 20px;
    font-weight: 700;
    font-family: var(--font-display);
    letter-spacing: -0.02em;
    color: var(--color-bg);
    margin: 0 0 4px 0;
}

.hntlr-google-news-featured__text {
    font-size: 14px;
    color: #cbd5e1;
    font-family: var(--font-sans);
    line-height: 1.6;
    margin: 0;
}

.hntlr-google-news-featured__button {
    white-space: nowrap;
    background-color: var(--color-accent);
    color: var(--color-bg);
    font-weight: 700;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 9999px;
    border: none;
    transition: background-color var(--transition-normal);
    cursor: pointer;
}

.hntlr-google-news-featured__button:hover {
    background-color: var(--color-accent-hover);
}

/* ==========================================================================
   RECOMMENDED FEED
   ========================================================================== */
.hntlr-recommended-feed {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 8px;
    margin-bottom: 8px;
}

.hntlr-recommended-feed__header {
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 8px;
}

.hntlr-recommended-feed__title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    margin: 0;
    font-family: var(--font-sans);
}

.hntlr-recommended-feed__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hntlr-recommended-feed__item {
    cursor: pointer;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 20px;
    transition: all var(--transition-normal);
}

.hntlr-recommended-feed__item:last-child {
    border-bottom: none;
    padding-bottom: 20px;
}

.hntlr-recommended-feed__item-content {
    min-width: 0;
    flex: 1;
}

.hntlr-recommended-feed__item-meta {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 4px;
}

.hntlr-recommended-feed__item-cat {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-accent);
    letter-spacing: 0.05em;
}

.hntlr-recommended-feed__item-dot {
    color: var(--color-text-light);
    font-size: 8px;
}

.hntlr-recommended-feed__item-read {
    font-size: 10px;
    color: var(--color-text-muted);
    font-family: var(--font-sans);
}

.hntlr-recommended-feed__item-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text-main);
    line-height: 1.35;
    margin: 0;
    font-family: var(--font-display);
    transition: color var(--transition-normal);
}

.hntlr-recommended-feed__item:hover .hntlr-recommended-feed__item-title {
    color: var(--color-accent);
}

.hntlr-recommended-feed__item-excerpt {
    font-size: 12px;
    color: var(--color-text-muted);
    margin: 6px 0 0 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: var(--font-sans);
}

.hntlr-recommended-feed__item-arrow {
    color: var(--color-text-light);
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
    padding-top: 4px;
    transition: all var(--transition-normal);
}

.hntlr-recommended-feed__item:hover .hntlr-recommended-feed__item-arrow {
    color: var(--color-accent);
}



