/* ================================================================
   NewsPortal — todas as cores via variáveis CSS
   Dark mode: redefine só as variáveis → tudo muda instantaneamente
================================================================ */

/* ── Variáveis — light mode ─────────────────────────────── */
:root {
    --red:          #e63946;
    --blue:         #1a56db;
    --nav-h:        52px;

    /* cores que mudam no dark mode */
    --bg:           #f9fafb;
    --surface:      #ffffff;
    --surface-alt:  #f0f1f5;
    --text:         #121212;
    --text-mid:     #444444;
    --text-muted:   #888888;
    --text-nav:     #333333;
    --border:       #e5e7eb;
    --nav-bg:       #ffffff;
    --nav-shadow:   0 2px 8px rgba(0,0,0,.06);
    --input-bg:     #ffffff;
    --shadow-sm:    0 1px 4px rgba(0,0,0,.07);
    --shadow-md:    0 6px 20px rgba(0,0,0,.10);
}

/* ── Variáveis — dark mode (só isso já muda tudo) ───────── */
html.dark-mode {
    --bg:           #0f172a;
    --surface:      #1e293b;
    --surface-alt:  #334155;
    --text:         #f1f5f9;
    --text-mid:     #cbd5e1;
    --text-muted:   #64748b;
    --text-nav:     #cbd5e1;
    --border:       #334155;
    --nav-bg:       #1e293b;
    --nav-shadow:   none;
    --input-bg:     #0f172a;
    --shadow-sm:    none;
    --shadow-md:    none;
}

/* ── Base ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
body {
    font-family: 'Inter', sans-serif;
    background: var(--bg); color: var(--text);
    margin: 0; font-size: 15px;
    transition: background .25s, color .25s;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── Topbar ─────────────────────────────────────────────── */
