/*
Theme Name: Portal Notícias
Theme URI: https://exemplo.com/portal-noticias
Author: Edionas Passos
Author URI: https://exemplo.com
Description: Tema WordPress para portal de notícias políticas, com destaque para coberturas, podcast, cortes em vídeo e páginas individuais de matéria. Layout responsivo, sem framework CSS, com áreas de widgets, menus e imagens em destaque.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: portal-noticias
Tags: news, blog, magazine, two-columns, right-sidebar, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: #1a1a1a;
    background: #f4f4f6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .18s ease, opacity .18s ease; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
p { margin-bottom: 1em; }

/* ===== DESIGN TOKENS ===== */
:root {
    --brand-red: #c8102e;
    --brand-red-dark: #9a0c23;
    --ink-900: #0d0d0f;
    --ink-800: #1a1a1f;
    --ink-700: #2a2a30;
    --ink-500: #6b6b74;
    --ink-300: #cfcfd4;
    --ink-100: #eeeef1;
    --surface: #ffffff;
    --surface-alt: #f4f4f6;
    --accent-yellow: #f5c518;
    --shadow-sm: 0 1px 2px rgba(0,0,0,.06);
    --shadow-md: 0 4px 12px rgba(0,0,0,.08);
    --radius: 6px;
    --wrap: 1200px;
}

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.clearfix::after { content: ''; display: table; clear: both; }
.screen-reader-text {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ===== TOP MENU BAR ===== */
.topbar {
    background: var(--ink-900);
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    letter-spacing: .5px;
}
.topbar .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 44px;
}
.topbar__mini-logo {
    font-weight: 700;
    font-size: 15px;
    color: var(--brand-red);
    letter-spacing: 1px;
}
.topbar__nav ul {
    display: flex;
    gap: 22px;
    margin: 0;
    padding: 0;
}
.topbar__nav a {
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    padding: 4px 0;
    position: relative;
    display: inline-block;
}
.topbar__nav a:hover { color: var(--brand-red); }
.topbar__nav .current-menu-item > a,
.topbar__nav a.is-active {
    color: var(--brand-red);
}
.topbar__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--brand-red);
    color: #fff;
    padding: 6px 14px;
    border-radius: var(--radius);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
}
.topbar__cta:hover { background: var(--brand-red-dark); color: #fff; }
.topbar__burger { display: none; font-size: 22px; color: #fff; }

/* ===== HEADER ===== */
.site-header { background: #fff; border-bottom: 1px solid var(--ink-100); }
.site-header .wrap {
    display: grid;
    grid-template-columns: 1fr 728px;
    gap: 30px;
    align-items: center;
    padding-top: 18px;
    padding-bottom: 18px;
}
.brand { display: flex; flex-direction: column; gap: 4px; }
.brand__name {
    font-family: 'Oswald', sans-serif;
    font-size: 34px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--ink-900);
    line-height: 1;
}
.brand__name span { color: var(--brand-red); }
.brand__tag {
    font-size: 12px;
    color: var(--ink-500);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.brand img { max-height: 60px; width: auto; }
.header-banner {
    width: 100%;
    min-height: 90px;
    background: linear-gradient(135deg, #eef1f5 0%, #dde3eb 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-500);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    overflow: hidden;
}
.header-banner img { max-height: 90px; width: auto; }

/* ===== TICKER ===== */
.ticker { background: var(--ink-800); color: #fff; border-top: 3px solid var(--brand-red); }
.ticker .wrap {
    display: flex;
    align-items: center;
    height: 46px;
    gap: 18px;
}
.ticker__label {
    background: var(--brand-red);
    color: #fff;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 8px 14px;
    margin-left: -20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    flex-shrink: 0;
}
.ticker__label .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #fff;
    animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1;} 50% { opacity: .35; } }
.ticker__list {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    mask-image: linear-gradient(90deg, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
}
.ticker__list ul {
    display: inline-flex;
    gap: 34px;
    animation: slide 45s linear infinite;
    padding-left: 100%;
    margin: 0;
}
.ticker__list a { font-size: 14px; color: #fff; font-weight: 500; }
.ticker__list a:hover { color: var(--brand-red); }
.ticker__list a::before {
    content: '●';
    color: var(--brand-red);
    margin-right: 8px;
    font-size: 10px;
}
@keyframes slide { from { transform: translateX(0);} to { transform: translateX(-100%);} }
.ticker__socials { display: flex; gap: 8px; flex-shrink: 0; }
.ticker__socials a {
    width: 30px; height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.08);
    border-radius: 50%;
    font-size: 13px;
    color: #fff;
}
.ticker__socials a:hover { background: var(--brand-red); }

/* ===== SEARCH BAR ===== */
.searchbar {
    background: var(--ink-100);
    padding: 14px 0;
    display: none;
}
.searchbar.is-open { display: block; }
.searchbar form {
    display: flex;
    gap: 10px;
}
.searchbar input[type="search"] {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--ink-300);
    border-radius: var(--radius);
    font-size: 15px;
    font-family: inherit;
    outline: none;
}
.searchbar input[type="search"]:focus { border-color: var(--brand-red); }
.searchbar button {
    background: var(--brand-red);
    color: #fff;
    padding: 0 24px;
    border-radius: var(--radius);
    font-weight: 600;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.searchbar button:hover { background: var(--brand-red-dark); }

/* ===== SECTION TITLES ===== */
.section-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 22px;
    color: var(--ink-900);
    padding-bottom: 12px;
    border-bottom: 3px solid var(--brand-red);
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.section-title::before {
    content: '';
    width: 6px; height: 22px;
    background: var(--brand-red);
}
.section-title__link {
    margin-left: auto;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--ink-500);
    text-transform: uppercase;
}
.section-title__link:hover { color: var(--brand-red); }

section { padding: 40px 0; }

/* ===== HERO ===== */
.hero { padding-top: 30px; }
.hero__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: repeat(2, 220px);
    gap: 14px;
}
.hero__card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: #222;
    color: #fff;
    display: flex;
    align-items: flex-end;
    box-shadow: var(--shadow-md);
    text-decoration: none;
}
.hero__card--main { grid-row: span 2; }
.hero__card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.hero__card:hover img { transform: scale(1.05); }
.hero__card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.15) 55%, transparent 100%);
}
.hero__body { position: relative; z-index: 2; padding: 18px 20px; }
.hero__cat {
    display: inline-block;
    background: var(--brand-red);
    padding: 3px 10px;
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 3px;
    margin-bottom: 10px;
    color: #fff;
}
.hero__title {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    font-size: 15px;
    color: #fff;
}
.hero__card--main .hero__title { font-size: 26px; line-height: 1.15; }

/* ===== AD SLOT ===== */
.ad-slot {
    width: 100%;
    background: linear-gradient(135deg, #ffe5c9 0%, #fce1e1 100%);
    border: 1px dashed rgba(0,0,0,.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-500);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 24px auto;
    overflow: hidden;
}
.ad-slot--leader { min-height: 100px; max-width: 970px; }
.ad-slot--rect { min-height: 250px; max-width: 300px; }
.ad-slot img { max-width: 100%; height: auto; }

/* ===== CARDS (coverage / archive) ===== */
.coverage__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .2s ease, box-shadow .2s ease;
    display: flex;
    flex-direction: column;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card__thumb {
    aspect-ratio: 16/10;
    background: #ddd;
    overflow: hidden;
    position: relative;
    display: block;
}
.card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .card__thumb img { transform: scale(1.06); }
.card__cat {
    position: absolute;
    top: 10px; left: 10px;
    background: var(--brand-red);
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 8px;
    border-radius: 3px;
    z-index: 2;
}
.card__body { padding: 14px 16px 16px; flex: 1; display: flex; flex-direction: column; }
.card__title {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.3;
    color: var(--ink-900);
    margin: 0;
}
.card__title a { color: inherit; }
.card__title a:hover { color: var(--brand-red); }
.card__meta {
    margin-top: auto;
    padding-top: 10px;
    font-size: 12px;
    color: var(--ink-500);
    display: flex;
    gap: 10px;
    align-items: center;
}
.card__meta time { font-weight: 500; }

/* ===== MAIN GRID (front page) ===== */
.main-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 34px;
}