.topbar {
    background: #1a1a2e; color: #a0a8c0;
    font-size: .73rem; padding: .35rem 0; letter-spacing: .02em;
}
html.dark-mode .topbar { background: #0c1221; }
.topbar-slogan { font-weight: 600; color: var(--red); }

/* ── Header ─────────────────────────────────────────────── */
.site-header {
    background: var(--surface);
    border-bottom: 3px solid var(--red);
    box-shadow: var(--shadow-sm);
    transition: background .25s;
}

/* Logo — Opção 2: broadcast + bicolor */
.site-logo {
    display: flex; align-items: center; gap: .55rem;
    text-decoration: none;
}
.site-logo-icon {
    font-size: 1.85rem; color: var(--red);
    line-height: 1; flex-shrink: 0;
    transition: color .2s;
}
.site-logo-text {
    font-size: 1.5rem; font-weight: 900;
    letter-spacing: -.04em; color: var(--text);
    line-height: 1; transition: color .2s;
}
.site-logo-text span { color: var(--red); }
.site-logo:hover .site-logo-icon { color: #c1121f; }
.site-logo:hover .site-logo-text span { color: #c1121f; }

/* ── Navigation ─────────────────────────────────────────── */
.main-nav {
    background: var(--nav-bg);
    border-bottom: 1px solid var(--border);
    position: sticky; top: 0; z-index: 200;
    box-shadow: var(--nav-shadow);
    transition: background .25s, border-color .25s;
}
.mn-inner {
    display: flex; align-items: center;
    justify-content: space-between; height: var(--nav-h);
}
.mn-links {
    display: flex; align-items: center;
    overflow-x: auto; scrollbar-width: none;
}
.mn-links::-webkit-scrollbar { display: none; }

.mn-link {
    display: inline-flex; align-items: center; gap: .3rem;
    font-size: .8rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .06em;
    color: var(--text-nav); padding: 0 .9rem;
    height: var(--nav-h); white-space: nowrap;
    border-bottom: 3px solid transparent;
    transition: color .15s, border-color .15s;
}
.mn-link:hover,
.mn-link.mn-active { color: var(--text); border-bottom-color: var(--red); }
.mn-chevron { font-size: .6rem; opacity: .5; transition: transform .2s; }
.mn-dropdown { position: relative; }
.mn-dropdown:hover .mn-chevron { transform: rotate(180deg); }

/* Submenu dropdown */
.mn-submenu {
    display: none;
    position: absolute; top: 100%; left: 0;
    background: #fff; min-width: 200px;
    border-top: 3px solid var(--red);
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    z-index: 300; border-radius: 0 0 6px 6px;
    padding: .4rem 0;
}
html.dark-mode .mn-submenu { background: #1e293b; border-color: var(--red); }

.mn-dropdown:hover .mn-submenu { display: block; }

.mn-submenu-link {
    display: block; padding: .55rem 1.1rem;
    font-size: .8rem; font-weight: 600;
    color: #333; text-decoration: none;
    transition: background .15s, color .15s;
    white-space: nowrap;
}
html.dark-mode .mn-submenu-link { color: #cbd5e1; }
.mn-submenu-link:hover { background: #f5f5f5; color: var(--red); }
html.dark-mode .mn-submenu-link:hover { background: #334155; color: var(--red); }

.mn-icons { display: flex; align-items: center; gap: .15rem; flex-shrink: 0; }
.mn-icon-btn {
    background: none; border: none; cursor: pointer;
    width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; color: var(--text-muted);
    transition: background .15s, color .15s;
}
.mn-icon-btn:hover { background: var(--surface-alt); color: var(--text); }

/* Search expansível */
.mn-search-box {
    display: none; padding: .5rem 0 .65rem;
    border-top: 1px solid var(--border);
}
.mn-search-box.show { display: block; }
.mn-search-box form { display: flex; }
.mn-search-box input {
    flex: 1; padding: .45rem .85rem;
    border: 1px solid var(--border); border-right: none;
    border-radius: 6px 0 0 6px; font-size: .9rem; outline: none;
    background: var(--input-bg); color: var(--text);
    transition: background .25s, border-color .15s, color .25s;
}
.mn-search-box input:focus { border-color: var(--red); }
.mn-search-box button {
    background: var(--red); color: #fff; border: none;
    padding: .45rem .9rem; border-radius: 0 6px 6px 0; cursor: pointer;
}

/* ── Main ───────────────────────────────────────────────── */
.main-content { padding: 1.5rem 0 3rem; }

/* ── Hero grid ──────────────────────────────────────────── */
.hero-grid {
    display: grid;
    grid-template-columns: 65% 35%;
    gap: 15px;
    height: 520px;
}
.hero-main,
.hero-secondary {
    position: relative; display: block;
    overflow: hidden; text-decoration: none;
    background: #1a1a1a;
}
.hero-main img,
.hero-secondary img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; opacity: .9;
    transition: opacity .3s, transform .4s;
}
.hero-main:hover img,
.hero-secondary:hover img { opacity: .7; transform: scale(1.03); }
.hero-side { display: grid; grid-template-rows: 1fr 1fr; gap: 15px; }
.hero-overlay {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    justify-content: space-between; padding: .85rem 1rem;
    background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.25) 50%, rgba(0,0,0,0) 75%);
}
.hero-featured-badge {
    display: inline-block;
    background: var(--red); color: #fff;
    font-size: .63rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: .1em;
    padding: .18rem .55rem; border-radius: 2px;
    align-self: flex-start; line-height: 1.5;
}
.hero-bottom { display: flex; flex-direction: column; gap: .5rem; }
.hero-title {
    color: #fff; font-size: 1.55rem;
    font-weight: 800; line-height: 1.25;
    text-shadow: 0 2px 6px rgba(0,0,0,.6); margin: 0;
}
.hero-title-sm { font-size: 1.05rem; font-weight: 700; line-height: 1.3; }
.hero-meta { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.hero-cat-badge {
    display: inline-block;
    background: var(--blue); color: #fff;
    font-size: .63rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .06em;
    padding: .18rem .55rem; border-radius: 2px; line-height: 1.5;
}
.hero-date { color: #d5d5d5; font-size: .75rem; font-weight: 500; }

/* ── Section title ──────────────────────────────────────── */
.section-title {
    font-size: .9rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .07em;
    color: var(--text); padding-bottom: .5rem;
    margin-bottom: 1.25rem; border-bottom: 3px solid var(--red);
    display: flex; align-items: center; gap: .4rem;
}
.section-title i { color: var(--red); }

/* ── Category section ───────────────────────────────────── */
.category-section { margin-bottom: 3rem; }
.category-header {
    display: flex; align-items: center;
    justify-content: space-between; margin-bottom: 1.25rem;
}
.category-more {
    font-size: .75rem; font-weight: 600; color: var(--red);
    display: flex; align-items: center; gap: .25rem;
}
.category-more:hover { opacity: .8; }

/* ── News card ──────────────────────────────────────────── */
.news-card {
    background: var(--surface); border-radius: 10px; overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .2s, box-shadow .2s, background .25s;
    text-decoration: none; display: flex; flex-direction: column; height: 100%;
}
.news-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.news-card img { width: 100%; height: 130px; object-fit: cover; }
.news-card-img-placeholder {
    width: 100%; height: 130px; background: var(--surface-alt);
    display: flex; align-items: center; justify-content: center;
}
.news-card-img-placeholder i { font-size: 1.6rem; color: var(--text-muted); }
.news-card-body { padding: .85rem; flex: 1; display: flex; flex-direction: column; }
.news-card-source { font-size: .67rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--red); margin-bottom: .3rem; }
.news-card-title { font-size: .85rem; font-weight: 600; color: var(--text); line-height: 1.4; flex: 1; }
.news-card-meta { font-size: .72rem; color: var(--text-muted); margin-top: .4rem; }

/* ── Highlight cards ────────────────────────────────────── */
.highlight-card {
    background: var(--surface); border-radius: 12px; overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .2s, box-shadow .2s, background .25s;
    text-decoration: none; display: flex; flex-direction: column; height: 100%;
}
.highlight-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.highlight-card img { width: 100%; height: 160px; object-fit: cover; }
.highlight-img-placeholder {
    width: 100%; height: 160px; background: var(--surface-alt);
    display: flex; align-items: center; justify-content: center;
}
.highlight-img-placeholder i { font-size: 2rem; color: var(--text-muted); }
.highlight-body { padding: 1rem; flex: 1; display: flex; flex-direction: column; }
.highlight-source { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--red); margin-bottom: .35rem; }
.highlight-title { font-size: .9rem; font-weight: 700; color: var(--text); line-height: 1.4; flex: 1; }
.highlight-meta { font-size: .75rem; color: var(--text-muted); margin-top: .5rem; }

/* ── Article ────────────────────────────────────────────── */
.article-header { margin-bottom: 2rem; }
.article-category-badge {
    display: inline-block; background: var(--red); color: #fff;
    font-size: .72rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .08em; padding: .2rem .65rem; border-radius: 4px; margin-bottom: .75rem;
}
.article-title { font-size: 2rem; font-weight: 800; line-height: 1.2; margin-bottom: 1rem; color: var(--text); }
.article-meta { color: var(--text-muted); font-size: .85rem; margin-bottom: 1.5rem; }
.article-featured-img { width: 100%; max-height: 480px; object-fit: cover; border-radius: 12px; margin-bottom: 2rem; }
.article-content { font-size: 1rem; line-height: 1.8; color: var(--text-mid); }
.article-summary { font-size: 1.1rem; font-weight: 500; color: var(--text-mid); border-left: 4px solid var(--red); padding-left: 1rem; margin-bottom: 1.5rem; }

/* ── Page hero ──────────────────────────────────────────── */
.page-hero {
    background: var(--surface); border-radius: 12px;
    padding: 1.5rem; margin-bottom: 2rem; box-shadow: var(--shadow-sm);
    transition: background .25s;
}
.page-hero h1 { font-size: 1.5rem; font-weight: 800; margin: 0; color: var(--text); }

/* ── Pagination ─────────────────────────────────────────── */
.pagination .page-link { color: var(--text); border-radius: 8px; margin: 0 2px; background: var(--surface); border-color: var(--border); }
.pagination .page-item.active .page-link { background: var(--red); border-color: var(--red); color: #fff; }
.pagination .page-link:hover { color: var(--red); }

/* ── Empty state ────────────────────────────────────────── */
.empty-state { text-align: center; padding: 4rem 1rem; color: var(--text-muted); }
.empty-state i { font-size: 3rem; display: block; margin-bottom: 1rem; }

/* ── Footer ─────────────────────────────────────────────── */
.site-footer { background: #1a1a2e; color: #c8cfe0; margin-top: 2rem; }
html.dark-mode .site-footer { background: #0c1221; }
.site-footer p,
.site-footer li,
.site-footer span,
.site-footer .text-muted { color: #a0a8c0 !important; }
.footer-brand { font-size: 1.2rem; font-weight: 800; color: #fff; }
.footer-brand i { color: var(--red); }
.footer-title { font-weight: 700; color: #fff; font-size: .85rem; text-transform: uppercase; letter-spacing: .05em; margin-bottom: .75rem; }
.footer-link { color: #a0a8c0; font-size: .85rem; }
.footer-link:hover { color: var(--red); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); color: #6b7280; }

/* ── Category section (abaixo do hero) ─────────────────── */
.gn-cat-section {
    border-top: 3px solid var(--border);
    padding-top: .65rem;
    margin-bottom: 2.5rem;
}
.gn-cat-head {
    display: flex; align-items: center;
    justify-content: space-between; margin-bottom: 1.25rem;
}
.gn-cat-name {
    font-size: 1.05rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: .06em;
    color: var(--text); position: relative; white-space: nowrap;
}
.gn-cat-name::after {
    content: ''; position: absolute;
    left: 0; bottom: -6px;
    width: 40px; height: 3px;
    background: var(--accent, var(--red));
}

/* Sub-abas de fonte */
.gn-cat-tabs {
    display: flex; align-items: center; gap: 0;
    overflow-x: auto; scrollbar-width: none;
}
.gn-cat-tabs::-webkit-scrollbar { display: none; }
.gn-cat-tab {
    font-size: .75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .06em;
    color: var(--text-muted); padding: 0 .85rem;
    border-bottom: 2px solid transparent;
    white-space: nowrap; cursor: default;
}
.gn-cat-tab-active { color: var(--text); font-weight: 800; }
.gn-cat-tab-link {
    color: var(--text-muted); text-decoration: none;
    display: flex; align-items: center; gap: .25rem;
}
.gn-cat-tab-link:hover { color: var(--red); }

/* ── Big card (Layout 1) — imagem 16:9, sem border-radius ── */
.gn-big-card { display: flex; flex-direction: column; height: 100%; }

.gn-big-card-img-wrap {
    width: 100%; aspect-ratio: 16 / 9;
    overflow: hidden; border-radius: 0;
    background: var(--surface-alt); display: block;
}
.gn-big-card-img {
    width: 100%; height: 100%; object-fit: cover;
    display: block; transition: transform .35s;
}
.gn-big-card:hover .gn-big-card-img { transform: scale(1.03); }
.gn-big-card-placeholder {
    width: 100%; aspect-ratio: 16 / 9;
    background: var(--surface-alt); border-radius: 0;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted); font-size: 2rem;
}

.gn-big-card-body {
    padding: .9rem 0;
    flex: 1; display: flex; flex-direction: column; gap: .55rem;
}
.gn-big-card-title {
    font-size: 1.1rem; font-weight: 800; line-height: 1.3;
    color: var(--text); display: block;
}
.gn-big-card-title:hover { color: var(--red); }

/* Linha de meta: [badge] | Fonte | Data */
.gn-big-card-meta {
    display: flex; align-items: center; gap: .5rem; flex-wrap: wrap;
}
.gn-meta-badge {
    display: inline-block; color: #fff;
    font-size: .63rem; font-weight: 800; text-transform: uppercase;
    letter-spacing: .08em; padding: .18rem .6rem; border-radius: 2px;
    line-height: 1.5;
}
.gn-meta-sep  { color: var(--border); font-size: .85rem; }
.gn-meta-source-text { font-size: .78rem; color: var(--text-mid); font-weight: 600; }
.gn-meta-date { font-size: .78rem; color: var(--text-muted); }

.gn-big-card-summary {
    font-size: .88rem; color: var(--text-mid);
    line-height: 1.6; margin: 0;
    display: -webkit-box; -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; overflow: hidden;
}
.gn-read-more {
    font-size: .85rem; font-weight: 600;
    color: var(--text); text-decoration: none;
    align-self: flex-start; margin-top: auto;
}
.gn-read-more:hover { color: var(--red); }

/* ── Small card (Layout 1) — imagem 4:3, sem border-radius ─ */
.gn-small-card {
    display: flex; gap: 1rem; align-items: flex-start;
    padding: .9rem 0; border-bottom: 1px solid var(--border);
    text-decoration: none;
}
.gn-small-card:last-child { border-bottom: none; }

.gn-small-card-img-wrap {
    width: 150px; flex-shrink: 0;
    aspect-ratio: 4 / 3; overflow: hidden;
    border-radius: 0; background: var(--surface-alt);
}
.gn-small-card-img {
    width: 100%; height: 100%; object-fit: cover;
    display: block; transition: transform .3s;
}
.gn-small-card:hover .gn-small-card-img { transform: scale(1.04); }
.gn-small-card-placeholder {
    width: 150px; flex-shrink: 0; aspect-ratio: 4 / 3;
    background: var(--surface-alt); border-radius: 0;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted); font-size: 1.2rem;
}
.gn-small-card-body {
    flex: 1; display: flex; flex-direction: column; gap: .4rem;
    padding-top: .05rem;
}
.gn-small-card-title {
    font-size: .92rem; font-weight: 700; line-height: 1.4;
    color: var(--text);
}
.gn-small-card:hover .gn-small-card-title { color: var(--red); }
.gn-small-card-meta {
    font-size: .75rem; color: var(--text-muted);
    display: flex; align-items: center; gap: .35rem;
}
.gn-small-card-meta .gn-meta-source { color: var(--text-mid); font-weight: 600; }

/* ── Banner 728×90 ──────────────────────────────────────── */
.gn-banner-728 {
    width: 100%; background: #1e1e1e;
    border-radius: 6px; padding: .9rem 2rem;
    display: flex; align-items: center; gap: 1.5rem;
    color: #fff; overflow: hidden; position: relative;
}
.gn-banner-728::before {
    content: ''; position: absolute;
    right: -40px; top: -40px;
    width: 160px; height: 160px;
    border-radius: 50%; background: rgba(255,255,255,.04);
}
.gn-banner-728::after {
    content: ''; position: absolute;
    right: 60px; top: 10px;
    width: 90px; height: 90px;
    border-radius: 50%; background: rgba(255,255,255,.03);
}
.gn-banner-728 i { font-size: 1.8rem; color: var(--red); flex-shrink: 0; }
.gn-banner-name { font-size: 1.1rem; font-weight: 800; letter-spacing: -.02em; white-space: nowrap; }
.gn-banner-tagline { font-size: .85rem; color: #aaa; flex: 1; }
.gn-banner-size {
    font-size: .8rem; font-weight: 700; color: #777;
    letter-spacing: .06em; margin-left: auto; white-space: nowrap; position: relative; z-index: 1;
}

/* ── Setas de navegação ──────────────────────────────────── */
.gn-cat-arrows { display: flex; gap: 4px; }
.gn-arrow-btn {
    width: 32px; height: 32px; border: 1px solid var(--border);
    background: var(--surface); border-radius: 3px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: .85rem; color: var(--text-mid);
    transition: background .15s, color .15s;
}
.gn-arrow-btn:hover { background: var(--text); color: #fff; border-color: var(--text); }

/* ── Carrossel (Layout 3) ───────────────────────────────── */
.gn-carousel {
    overflow: hidden;
    position: relative;
}
.gn-carousel-track {
    display: flex;
    gap: 15px;
    transition: transform .4s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}
/* Cada card ocupa calc(33.33% - gap) */
.gn-carousel-track .gn-overlay-card {
    flex: 0 0 calc(33.333% - 10px);
    min-width: 0;
}

/* ── Overlay card (3º bloco) ────────────────────────────── */
.gn-overlay-card {
    position: relative; display: block;
    overflow: hidden; border-radius: 4px;
    background: #1a1a1a; text-decoration: none;
    aspect-ratio: 1 / 1;
}
.gn-overlay-card img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; opacity: .88;
    transition: opacity .3s, transform .4s;
}
.gn-overlay-card:hover img { opacity: .65; transform: scale(1.04); }
.gn-overlay-card-body {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    justify-content: space-between;
    padding: .85rem 1rem;
    background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.2) 50%, rgba(0,0,0,0) 72%);
}
.gn-overlay-card-bottom { display: flex; flex-direction: column; gap: .45rem; }
.gn-overlay-card-title {
    color: #fff; font-size: 1.05rem; font-weight: 800;
    line-height: 1.3; text-shadow: 0 2px 6px rgba(0,0,0,.6);
}

/* ── Grid card 3 colunas ────────────────────────────────── */
.gn-grid-card {
    display: flex; flex-direction: column;
    text-decoration: none; height: 100%;
}
.gn-grid-card-img-wrap {
    width: 100%; aspect-ratio: 4 / 3;
    overflow: hidden; border-radius: 4px;
    background: var(--surface-alt);
}
.gn-grid-card-img-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    display: block; transition: transform .35s;
}
.gn-grid-card:hover .gn-grid-card-img-wrap img { transform: scale(1.04); }
.gn-grid-card-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted); font-size: 2rem;
}
.gn-grid-card-body { padding: .75rem 0; flex: 1; display: flex; flex-direction: column; gap: .5rem; }
.gn-grid-card-title {
    font-size: .95rem; font-weight: 700; line-height: 1.35;
    color: var(--text);
}
.gn-grid-card:hover .gn-grid-card-title { color: var(--red); }
.gn-grid-card-meta { display: flex; align-items: center; gap: .45rem; flex-wrap: wrap; }
.gn-grid-badge {
    display: inline-block; color: #fff;
    font-size: .62rem; font-weight: 800; text-transform: uppercase;
    letter-spacing: .08em; padding: .18rem .55rem; border-radius: 2px; line-height: 1.5;
}

/* ── Sidebar blocks ─────────────────────────────────────── */
.gn-sidebar-head {
    font-size: .85rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: .07em;
    color: var(--text); padding-bottom: .5rem; margin-bottom: 1rem;
    border-bottom: 3px solid var(--red);
}

/* Ad box — proporção 350×280 (5:4) */
.gn-ad-box {
    border-radius: 6px; overflow: hidden;
    background: linear-gradient(145deg, #e63946 0%, #c1121f 55%, #9d0208 100%);
    aspect-ratio: 350 / 280; width: 100%;
    position: relative;
}
.gn-ad-box::before {
    content: ''; position: absolute;
    right: -30px; bottom: -30px;
    width: 160px; height: 160px;
    border-radius: 50%; background: rgba(255,255,255,.07);
}
.gn-ad-box::after {
    content: ''; position: absolute;
    right: 40px; bottom: 40px;
    width: 90px; height: 90px;
    border-radius: 50%; background: rgba(255,255,255,.05);
}
.gn-ad-inner {
    position: relative; z-index: 1;
    padding: 1.5rem; height: 100%;
    display: flex; flex-direction: column; justify-content: space-between;
}
.gn-ad-logo-wrap {
    display: flex; align-items: center; gap: .65rem;
}
.gn-ad-logo-icon { font-size: 2rem; color: #fff; }
.gn-ad-logo-name { font-size: 1.2rem; font-weight: 900; color: #fff; line-height: 1; }
.gn-ad-logo-sub  { font-size: .6rem; font-weight: 600; color: rgba(255,255,255,.7); letter-spacing: .1em; text-transform: uppercase; }
.gn-ad-desc { font-size: .82rem; color: rgba(255,255,255,.9); line-height: 1.5; text-align: center; margin: 0; }
.gn-ad-footer { display: flex; align-items: flex-end; justify-content: space-between; }
.gn-ad-btn {
    display: inline-block; border: 2px solid #fff; color: #fff;
    font-size: .75rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .08em; padding: .4rem 1.1rem; border-radius: 3px;
    text-decoration: none; transition: background .2s, color .2s;
}
.gn-ad-btn:hover { background: #fff; color: var(--red); }
.gn-ad-size-tag {
    font-size: .8rem; font-weight: 800; color: rgba(255,255,255,.8);
    text-align: right; line-height: 1.3; letter-spacing: .04em;
}

/* Social sidebar head */
.gn-sidebar-social { margin-bottom: 1.5rem; }
.gn-sidebar-social-head {
    display: flex; align-items: center; gap: 0;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: .6rem;
}
.gn-sidebar-social-head span {
    font-size: .85rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: .07em;
    color: var(--text); position: relative; padding-bottom: .6rem;
    margin-bottom: -.6rem;
}
.gn-sidebar-social-head span::after {
    content: ''; position: absolute;
    left: 0; bottom: 0;
    width: 40px; height: 3px; background: var(--blue);
}

/* Social grid — 2×2, cada célula quadrada */
.gn-social-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
}
.gn-social-btn {
    display: flex; align-items: center; justify-content: center; gap: .5rem;
    aspect-ratio: 1 / 1;           /* células quadradas */
    color: #fff; font-size: .85rem; font-weight: 700;
    border-radius: 3px; transition: opacity .15s; text-decoration: none;
    flex-direction: column; gap: .4rem;
}
.gn-social-btn:hover { opacity: .85; color: #fff; }
.gn-social-btn i { font-size: 2rem; }
.gn-social-tiktok    { background: #010101; }
.gn-social-facebook  { background: #1877f2; }
.gn-social-instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.gn-social-youtube   { background: #ff0000; }

/* Sidebar list items */
.gn-sidebar-item {
    display: flex; gap: .75rem; align-items: flex-start;
    padding: .7rem 0; border-bottom: 1px solid var(--border);
    text-decoration: none;
}
.gn-sidebar-item:last-child { border-bottom: none; }
.gn-sidebar-item img {
    width: 72px; height: 55px; flex-shrink: 0;
    object-fit: cover; border-radius: 3px;
}
.gn-sidebar-item-placeholder {
    width: 72px; height: 55px; flex-shrink: 0;
    background: var(--surface-alt); border-radius: 3px;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted); font-size: 1rem;
}
.gn-sidebar-item-body { flex: 1; }
.gn-sidebar-item-title {
    font-size: .82rem; font-weight: 700; line-height: 1.35;
    color: var(--text);
}
.gn-sidebar-item:hover .gn-sidebar-item-title { color: var(--red); }
.gn-sidebar-item-meta { font-size: .7rem; color: var(--text-muted); margin-top: .2rem; }

/* ── Layout 5 — card grande esquerda + grid 2×2 direita ─── */
.gn-l5-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

/* Card principal esquerdo */
.gn-l5-main { display: flex; flex-direction: column; }
.gn-l5-main-img-wrap {
    display: block; width: 100%;
    aspect-ratio: 16 / 9; overflow: hidden;
    border-radius: 0; background: var(--surface-alt);
}
.gn-l5-main-img-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    display: block; transition: transform .35s;
}
.gn-l5-main:hover .gn-l5-main-img-wrap img { transform: scale(1.03); }

.gn-l5-main-body { padding: .85rem 0; display: flex; flex-direction: column; gap: .5rem; }
.gn-l5-main-title {
    font-size: 1.2rem; font-weight: 800; line-height: 1.3;
    color: var(--text); display: block;
}
.gn-l5-main-title:hover { color: var(--red); }
.gn-l5-summary {
    font-size: .88rem; color: var(--text-mid); line-height: 1.6; margin: 0;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}

/* Placeholder imagem */
.gn-l5-img-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: var(--surface-alt); color: var(--text-muted); font-size: 2rem;
}

/* Grid 2×2 direita */
.gn-l5-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
}
.gn-l5-card { display: flex; flex-direction: column; text-decoration: none; }
.gn-l5-card-img-wrap {
    width: 100%; aspect-ratio: 16 / 9;
    overflow: hidden; border-radius: 0;
    background: var(--surface-alt);
}
.gn-l5-card-img-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    display: block; transition: transform .35s;
}
.gn-l5-card:hover .gn-l5-card-img-wrap img { transform: scale(1.03); }
.gn-l5-card-body { padding: .65rem 0; display: flex; flex-direction: column; gap: .3rem; }
.gn-l5-card-title {
    font-size: .9rem; font-weight: 700; line-height: 1.35;
    color: var(--text);
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.gn-l5-card:hover .gn-l5-card-title { color: var(--red); }
.gn-l5-card-meta {
    font-size: .75rem; color: var(--text-muted);
    display: flex; align-items: center; gap: .35rem;
}

@media (max-width: 768px) {
    .gn-l5-section { grid-template-columns: 1fr; }
    .gn-l5-main-img-wrap { aspect-ratio: 4 / 3; }
}

/* ── Layout 4 — faixa full-width com fundo escuro ───────── */
.gn-video-fullwidth {
    background: #1a1a1a;
    /* Quebra o container Bootstrap para ir de ponta a ponta */
    width:       100vw;
    position:    relative;
    left:        50%;
    right:       50%;
    margin-left: -50vw;
    margin-right:-50vw;
    padding: 2rem 0 2.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    /* Garante que o conteúdo interno fique centralizado */
    box-sizing: border-box;
}

/* Cabeçalho da seção vídeo */
.gn-video-head {
    display: flex; align-items: center;
    justify-content: space-between;
    padding-bottom: .75rem; margin-bottom: 1.5rem;
    border-bottom: 1px solid #333;
}
.gn-video-head-title {
    font-size: 1.05rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: .06em;
    color: #fff; position: relative;
}
.gn-video-head-title::after {
    content: ''; position: absolute;
    left: 0; bottom: -12px;
    width: 40px; height: 3px;
    background: var(--accent, var(--red));
}

.gn-video-section {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 15px;
    align-items: stretch;
}

/* Card hero grande */
.gn-video-main {
    position: relative; display: block;
    overflow: hidden; text-decoration: none;
    background: #111; border-radius: 4px;
    aspect-ratio: 16 / 10;
}
.gn-video-main img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; opacity: .8;
    transition: opacity .3s, transform .4s;
}
.gn-video-main:hover img { opacity: .6; transform: scale(1.03); }
.gn-video-overlay {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.1) 55%, rgba(0,0,0,0) 80%);
}
.gn-video-main-bottom {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 1.25rem 1rem;
    display: flex; flex-direction: column; gap: .5rem;
}
.gn-video-main-title {
    color: #fff; font-size: 1.15rem; font-weight: 800;
    line-height: 1.3; text-shadow: 0 2px 6px rgba(0,0,0,.7);
}

/* Badge VIDEO */
.gn-video-badge {
    display: inline-block; color: #fff;
    font-size: .62rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: .1em;
    padding: .18rem .6rem; border-radius: 2px;
    align-self: flex-start; line-height: 1.5;
}

/* Botão play */
.gn-play-btn {
    width: 56px; height: 56px; border-radius: 50%;
    background: rgba(255,255,255,.25);
    backdrop-filter: blur(4px);
    border: 2px solid rgba(255,255,255,.6);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.4rem;
    transition: background .2s, transform .2s;
    flex-shrink: 0;
}
.gn-video-main:hover .gn-play-btn { background: rgba(255,255,255,.4); transform: scale(1.1); }
.gn-play-btn-sm {
    width: 38px; height: 38px; font-size: .95rem;
}

/* Cards lado direito */
.gn-video-side {
    display: flex; flex-direction: column; gap: 15px;
}
.gn-video-side-card {
    display: flex; flex-direction: column;
    text-decoration: none; background: #111;
    border-radius: 4px; overflow: hidden; flex: 1;
}
.gn-video-side-img-wrap {
    position: relative; aspect-ratio: 16 / 9;
    overflow: hidden; background: #222; flex-shrink: 0;
}
.gn-video-side-img-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    display: block; transition: opacity .3s, transform .4s;
    opacity: .85;
}
.gn-video-side-card:hover .gn-video-side-img-wrap img { opacity: .6; transform: scale(1.03); }
.gn-video-side-overlay {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: .5rem;
    background: linear-gradient(to top, rgba(0,0,0,.55) 0%, rgba(0,0,0,.05) 60%);
}
.gn-video-side-overlay .gn-video-badge { position: absolute; bottom: .6rem; left: .6rem; }

.gn-video-side-body { padding: .7rem .85rem .85rem; }
.gn-video-side-title {
    color: #e8e8e8; font-size: .9rem; font-weight: 700;
    line-height: 1.35;
}
.gn-video-side-card:hover .gn-video-side-title { color: #fff; }
.gn-video-side-meta { color: #777; font-size: .72rem; margin-top: .3rem; }

/* Responsive layout 4 */
@media (max-width: 768px) {
    .gn-video-section { grid-template-columns: 1fr; }
    .gn-video-side { flex-direction: row; }
    .gn-video-side-card { flex: 1; }
}

/* ── Página de artigo ───────────────────────────────────── */

/* Banner 970×90 */
.art-banner {
    background: #1e1e1e; border-radius: 6px; overflow: hidden;
    position: relative;
}
.art-banner::before {
    content: ''; position: absolute; right: -20px; top: -30px;
    width: 130px; height: 130px; border-radius: 50%; background: rgba(220,30,40,.25);
}
.art-banner::after {
    content: ''; position: absolute; right: 80px; top: 10px;
    width: 70px; height: 70px; border-radius: 50%; background: rgba(220,30,40,.15);
}
.art-banner-inner {
    position: relative; z-index: 1;
    display: flex; align-items: center; gap: 1.5rem;
    padding: .85rem 1.5rem;
}
.art-banner-brand { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.art-banner-icon  { font-size: 1.8rem; color: var(--red); }
.art-banner-name  { font-size: 1rem; font-weight: 900; color: #fff; line-height: 1; }
.art-banner-sub   { font-size: .58rem; font-weight: 600; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .08em; }
.art-banner-tagline { flex: 1; font-size: .82rem; color: #aaa; }
.art-banner-btn {
    flex-shrink: 0; border: 2px solid #fff; color: #fff;
    font-size: .72rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .08em; padding: .35rem .9rem; border-radius: 3px;
    text-decoration: none; transition: background .2s, color .2s;
}
.art-banner-btn:hover { background: #fff; color: #1e1e1e; }

/* Imagem do artigo */
.art-img-wrap { position: relative; border-radius: 0; overflow: hidden; }
.art-img-wrap img { width: 100%; max-height: 500px; object-fit: cover; display: block; }
.art-featured-badge {
    position: absolute; top: .75rem; left: .75rem; z-index: 2;
    background: var(--red); color: #fff;
    font-size: .62rem; font-weight: 800; text-transform: uppercase;
    letter-spacing: .1em; padding: .18rem .55rem; border-radius: 2px;
}
.art-img-caption {
    font-size: .78rem; color: var(--text-muted); text-align: center;
    padding: .45rem; background: var(--surface); border-top: 1px solid var(--border);
}

/* Título */
.art-title {
    font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 900;
    line-height: 1.2; margin: 1rem 0 .75rem; color: var(--text);
}

/* Meta linha */
.art-meta {
    display: flex; align-items: center; gap: .5rem;
    flex-wrap: wrap; margin-bottom: 1.25rem;
    padding-bottom: .85rem; border-bottom: 1px solid var(--border);
}
.art-cat-badge {
    display: inline-block; background: var(--red); color: #fff;
    font-size: .65rem; font-weight: 800; text-transform: uppercase;
    letter-spacing: .08em; padding: .18rem .6rem; border-radius: 2px;
    text-decoration: none;
}
.art-meta-sep    { color: var(--border); }
.art-meta-source { font-size: .82rem; color: var(--red); font-weight: 600; }
.art-meta-date   { font-size: .82rem; color: var(--text-muted); }

/* Corpo */
.art-summary {
    font-size: 1rem; font-weight: 600; color: var(--text-mid);
    border-left: 4px solid var(--red); padding-left: 1rem;
    margin-bottom: 1.25rem; line-height: 1.6;
}
.art-body { font-size: 1.05rem; line-height: 1.85; color: var(--text-mid); }
.art-body p { margin-bottom: 1.25rem; }
.art-body p:last-child { margin-bottom: 0; }

/* Negrito e itálico */
.art-body strong, .art-body b { font-weight: 700; color: var(--text); }
.art-body em, .art-body i { font-style: italic; }

/* Subtítulos dentro do artigo */
.art-body h2 { font-size: 1.3rem; font-weight: 800; color: var(--text); margin: 1.75rem 0 .75rem; line-height: 1.25; }
.art-body h3 { font-size: 1.1rem; font-weight: 700; color: var(--text); margin: 1.5rem 0 .6rem; }
.art-body h4 { font-size: 1rem;   font-weight: 700; color: var(--text); margin: 1.25rem 0 .5rem; }

/* Listas */
.art-body ul, .art-body ol { margin: 0 0 1.25rem 1.5rem; padding: 0; }
.art-body li { margin-bottom: .4rem; }

/* Citação */
.art-body blockquote {
    border-left: 4px solid var(--red); padding: .75rem 1.25rem;
    margin: 1.5rem 0; color: var(--text-mid);
    font-style: italic; background: var(--surface-alt);
    border-radius: 0 4px 4px 0;
}

/* Links dentro do artigo */
.art-body a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
.art-body a:hover { opacity: .8; }
.art-divider { border: none; border-top: 1px solid var(--border); margin: 1.5rem 0; }

/* Botões rodapé */
.art-source-btn {
    display: inline-flex; align-items: center; gap: .35rem;
    border: 1px solid var(--red); color: var(--red);
    font-size: .78rem; font-weight: 700; padding: .4rem .85rem;
    border-radius: 3px; text-decoration: none; transition: background .15s, color .15s;
}
.art-source-btn:hover { background: var(--red); color: #fff; }
.art-back-btn {
    display: inline-flex; align-items: center; gap: .35rem;
    border: 1px solid var(--border); color: var(--text-muted);
    font-size: .78rem; font-weight: 600; padding: .4rem .85rem;
    border-radius: 3px; text-decoration: none; transition: background .15s;
}
.art-back-btn:hover { background: var(--surface-alt); color: var(--text); }

/* Sidebar — Featured carousel */
.art-sidebar-featured { }
.art-sidebar-head {
    display: flex; align-items: center;
    justify-content: space-between;
    padding-bottom: .65rem; margin-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}
.art-sidebar-title {
    font-size: .9rem; font-weight: 900;
    text-transform: uppercase; letter-spacing: .06em; color: var(--text);
}
.art-sidebar-title-bars { color: var(--red); font-weight: 900; }

.art-feat-carousel { overflow: hidden; }
.art-feat-card {
    display: flex; flex-direction: column;
    text-decoration: none;
}
.art-feat-img-wrap {
    position: relative; width: 100%;
    aspect-ratio: 16/9; overflow: hidden; border-radius: 0;
    background: var(--surface-alt);
}
.art-feat-img-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    display: block; transition: transform .35s;
}
.art-feat-card:hover .art-feat-img-wrap img { transform: scale(1.03); }
.art-feat-body { padding: .75rem 0; }
.art-feat-title {
    font-size: .95rem; font-weight: 700; color: var(--text);
    line-height: 1.35; margin-bottom: .4rem;
}
.art-feat-card:hover .art-feat-title { color: var(--red); }
.art-feat-meta {
    display: flex; align-items: center; gap: .4rem; flex-wrap: wrap;
}

/* ── Related Articles ───────────────────────────────────── */
.art-related { margin-top: 0; }
.art-related-head {
    font-size: .92rem; font-weight: 900;
    text-transform: uppercase; letter-spacing: .06em;
    color: var(--text); padding-bottom: .6rem; margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}
.art-related-card {
    display: flex; flex-direction: column;
    text-decoration: none; height: 100%;
}
.art-related-img-wrap {
    width: 100%; aspect-ratio: 16/9;
    overflow: hidden; border-radius: 0;
    background: var(--surface-alt);
}
.art-related-img-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    display: block; transition: transform .35s;
}
.art-related-card:hover .art-related-img-wrap img { transform: scale(1.04); }
.art-related-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted); font-size: 2rem;
}
.art-related-body { padding: .85rem 0; flex: 1; display: flex; flex-direction: column; gap: .5rem; }
.art-related-title {
    font-size: 1rem; font-weight: 800; line-height: 1.3;
    color: var(--text);
}
.art-related-card:hover .art-related-title { color: var(--red); }
.art-related-meta { display: flex; align-items: center; gap: .45rem; flex-wrap: wrap; }
.art-related-summary {
    font-size: .85rem; color: var(--text-mid); line-height: 1.55; margin: 0;
    display: -webkit-box; -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; overflow: hidden;
}

/* ── Most Read (sidebar artigo) ─────────────────────────── */
.art-most-read-head {
    font-size: .92rem; font-weight: 900;
    text-transform: uppercase; letter-spacing: .06em;
    color: var(--text); padding-bottom: .6rem; margin-bottom: .5rem;
    border-bottom: 1px solid var(--border);
}

.art-most-item {
    display: flex; gap: .85rem; align-items: flex-start;
    padding: .85rem 0; border-bottom: 1px solid var(--border);
    text-decoration: none;
}
.art-most-item:last-child { border-bottom: none; }

.art-most-img-wrap {
    position: relative; width: 110px; flex-shrink: 0;
    aspect-ratio: 4/3; overflow: hidden; border-radius: 0;
    background: var(--surface-alt);
}
.art-most-img-wrap img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform .3s;
}
.art-most-item:hover .art-most-img-wrap img { transform: scale(1.04); }
.art-most-img-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted); font-size: 1.3rem;
}
.art-most-img-wrap .art-featured-badge {
    top: .4rem; left: .4rem;
}

.art-most-body { flex: 1; display: flex; flex-direction: column; gap: .45rem; }
.art-most-title {
    font-size: .88rem; font-weight: 700; line-height: 1.35;
    color: var(--text);
    display: -webkit-box; -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; overflow: hidden;
}
.art-most-item:hover .art-most-title { color: var(--red); }
.art-most-badge {
    display: inline-block; background: #f97316; color: #fff;
    font-size: .62rem; font-weight: 800; text-transform: uppercase;
    letter-spacing: .08em; padding: .18rem .55rem; border-radius: 2px;
    align-self: flex-start;
}

/* ── Galeria de fotos ───────────────────────────────────── */
.art-gallery { margin: 2rem 0; }
.art-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 8px;
    margin-top: 1rem;
}
.art-gallery-item {
    position: relative; display: block;
    aspect-ratio: 4/3; overflow: hidden;
    border-radius: 4px; background: var(--surface-alt);
    cursor: zoom-in;
}
.art-gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    display: block; transition: transform .3s, opacity .3s;
}
.art-gallery-item:hover img { transform: scale(1.06); opacity: .85; }
.art-gallery-overlay {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,.35);
    opacity: 0; transition: opacity .25s;
    color: #fff; font-size: 1.5rem;
}
.art-gallery-item:hover .art-gallery-overlay { opacity: 1; }

/* ── Lightbox ────────────────────────────────────────────── */
.lb-overlay {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,.92);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity .25s;
}
.lb-overlay.lb-active { opacity: 1; pointer-events: all; }