/* ===== NEWS LIST ===== */
.news-list { display: flex; flex-direction: column; gap: 20px; }
.news-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 18px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--ink-100);
}
.news-item:last-child { border-bottom: none; }
.news-item__thumb {
    aspect-ratio: 16/10;
    border-radius: var(--radius);
    overflow: hidden;
    background: #ddd;
    display: block;
}
.news-item__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.news-item:hover .news-item__thumb img { transform: scale(1.05); }
.news-item__body { display: flex; flex-direction: column; gap: 8px; }
.news-item__cat {
    font-family: 'Oswald', sans-serif;
    color: var(--brand-red);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.news-item__title {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.25;
    color: var(--ink-900);
    margin: 0;
}
.news-item__title a { color: inherit; }
.news-item__title a:hover { color: var(--brand-red); }
.news-item__excerpt { color: var(--ink-500); font-size: 14px; line-height: 1.55; }
.news-item__meta {
    font-size: 12px;
    color: var(--ink-500);
    display: flex;
    gap: 12px;
    margin-top: 4px;
}

/* ===== SIDEBAR (front + single) ===== */
.sidebar { display: flex; flex-direction: column; gap: 30px; }
.widget {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
.widget__head, .widget-title, .widget h2, .widget h3 {
    background: var(--ink-900);
    color: #fff;
    padding: 12px 16px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}
.widget__head::before, .widget-title::before {
    content: '';
    width: 8px; height: 8px;
    background: var(--brand-red);
}
.widget ul { padding: 12px 16px; }
.widget ul li { padding: 8px 0; border-bottom: 1px solid var(--ink-100); font-size: 14px; }
.widget ul li:last-child { border-bottom: none; }
.widget ul li a:hover { color: var(--brand-red); }
.widget_search form { padding: 14px; }
.widget_search input[type="search"] {
    width: 100%; padding: 10px 12px;
    border: 1px solid var(--ink-300);
    border-radius: var(--radius); font-size: 14px;
}

.podcast-list { display: flex; flex-direction: column; }
.podcast-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 12px;
    padding: 12px;
    border-bottom: 1px solid var(--ink-100);
}
.podcast-item:last-child { border-bottom: none; }
.podcast-item__thumb {
    aspect-ratio: 16/9;
    border-radius: 4px;
    overflow: hidden;
    background: #222;
    position: relative;
    display: block;
}
.podcast-item__thumb::after {
    content: '▶';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    text-shadow: 0 2px 6px rgba(0,0,0,.6);
}
.podcast-item__thumb img { width: 100%; height: 100%; object-fit: cover; opacity: .85; }
.podcast-item__title {
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--ink-900);
    margin: 0;
}
.podcast-item__title a { color: inherit; }
.podcast-item__title a:hover { color: var(--brand-red); }
.podcast-item__meta { font-size: 11px; color: var(--ink-500); margin-top: 6px; }

/* ===== SHORTS ===== */
.shorts__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}
.short {
    aspect-ratio: 9/16;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    background: #222;
    box-shadow: var(--shadow-sm);
    display: block;
}
.short img { width: 100%; height: 100%; object-fit: cover; opacity: .9; transition: transform .35s ease; }
.short:hover img { transform: scale(1.06); opacity: 1; }
.short::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,.75) 0%, transparent 55%);
}
.short__title {
    position: absolute;
    bottom: 10px; left: 10px; right: 10px;
    z-index: 2;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.25;
}
.short__play {
    position: absolute;
    top: 10px; right: 10px;
    width: 26px; height: 26px;
    background: rgba(200,16,46,.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 11px;
    z-index: 2;
}

/* ===== SINGLE / PAGE ===== */
.single-wrap {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    padding: 40px 0;
}
.single-content { min-width: 0; }
.page-crumbs {
    font-size: 12px;
    color: var(--ink-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.page-crumbs a:hover { color: var(--brand-red); }
.page-crumbs span[aria-current] { color: var(--ink-900); font-weight: 600; }
.page-crumbs .sep { color: var(--ink-300); }

.entry-category {
    display: inline-block;
    background: var(--brand-red);
    color: #fff;
    padding: 4px 12px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1.5px;
    font-weight: 600;
    border-radius: 3px;
    margin-bottom: 14px;
}
.page-title {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--ink-900);
    margin-bottom: 14px;
}
.page-description {
    font-size: 18px;
    color: var(--ink-500);
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: 400;
}
.entry-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--ink-500);
    padding: 14px 0;
    border-top: 1px solid var(--ink-100);
    border-bottom: 1px solid var(--ink-100);
    margin-bottom: 24px;
}
.entry-meta strong { color: var(--ink-900); font-weight: 600; }
.entry-featured {
    margin: 0 -20px 24px;
    border-radius: var(--radius);
    overflow: hidden;
}
.entry-featured img { width: 100%; height: auto; display: block; border-radius: var(--radius); }
.entry-featured figcaption {
    padding: 10px 20px;
    font-size: 12px;
    color: var(--ink-500);
    font-style: italic;
    background: var(--ink-100);
}

.page-content { font-size: 17px; line-height: 1.75; color: #2a2a30; }
.page-content h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 26px;
    color: var(--ink-900);
    margin: 30px 0 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--brand-red);
    display: inline-block;
}
.page-content h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    color: var(--ink-900);
    margin: 24px 0 10px;
}
.page-content p { margin-bottom: 1.2em; }
.page-content a {
    color: var(--brand-red);
    border-bottom: 1px solid rgba(200,16,46,.3);
}
.page-content a:hover { border-bottom-color: var(--brand-red); }
.page-content blockquote {
    border-left: 4px solid var(--brand-red);
    padding: 16px 24px;
    margin: 24px 0;
    background: var(--ink-100);
    font-style: italic;
    font-size: 18px;
    color: var(--ink-700);
    border-radius: 0 var(--radius) var(--radius) 0;
}
.page-content blockquote p:last-child { margin-bottom: 0; }
.page-content ul, .page-content ol {
    padding-left: 24px;
    margin-bottom: 1.2em;
}
.page-content ul li, .page-content ol li {
    margin-bottom: 8px;
    list-style: disc;
}
.page-content ol li { list-style: decimal; }
.page-content img { border-radius: var(--radius); margin: 20px 0; }
.page-content figure { margin: 20px 0; }
.page-content figcaption {
    text-align: center;
    font-size: 13px;
    color: var(--ink-500);
    font-style: italic;
    margin-top: 8px;
}

.entry-share {
    margin-top: 30px;
    padding: 20px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.entry-share__label {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 13px;
    color: var(--ink-900);
}
.entry-share ul { display: flex; gap: 8px; flex-wrap: wrap; }
.entry-share a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--ink-100);
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-700);
}
.entry-share a:hover { background: var(--brand-red); color: #fff; }

.entry-tags {
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 13px;
}
.entry-tags strong {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    color: var(--ink-900);
    letter-spacing: 1px;
    font-size: 12px;
}
.entry-tags a {
    padding: 4px 10px;
    background: var(--ink-100);
    border-radius: 20px;
    color: var(--ink-700);
}
.entry-tags a:hover { background: var(--brand-red); color: #fff; }

.author-box {
    margin-top: 30px;
    padding: 20px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 18px;
    align-items: center;
}
.author-box__avatar img {
    width: 80px; height: 80px;
    border-radius: 50%;
    object-fit: cover;
}
.author-box__name {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    color: var(--ink-900);
    margin-bottom: 4px;
}
.author-box__bio { font-size: 14px; color: var(--ink-500); }

/* ===== VEJA MAIS (related) ===== */
.related {
    background: #fff;
    padding: 40px 0;
    border-top: 1px solid var(--ink-100);
}
.related__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

/* ===== COMMENTS ===== */
.comments-area {
    margin-top: 40px;
    background: #fff;
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}
.comments-title {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    color: var(--ink-900);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--brand-red);
    display: inline-block;
}
.comment-list li { padding: 16px 0; border-bottom: 1px solid var(--ink-100); }
.comment-meta { font-size: 13px; color: var(--ink-500); margin-bottom: 8px; }
.comment-meta .fn { color: var(--ink-900); font-weight: 600; font-style: normal; }
.comment-respond input[type="text"],
.comment-respond input[type="email"],
.comment-respond input[type="url"],
.comment-respond textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--ink-300);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 14px;
    margin-bottom: 12px;
}
.comment-respond .submit {
    background: var(--brand-red); color: #fff;
    padding: 10px 24px; border-radius: var(--radius);
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
}