.lb-content {
    position: relative; max-width: 92vw; max-height: 92vh;
    display: flex; flex-direction: column; align-items: center; gap: .5rem;
}
.lb-img {
    max-width: 92vw; max-height: 82vh;
    object-fit: contain; border-radius: 4px;
    display: block; box-shadow: 0 8px 40px rgba(0,0,0,.6);
}
.lb-caption {
    color: #ddd; font-size: .85rem; text-align: center; max-width: 600px;
}

/* Botões do lightbox */
.lb-close, .lb-prev, .lb-next {
    position: fixed;
    background: rgba(255,255,255,.12); border: none; cursor: pointer;
    color: #fff; border-radius: 50%;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; transition: background .2s;
}
.lb-close, .lb-prev, .lb-next { backdrop-filter: blur(4px); }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,.25); }
.lb-close { top: 1rem; right: 1rem; font-size: 1.2rem; }
.lb-prev  { left: 1rem; top: 50%; transform: translateY(-50%); }
.lb-next  { right: 1rem; top: 50%; transform: translateY(-50%); }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 991px) {
    .mn-link { padding: 0 .65rem; font-size: .73rem; }
}
@media (max-width: 768px) {
    .hero-grid { grid-template-columns: 1fr; height: auto; }
    .hero-main  { height: 300px; }
    .hero-side  { grid-template-rows: 210px 210px; }
    .hero-title { font-size: 1.15rem; }
    .article-title { font-size: 1.4rem; }
}