/* ===== PAGINATION ===== */
.pagination {
    margin: 40px 0;
    display: flex;
    gap: 6px;
    justify-content: center;
    flex-wrap: wrap;
}
.pagination .page-numbers {
    padding: 10px 15px;
    background: #fff;
    border-radius: var(--radius);
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    color: var(--ink-700);
    box-shadow: var(--shadow-sm);
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover { background: var(--brand-red); color: #fff; }

/* ===== ARCHIVE HEADER ===== */
.archive-header {
    padding: 40px 0;
    text-align: center;
    background: var(--ink-900);
    color: #fff;
}
.archive-title {
    font-family: 'Oswald', sans-serif;
    font-size: 34px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}
.archive-title span { color: var(--brand-red); }
.archive-description { color: var(--ink-300); margin-top: 8px; font-size: 15px; }

/* ===== FOOTER ===== */
.site-footer {
    background: var(--ink-900);
    color: #cfcfd4;
    padding: 50px 0 0;
    margin-top: 50px;
}
.footer-cols {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}
.footer-col h4 {
    font-family: 'Oswald', sans-serif;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--brand-red);
    display: inline-block;
}
.footer-col p, .footer-col a { font-size: 14px; line-height: 1.7; color: #cfcfd4; }
.footer-col a:hover { color: var(--brand-red); }
.footer-col ul li { margin-bottom: 6px; }
.footer-brand__name {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 10px;
}
.footer-brand__name span { color: var(--brand-red); }
.footer-social { display: flex; gap: 10px; margin-top: 14px; }
.footer-social a {
    width: 34px; height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.06);
    border-radius: 50%;
    font-size: 14px;
    color: #fff;
}
.footer-social a:hover { background: var(--brand-red); color: #fff; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--ink-500);
}

/* ===== FLOATING WHATSAPP ===== */
.fab-whatsapp {
    position: fixed;
    bottom: 22px;
    right: 22px;
    width: 56px; height: 56px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 6px 18px rgba(37,211,102,.45);
    z-index: 100;
    transition: transform .2s ease;
}
.fab-whatsapp:hover { transform: scale(1.08); color: #fff; }

/* ===== WORDPRESS ALIGNMENT ===== */
.alignleft { float: left; margin: 0 20px 20px 0; }
.alignright { float: right; margin: 0 0 20px 20px; }
.aligncenter { display: block; margin: 20px auto; }
.alignwide { max-width: none; margin-left: -60px; margin-right: -60px; }
.alignfull { margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); max-width: 100vw; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 13px; color: var(--ink-500); font-style: italic; text-align: center; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .site-header .wrap { grid-template-columns: 1fr; }
    .header-banner { display: none; }
    .hero__grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 200px); }
    .hero__card--main { grid-column: span 2; grid-row: span 1; }
    .coverage__grid, .related__grid { grid-template-columns: repeat(2, 1fr); }
    .main-grid, .single-wrap { grid-template-columns: 1fr; }
    .shorts__grid { grid-template-columns: repeat(3, 1fr); }
    .footer-cols { grid-template-columns: repeat(2, 1fr); }
    .page-title { font-size: 28px; }
}
@media (max-width: 640px) {
    .topbar__nav, .ticker__socials { display: none; }
    .topbar__burger { display: block; }
    .brand__name { font-size: 26px; }
    .hero__grid { grid-template-columns: 1fr; grid-template-rows: repeat(5, 200px); }
    .hero__card--main { grid-column: span 1; }
    .coverage__grid, .related__grid { grid-template-columns: 1fr; }
    .news-item { grid-template-columns: 1fr; }
    .shorts__grid { grid-template-columns: repeat(2, 1fr); }
    .footer-cols { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    .section-title { font-size: 18px; }
    .page-title { font-size: 22px; }
    .page-description { font-size: 16px; }
    .page-content { font-size: 16px; }
    .entry-featured { margin-left: 0; margin-right: 0; }
    .author-box { grid-template-columns: 1fr; text-align: center; }
    .author-box__avatar { margin: 0 auto; }
    .topbar__nav.is-open {
        display: block;
        position: absolute;
        top: 44px; left: 0; right: 0;
        background: var(--ink-900);
        padding: 16px 20px;
        z-index: 50;
    }
    .topbar__nav.is-open ul { flex-direction: column; gap: 14px; }
}
