/*
Theme Name: XQ Es Noticia
Theme URI: https://xqesnoticia.zuliagpt.com
Author: Juan
Author URI: https://xqesnoticia.zuliagpt.com
Description: Tema personalizado para el sitio de noticias XQ Es Noticia - Cabimas, Zulia, Venezuela
Version: 4.32.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: xqesnoticia
Tags: news, blog, custom-menu, featured-images
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
*/

/* ========================================
   Accessibility
   ======================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ========================================
   Variables
   ======================================== */
:root {
    --orange: #FF6B00;
    --navy: #1A1A2E;
    --navy-light: #202030;
    --navy-footer-bottom: #111122;
    --zulia-blue: #0F3460;
    --red-accent: #E63946;
    --green-accent: #2C5F2E;
    --purple-accent: #7B2FBE;
    --bg-page: #F4F4F4;
    --bg-white: #FFFFFF;
    --bg-light: #F0F0F0;
    --border-light: #EEEEEE;
    --border-med: #DDDDDD;
    --text-dark: #1A1A2E;
    --text-body: #555555;
    --text-muted: #AAAAAA;
    --text-meta: #888888;
    --text-white: #FFFFFF;
    --padding-x: 60px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ========================================
   Reset & Base
   ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font);
    background-color: var(--bg-page);
    color: var(--text-dark);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

/* ========================================
   Top Bar
   ======================================== */
.top-bar {
    background-color: var(--navy);
    height: 36px;
    display: flex;
    align-items: center;
    padding: 0 var(--padding-x);
    justify-content: space-between;
}

.top-bar__left {
    display: flex;
    gap: 16px;
    align-items: center;
}

.top-bar__left span {
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 500;
}

.top-bar__right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.top-bar__right a {
    color: var(--orange);
    font-size: 11px;
    font-weight: 700;
    transition: opacity 0.2s;
}

.top-bar__right a:hover {
    opacity: 0.8;
}

/* ========================================
   Header (Logo + Nav unified)
   ======================================== */
.site-header {
    background-color: var(--bg-white);
    height: 90px;
    display: flex;
    align-items: center;
    padding: 0 var(--padding-x);
    justify-content: space-between;
    border-bottom: 3px solid var(--orange);
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.custom-logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.custom-logo-link img {
    width: 100%;
    height: auto;
    max-height: 60px;
    object-fit: contain;
}

.site-logo__icon {
    width: 44px;
    height: 44px;
    background-color: var(--orange);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    font-weight: 900;
    font-family: var(--font);
}

.site-logo__text {
    display: flex;
    flex-direction: column;
}

.site-logo__line1 {
    font-size: 26px;
    font-weight: 900;
    color: var(--navy);
    letter-spacing: -1px;
    line-height: 1;
}

.site-logo__line2 {
    font-size: 13px;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 3px;
    line-height: 1.2;
}

.site-logo img {
    height: auto;
    width: 100%;
    max-height: 60px;
    object-fit: contain;
}

/* Nav inside header */
.primary-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.primary-nav__menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.primary-nav__menu li a {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--navy);
    transition: color 0.2s;
}

.primary-nav__menu li a:hover,
.primary-nav__menu li.current-menu-item a {
    color: var(--orange);
}

/* Dropdown "Más Noticias" */
.menu-item-has-children {
    position: relative;
}

.primary-nav__submenu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--bg-white);
    min-width: 200px;
    border-radius: 4px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    padding: 8px 0;
    z-index: 100;
    flex-direction: column;
    gap: 0;
    margin-top: 12px;
}

.primary-nav__submenu::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
}

.menu-item-has-children:hover > .primary-nav__submenu {
    display: flex;
}

.primary-nav__submenu li {
    display: block;
}

.primary-nav__submenu li a {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--navy);
    transition: background-color 0.2s, color 0.2s;
    white-space: nowrap;
}

.primary-nav__submenu li a:hover {
    background-color: var(--bg-page);
    color: var(--orange);
}

.nav-subscribe {
    display: inline-flex;
    align-items: center;
    background-color: var(--orange);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 10px 18px;
    border-radius: 3px;
    transition: background-color 0.2s;
}

.nav-subscribe:hover {
    background-color: #e05f00;
    color: #fff;
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 24px;
    color: var(--text-dark);
}

/* ========================================
   Breaking Ticker
   ======================================== */
.breaking-ticker {
    background-color: var(--orange);
    height: 40px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.breaking-ticker__label {
    background-color: var(--navy);
    height: 100%;
    width: 180px;
    min-width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--orange);
}

.breaking-ticker__track {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.breaking-ticker__content {
    display: flex;
    white-space: nowrap;
    will-change: transform;
}

.breaking-ticker__content.breaking-ticker__animate {
    animation: ticker-scroll linear infinite;
}

.breaking-ticker__track:hover .breaking-ticker__content {
    animation-play-state: paused;
}

.breaking-ticker__text {
    padding: 0 40px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
    background-color: var(--bg-white);
    padding: 24px var(--padding-x);
}

.hero-grid {
    display: flex;
    gap: 20px;
    height: 520px;
}

.hero-main {
    display: flex;
    flex-direction: column;
    border-radius: 4px;
    overflow: hidden;
}

.hero-main__image {
    width: 100%;
    height: 340px;
    object-fit: cover;
}

.hero-main__content {
    padding: 20px 0 16px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: var(--bg-white);
    flex: 1;
}

.hero-main__category {
    display: inline-block;
    background-color: var(--orange);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 2px;
    align-self: flex-start;
}

.hero-main__title {
    font-size: 28px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.5px;
    color: var(--navy);
}

.hero-main__title a:hover {
    color: var(--orange);
}

.hero-main__desc {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.5;
}

.hero-main__meta {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-main__read-more {
    display: inline-block;
    align-self: flex-start;
    font-size: 13px;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 0.5px;
    transition: text-decoration 0.2s;
    margin-top: auto;
}

.hero-main__read-more:hover {
    text-decoration: underline;
    color: var(--orange);
}

/* Hero Side Stories */
.hero-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-sidebar__item {
    display: flex;
    border-radius: 4px;
    overflow: hidden;
    background: var(--bg-white);
    height: 142px;
    transition: box-shadow 0.2s;
}

.hero-sidebar__item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.hero-sidebar__image {
    width: 130px;
    min-width: 130px;
    height: 100%;
    object-fit: cover;
}

.hero-sidebar__content {
    padding: 5px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
    flex: 1;
}

.hero-sidebar__cat {
    font-size: 10px;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-sidebar__title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--navy);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: calc(14px * 1.4 * 3);
}

.hero-sidebar__meta {
    font-size: 11px;
    color: var(--text-muted);
}

.hero-sidebar__read-more {
    font-size: 11px;
    font-weight: 700;
    color: var(--orange);
    margin-top: auto;
}

/* ========================================
   Ad Banner
   ======================================== */
.ad-banner {
    background-color: var(--bg-white);
    padding: 12px var(--padding-x);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.ad-banner__label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.ad-banner__inner {
    background: var(--bg-light);
    border: 1px solid var(--border-med);
    border-radius: 3px;
    width: 970px;
    max-width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #BBBBBB;
    font-size: 13px;
    font-weight: 500;
}

/* Ad Carousel (shared between home and sidebar) */
.ad-carousel .ad-carousel__track {
    position: relative;
    width: 100%;
}

.ad-banner.ad-carousel .ad-carousel__track {
    width: 970px;
    max-width: 100%;
    height: 90px;
    border-radius: 3px;
    overflow: hidden;
}

.ad-carousel__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: block;
}

.ad-carousel__slide.active {
    position: relative;
    opacity: 1;
    z-index: 1;
}

.ad-carousel__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 3px;
}

/* Double Ad Banner */
.ad-banner-double {
    background-color: var(--bg-white);
    padding: 12px var(--padding-x);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.ad-banner-double__label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.ad-banner-double__grid {
    display: flex;
    gap: 16px;
    width: 100%;
}

.ad-banner-double__slot {
    flex: 1;
    min-width: 0;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.ad-banner-double__slot--empty {
    background: var(--bg-light);
    border: 1px solid var(--border-med);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    font-size: 13px;
    font-weight: 500;
}

.ad-banner-double__slot.ad-carousel .ad-carousel__track {
    position: relative;
    width: 100%;
    height: 100%;
}

.ad-banner-double__slot .ad-carousel__slide {
    position: absolute;
    inset: 0;
}

.ad-banner-double__slot .ad-carousel__slide.active {
    position: relative;
}

.ad-banner-double__slot .ad-carousel__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .ad-banner-double__grid {
        flex-direction: column;
    }
}

/* ========================================
   Main Body (content + sidebar)
   ======================================== */
.main-body {
    background-color: var(--bg-page);
    padding: 32px var(--padding-x);
    display: flex;
    gap: 28px;
}

.main-body__left {
    max-width: 920px;
    width: 100%;
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.main-body__right {
    width: 340px;
    min-width: 340px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* ========================================
   Section Headers
   ======================================== */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.section-header__label {
    display: flex;
    align-items: center;
    gap: 0;
}

.section-header__bar {
    width: 5px;
    height: 26px;
    background-color: var(--orange);
    flex-shrink: 0;
}

.section-header__bar--navy {
    background-color: var(--navy);
}

.section-header__bar--red {
    background-color: var(--red-accent);
}

.section-header__bar--green {
    background-color: var(--green-accent);
}

.section-header__bar--purple {
    background-color: var(--purple-accent);
}

.section-header__title {
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--navy);
    padding-left: 8px;
}

.section-header__link {
    font-size: 12px;
    color: var(--orange);
    font-weight: 700;
}

.section-header__link:hover {
    text-decoration: underline;
}

/* ========================================
   News Cards
   ======================================== */
.news-card {
    border-radius: 4px;
    overflow: hidden;
    background: var(--bg-white);
    transition: box-shadow 0.2s, transform 0.15s;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.news-card__image-wrap {
    position: relative;
    overflow: hidden;
}

.news-card__image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    transition: transform 0.3s;
}

.news-card:hover .news-card__image {
    transform: scale(1.03);
}

.news-card__category {
    position: absolute;
    top: 8px;
    left: 8px;
    background-color: var(--orange);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 2px;
    letter-spacing: 0.5px;
}

.news-card__body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.news-card__title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--navy);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card__title a:hover {
    color: var(--orange);
}

.news-card__excerpt {
    font-size: 13px;
    color: var(--text-body);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card__meta {
    font-size: 11px;
    color: var(--text-muted);
}

.news-card__read-more {
    font-size: 12px;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: auto;
    transition: text-decoration 0.2s;
}

.news-card__read-more:hover {
    text-decoration: underline;
}

.news-card--compact .news-card__read-more {
    font-size: 11px;
}

.bottom-card .news-card__read-more {
    font-size: 10px;
}

/* Deportes cards - taller images */
.news-card--deportes .news-card__image {
    height: 180px;
}

/* ========================================
   News Grids
   ======================================== */
.news-grid {
    display: flex;
    gap: 16px;
}

.news-grid > * {
    flex: 1;
    min-width: 0;
}

/* ========================================
   Internacional Section (special layout)
   ======================================== */
.intl-featured {
    display: flex;
    border-radius: 4px;
    overflow: hidden;
    background: var(--bg-white);
    margin-bottom: 16px;
}

.intl-featured__image {
    width: 400px;
    min-width: 400px;
    height: 260px;
    object-fit: cover;
}

.intl-featured__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.intl-featured__cat {
    display: inline-block;
    background-color: var(--navy);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 2px;
    align-self: flex-start;
    letter-spacing: 0.5px;
}

.intl-featured__title {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--navy);
}

.intl-featured__title a:hover {
    color: var(--orange);
}

.intl-featured__desc {
    font-size: 13px;
    color: var(--text-body);
    line-height: 1.5;
}

.intl-featured__meta {
    font-size: 11px;
    color: var(--text-muted);
    display: flex;
    gap: 16px;
}

/* Compact horizontal cards */
.news-card--compact {
    flex-direction: row;
    height: 110px;
}

.news-card--compact .news-card__image-wrap {
    width: 100px;
    min-width: 100px;
    height: 100%;
}

.news-card--compact .news-card__image {
    height: 100%;
}

.news-card--compact .news-card__body {
    padding: 12px;
    gap: 6px;
    justify-content: center;
}

.news-card--compact .news-card__title {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    -webkit-line-clamp: 3;
}

/* ========================================
   Sidebar Widgets
   ======================================== */

/* Most Read Widget */
.widget-most-read {
    background: var(--bg-white);
    border-radius: 4px;
    overflow: hidden;
}

.widget-most-read__header {
    background-color: var(--navy);
    height: 46px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
}

.widget-most-read__header-bar {
    width: 4px;
    height: 20px;
    background-color: var(--orange);
}

.widget-most-read__header-title {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #fff;
}

.most-read__item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-light);
}

.most-read__item:last-child {
    border-bottom: none;
}

.most-read__num {
    font-size: 22px;
    font-weight: 900;
    color: var(--orange);
    min-width: 30px;
}

.most-read__title {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--navy);
}

.most-read__title:hover {
    color: var(--orange);
}

/* Newsletter Widget */
.widget-newsletter {
    background-color: var(--navy);
    border-radius: 4px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.widget-newsletter__icon {
    width: 40px;
    height: 40px;
    background-color: var(--orange);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

.widget-newsletter__title {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.widget-newsletter__desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}

.widget-newsletter__input {
    height: 40px;
    border-radius: 4px;
    border: none;
    padding: 0 14px;
    font-size: 13px;
    font-family: var(--font);
    width: 100%;
}

.widget-newsletter__btn {
    height: 42px;
    border-radius: 4px;
    border: none;
    background-color: var(--orange);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    cursor: pointer;
    font-family: var(--font);
    transition: background-color 0.2s;
    width: 100%;
}

.widget-newsletter__btn:hover {
    background-color: #e05f00;
}

/* Zulia Widget (sidebar) */
.widget-zulia {
    background: var(--bg-white);
    border-radius: 4px;
    overflow: hidden;
}

.widget-zulia__header {
    background-color: var(--orange);
    height: 46px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
}

.widget-zulia__header-bar {
    width: 4px;
    height: 20px;
    background-color: #fff;
}

.widget-zulia__header-title {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #fff;
}

.widget-zulia__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-light);
}

.widget-zulia__item:last-child {
    border-bottom: none;
}

.widget-zulia__item-img {
    width: 70px;
    height: 50px;
    object-fit: cover;
    border-radius: 3px;
    flex-shrink: 0;
}

.widget-zulia__item-title {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--navy);
}

.widget-zulia__item-title:hover {
    color: var(--orange);
}

/* Sidebar Ad Banner */
.widget-ad {
    border-radius: 4px;
    overflow: hidden;
    height: 200px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--navy);
}

.widget-ad__label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.5);
    z-index: 2;
}

.widget-ad__title {
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    text-align: center;
}

.widget-ad.ad-carousel {
    background: var(--navy);
    padding: 4px 0 0;
}

.widget-ad.ad-carousel .ad-carousel__track {
    height: 180px;
    border-radius: 0 0 4px 4px;
    overflow: hidden;
}

.widget-ad.ad-carousel .ad-carousel__slide img {
    border-radius: 0;
}

/* Sidebar Radio Banner */
.widget-radio-banner {
    border-radius: 4px;
    overflow: hidden;
}
.widget-radio-banner__img-wrap {
    position: relative;
    display: block;
}
.widget-radio-banner__img-wrap img {
    width: 100%;
    display: block;
}
.widget-radio-banner__play {
    position: absolute;
    top: 25%;
    right: 13%;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    color: #FF6B00;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: background 0.2s, transform 0.2s;
}
.widget-radio-banner__play i {
    margin-left: 2px;
}
.widget-radio-banner__play:hover {
    background: #f5f5f5;
    transform: scale(1.1);
}
.widget-radio-banner__btn--solo {
    display: block;
    text-align: center;
    padding: 14px 20px;
    background: var(--orange);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
}
.widget-radio-banner__btn--solo:hover {
    opacity: 0.9;
}

/* ========================================
   Zulia al Dia (Full Width Section)
   ======================================== */
.zulia-section {
    background-color: var(--zulia-blue);
    padding: 32px var(--padding-x);
}

.zulia-section .section-header {
    margin-bottom: 16px;
}

.zulia-section .section-header__bar {
    background-color: var(--orange);
}

.zulia-section .section-header__title {
    color: #fff;
}

.zulia-section .section-header__link {
    color: var(--orange);
}

.zulia-section .news-grid {
    display: flex;
    gap: 16px;
}

.zulia-section .news-card__image {
    height: 170px;
}

.zulia-section .news-card__body {
    padding: 14px;
    gap: 8px;
}

/* ========================================
   Bottom Sections (3 columns)
   ======================================== */
.bottom-sections {
    background-color: var(--bg-page);
    padding: 32px var(--padding-x);
    display: flex;
    gap: 24px;
}

.bottom-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Bottom compact cards */
.bottom-card {
    display: flex;
    border-radius: 4px;
    overflow: hidden;
    background: var(--bg-white);
    height: 90px;
    transition: box-shadow 0.2s;
}

.bottom-card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.bottom-card__image {
    width: 90px;
    min-width: 90px;
    height: 100%;
    object-fit: cover;
}

.bottom-card__body {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    justify-content: center;
    flex: 1;
}

.bottom-card__title {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--navy);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bottom-card__title:hover {
    color: var(--orange);
}

.bottom-card__meta {
    font-size: 10px;
    color: var(--text-muted);
}

/* ========================================
   Footer
   ======================================== */
.footer-top {
    background-color: #1A1A2E;
    padding: 40px var(--padding-x);
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-brand {
    width: 280px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-brand__logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand__tagline {
    font-size: 13px;
    color: #AAAAAA;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 14px;
    transition: background-color 0.2s, color 0.2s;
}

.footer-social a:hover {
    background-color: var(--orange);
    color: #fff;
}

.footer-column {
    width: 160px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-column:last-child {
    width: 200px;
}

.footer-column__title {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #FFFFFF;
    text-transform: uppercase;
}

.footer-column__divider {
    width: 40px;
    height: 2px;
    background-color: var(--orange);
    margin-top: -8px;
}

.footer-column ul li {
    margin-bottom: 0;
}

.footer-column ul li a,
.footer-column p {
    font-size: 13px;
    color: #AAAAAA;
    transition: color 0.2s;
    line-height: 1.8;
}

.footer-column ul li a:hover {
    color: var(--orange);
}

.footer-bottom {
    background-color: var(--navy-footer-bottom);
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--padding-x);
}

.footer-bottom__left {
    font-size: 12px;
    color: #fff;
}

.footer-bottom__right {
    display: flex;
    gap: 20px;
}

.footer-bottom__right a {
    font-size: 12px;
    color: #fff;
    transition: color 0.2s;
}

.footer-bottom__right a:hover {
    color: var(--orange);
}

/* ========================================
   Legal Pages
   ======================================== */
.legal-hero {
    background-color: var(--navy);
    padding: 40px var(--padding-x);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.legal-hero__title {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
}

.legal-hero__date {
    font-size: 14px;
    color: var(--text-muted);
}

.legal-content {
    background-color: var(--bg-white);
    padding: 60px var(--padding-x);
    max-width: 100%;
}

.legal-content p {
    font-size: 15px;
    font-family: var(--font);
    color: #333;
    line-height: 1.7;
    margin-bottom: 24px;
}

.legal-content h2 {
    font-size: 18px;
    font-weight: 800;
    color: var(--navy);
    margin-top: 32px;
    margin-bottom: 12px;
    padding-left: 12px;
    border-left: 4px solid var(--orange);
}

.legal-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-top: 20px;
    margin-bottom: 8px;
}

.legal-content ul,
.legal-content ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

.legal-content ul li,
.legal-content ol li {
    font-size: 15px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 4px;
    list-style: disc;
}

.legal-content a {
    color: var(--orange);
    font-weight: 600;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* ========================================
   Contact / Denuncia Page
   ======================================== */

/* Hero */
.contact-hero {
    background-color: var(--navy);
    padding: 40px var(--padding-x);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-hero__title {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
}

.contact-hero__subtitle {
    font-size: 16px;
    color: var(--text-muted);
}

/* Body Layout */
.contact-body {
    display: flex;
    gap: 40px;
    background: var(--bg-page);
    padding: 48px var(--padding-x);
}

.contact-body__left {
    flex: 1;
    min-width: 0;
}

.contact-body__right {
    width: 380px;
    min-width: 380px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Form Card */
.contact-form-card {
    background: var(--bg-white);
    border-radius: 8px;
    padding: 40px;
}

.contact-form-card__title {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-form__field label {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
}

.contact-form__field input[type="text"],
.contact-form__field input[type="email"],
.contact-form__field input[type="tel"],
.contact-form__field select,
.contact-form__field textarea {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    font-family: var(--font);
    border: 1px solid var(--border-med);
    border-radius: 4px;
    background: var(--bg-white);
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.2s;
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
    border-color: var(--orange);
}

.contact-form__field textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form__field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}

/* Upload */
.contact-form__upload {
    position: relative;
    border: 2px dashed var(--orange);
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
}

.contact-form__upload input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.contact-form__upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 20px;
    text-align: center;
}

.contact-form__upload-label i {
    font-size: 24px;
    color: var(--orange);
}

.contact-form__upload-label span {
    font-size: 13px;
    color: var(--text-body);
}

.contact-form__upload-label small {
    font-size: 11px;
    color: var(--text-muted);
}

/* Terms Checkbox */
.contact-form__terms label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--text-body);
    line-height: 1.5;
    cursor: pointer;
}

.contact-form__terms input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: var(--orange);
}

.contact-form__terms a {
    color: var(--orange);
    font-weight: 600;
}

.contact-form__terms a:hover {
    text-decoration: underline;
}

/* Submit Button */
.contact-form__submit {
    width: 100%;
    height: 52px;
    background: var(--orange);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.contact-form__submit:hover {
    background: #e05f00;
}

/* Success / Error */
.contact-form__success {
    text-align: center;
    padding: 40px 20px;
}

.contact-form__success i {
    font-size: 48px;
    color: #2C5F2E;
    margin-bottom: 16px;
}

.contact-form__success h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.contact-form__success p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.6;
}

.contact-form__error {
    background: #fdeaea;
    color: #c0392b;
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 16px;
}

/* Info Card */
.contact-info-card {
    background: var(--bg-white);
    border-radius: 8px;
    padding: 24px;
}

.contact-info-card__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}

.contact-info-card__rows {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-info-card__row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-info-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: var(--bg-page);
    color: var(--orange);
    font-size: 14px;
}

.contact-info-card__row span,
.contact-info-card__row a {
    font-size: 13px;
    color: #444;
}

.contact-info-card__row a:hover {
    color: var(--orange);
}

/* Map */
.contact-map {
    border-radius: 4px;
    overflow: hidden;
}

/* Social Card */
.contact-social-card {
    background: var(--bg-white);
    border-radius: 8px;
    padding: 24px;
}

.contact-social-card__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}

.contact-social-card__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-social-card__link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 4px;
    color: #fff;
    font-size: 13px;
    transition: opacity 0.2s;
}

.contact-social-card__link:hover {
    opacity: 0.9;
    color: #fff;
}

.contact-social-card__link i {
    font-size: 15px;
    width: 18px;
    text-align: center;
}

/* Contact Responsive */
@media (max-width: 992px) {
    .contact-body {
        flex-direction: column;
    }

    .contact-body__right {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 768px) {
    .contact-hero__title {
        font-size: 24px;
    }

    .contact-form-card {
        padding: 24px;
    }
}

/* ========================================
   Nuestro Equipo Page
   ======================================== */

/* Hero */
.team-hero {
    position: relative;
    height: 360px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 60px var(--padding-x);
}

.team-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 100%);
}

.team-hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.team-hero__badge {
    display: inline-block;
    align-self: flex-start;
    background-color: var(--orange);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 6px 14px;
    border-radius: 3px;
}

.team-hero__title {
    font-size: 52px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}

.team-hero__subtitle {
    font-size: 17px;
    color: #ccc;
    line-height: 1.6;
    max-width: 700px;
}

/* Breadcrumb */
.team-breadcrumb {
    background: var(--bg-white);
    padding: 14px var(--padding-x);
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--border-light);
    font-size: 12px;
}

.team-breadcrumb a {
    color: var(--orange);
    font-weight: 600;
}

.team-breadcrumb a:hover {
    text-decoration: underline;
}

.team-breadcrumb__sep {
    color: var(--text-muted);
}

.team-breadcrumb__current {
    color: var(--text-body);
}

/* Mission Section */
.team-mission {
    display: flex;
    align-items: center;
    gap: 60px;
    background: var(--bg-white);
    padding: 60px var(--padding-x);
}

.team-mission__left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.team-mission__tag {
    display: inline-block;
    align-self: flex-start;
    background-color: var(--orange);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 6px 14px;
    border-radius: 3px;
}

.team-mission__title {
    font-size: 32px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
}

.team-mission__text {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.7;
}
.team-mission__text p,
.team-director-card__bio p,
.team-journalist-card__bio p,
.team-value-card__text p {
    margin: 0 0 0.5em;
}
.team-mission__text p:last-child,
.team-director-card__bio p:last-child,
.team-journalist-card__bio p:last-child,
.team-value-card__text p:last-child {
    margin-bottom: 0;
}

.team-mission__stats {
    display: flex;
    gap: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
}

.team-mission__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.team-mission__stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--orange);
}

.team-mission__stat-label {
    font-size: 13px;
    color: var(--text-meta);
}

.team-mission__image {
    width: 500px;
    min-width: 500px;
    height: 380px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
}

/* Team Section */
.team-members {
    background: var(--bg-page);
    padding: 60px var(--padding-x);
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.team-members__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.team-members__tag {
    display: inline-block;
    background-color: var(--orange);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 6px 14px;
    border-radius: 3px;
}

.team-members__title {
    font-size: 36px;
    font-weight: 800;
    color: var(--navy);
}

.team-members__subtitle {
    font-size: 16px;
    color: var(--text-meta);
}

/* Director Cards */
.team-directors {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.team-director-card {
    width: 340px;
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.team-director-card__image {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
}

.team-director-card__info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.team-director-card__role {
    display: inline-block;
    align-self: flex-start;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 3px;
    letter-spacing: 0.5px;
}

.team-director-card__name {
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
}

.team-director-card__bio {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

.team-director-card__social {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

.team-director-card__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-page);
    color: var(--text-body);
    font-size: 14px;
    transition: background-color 0.2s, color 0.2s;
}

.team-director-card__social a:hover {
    background: var(--orange);
    color: #fff;
}

/* Journalist Cards */
.team-journalists-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.team-journalist-card {
    width: 330px;
    flex: 0 0 330px;
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.team-journalist-card__image {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
}

.team-journalist-card__info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.team-journalist-card__role {
    display: inline-block;
    align-self: flex-start;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 3px;
    letter-spacing: 0.5px;
}

.team-journalist-card__name {
    font-size: 16px;
    font-weight: 800;
    color: var(--navy);
}

.team-journalist-card__bio {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
}

/* Values Section */
.team-values {
    background: var(--navy);
    padding: 60px var(--padding-x);
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.team-values__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.team-values__tag {
    display: inline-block;
    background-color: var(--orange);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 6px 14px;
    border-radius: 3px;
}

.team-values__title {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
}

.team-values__grid {
    display: flex;
    gap: 20px;
}

.team-value-card {
    flex: 1;
    min-width: 0;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.team-value-card__emoji {
    font-size: 32px;
}

.team-value-card__title {
    font-size: 18px;
    font-weight: 800;
    color: var(--orange);
}

.team-value-card__text {
    font-size: 13px;
    color: #aaa;
    line-height: 1.6;
}

/* CTA Section */
.team-cta {
    background: var(--orange);
    padding: 60px var(--padding-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.team-cta__left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.team-cta__title {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.team-cta__text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.team-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 18px 32px;
    border-radius: 6px;
    white-space: nowrap;
    transition: background-color 0.2s;
}

.team-cta__btn:hover {
    background: var(--navy-light);
    color: #fff;
}

/* Team Page Responsive */
@media (max-width: 992px) {
    .team-mission {
        flex-direction: column;
    }

    .team-mission__image {
        width: 100%;
        min-width: 0;
        height: 280px;
    }

    .team-directors {
        flex-direction: column;
        align-items: center;
    }

    .team-director-card {
        width: 100%;
        max-width: 500px;
    }

    .team-journalist-card {
        width: 330px;
        flex: 0 0 330px;
    }

    .team-values__grid {
        flex-wrap: wrap;
    }

    .team-value-card {
        flex: 1 1 calc(50% - 10px);
        min-width: calc(50% - 10px);
    }

    .team-cta {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .team-hero {
        height: 280px;
        padding: 40px var(--padding-x);
    }

    .team-hero__title {
        font-size: 32px;
    }

    .team-hero__subtitle {
        font-size: 14px;
    }

    .team-mission__title {
        font-size: 24px;
    }

    .team-mission__stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .team-mission__stat {
        min-width: calc(50% - 10px);
    }

    .team-members__title {
        font-size: 26px;
    }

    .team-journalist-card {
        width: 100%;
        flex: 0 0 100%;
        height: auto;
    }

    .team-value-card {
        flex: 1 1 100%;
        min-width: 100%;
    }

    .team-values__title {
        font-size: 24px;
    }

    .team-cta__title {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .team-hero__title {
        font-size: 26px;
    }

    .team-mission__stat-number {
        font-size: 24px;
    }
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1200px) {
    :root {
        --padding-x: 30px;
    }

    .hero-main {
        width: auto;
        min-width: 0;
        flex: 2;
    }

    .hero-sidebar {
        flex: 1;
    }

    .main-body__right {
        width: 280px;
        min-width: 280px;
    }

    .intl-featured__image {
        width: 300px;
        min-width: 300px;
    }
}

@media (max-width: 992px) {
    :root {
        --padding-x: 20px;
    }

    .hero-grid {
        flex-direction: column;
        height: auto;
    }

    .hero-main {
        width: 100%;
    }

    .hero-sidebar {
        flex-direction: row;
        overflow-x: auto;
    }

    .hero-sidebar__item {
        min-width: 280px;
        height: 120px;
    }

    .main-body {
        flex-direction: column;
    }

    .main-body__right {
        width: 100%;
        min-width: 0;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .main-body__right > * {
        flex: 1;
        min-width: 280px;
    }

    .intl-featured {
        flex-direction: column;
    }

    .intl-featured__image {
        width: 100%;
        min-width: 0;
        height: 200px;
    }

    .bottom-sections {
        flex-direction: column;
    }

    .footer-top {
        flex-wrap: wrap;
    }
}

/* ========================================
   Site Popup
   ======================================== */
.site-popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s;
}

.site-popup-overlay.active {
    display: flex;
    opacity: 1;
}

.site-popup {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: popupSlideIn 0.4s ease;
    line-height: 0;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.site-popup__close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.site-popup__close:hover {
    background: rgba(0, 0, 0, 0.7);
}

.site-popup__img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 85vh;
    border-radius: 12px;
}

.site-popup__link {
    display: block;
    line-height: 0;
}

.site-popup__buttons {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    gap: 8px;
    padding: 16px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
    border-radius: 0 0 12px 12px;
}

.site-popup__btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font);
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
    border: none;
    text-align: center;
    line-height: 1;
}

.site-popup__btn:active {
    transform: scale(0.98);
}

.site-popup__btn--primary {
    background: rgba(255, 107, 0, 0.85);
    color: #fff;
    letter-spacing: 0.5px;
    backdrop-filter: blur(4px);
}

.site-popup__btn--primary:hover {
    background: rgba(255, 107, 0, 1);
    color: #fff;
}

.site-popup__btn--secondary {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.site-popup__btn--secondary:hover {
    background: rgba(255, 255, 255, 0.35);
    color: #fff;
}

@media (max-width: 480px) {
    .site-popup__buttons {
        flex-direction: column;
        gap: 6px;
        padding: 12px 14px;
    }

    .site-popup__btn {
        font-size: 12px;
        padding: 10px 12px;
    }
}

/* Mobile Drawer & Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s;
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100%;
    background: var(--bg-white);
    z-index: 999;
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
}

.mobile-drawer.active {
    right: 0;
}

.mobile-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 3px solid var(--orange);
}

.mobile-drawer__header .custom-logo-link {
    width: 120px !important;
}

.mobile-drawer__header .site-logo {
    gap: 6px;
}

.mobile-drawer__close {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 22px;
    color: var(--text-dark);
    padding: 8px;
    line-height: 1;
}

.mobile-drawer__close:hover {
    color: var(--orange);
}

.mobile-drawer__nav {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-drawer__nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-drawer__nav ul li a {
    display: block;
    padding: 12px 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    border-bottom: 1px solid var(--border-light);
    transition: color 0.2s;
}

.mobile-drawer__nav ul li a:hover {
    color: var(--orange);
}

.mobile-drawer__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orange);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 12px 20px;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.mobile-drawer__cta:hover {
    background: #e05f00;
    color: #fff;
}

.mobile-drawer__contact {
    padding: 20px;
    border-top: 1px solid var(--border-light);
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-drawer__contact p {
    font-size: 13px;
    color: var(--text-body);
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-drawer__contact p i {
    color: var(--orange);
    width: 16px;
    text-align: center;
    font-size: 14px;
}

.mobile-drawer__contact p a {
    color: var(--text-body);
}

.mobile-drawer__contact p a:hover {
    color: var(--orange);
}

.mobile-drawer__social {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.mobile-drawer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--bg-page);
    color: var(--text-body);
    font-size: 15px;
    transition: background-color 0.2s, color 0.2s;
}

.mobile-drawer__social a:hover {
    background: var(--orange);
    color: #fff;
}

@media (min-width: 769px) {
    .mobile-overlay,
    .mobile-drawer {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .site-header {
        height: auto;
        padding: 12px 0;
        position: relative;
    }

    .site-header .custom-logo-link,
    .site-header .site-logo {
        width: 130px;
        justify-content: flex-end;
        margin-left: 0;
        padding-left: var(--padding-x);
    }

    .site-header .custom-logo-link img {
        max-height: 50px;
    }

    .primary-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
        margin-right: var(--padding-x);
    }

    .news-grid {
        flex-direction: column;
    }

    .hero-sidebar {
        flex-direction: column;
    }

    .hero-sidebar__item {
        min-width: auto;
    }

    .hero-main__title {
        font-size: 22px;
    }

    .hero-main__image {
        height: 220px;
    }

    .breaking-ticker__label {
        width: 130px;
        min-width: 120px;
        font-size: 9px;
        padding: 0 5px;
    }

    .footer-top {
        flex-direction: column;
    }

    .footer-brand {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        height: auto;
        padding: 16px var(--padding-x);
        gap: 8px;
        text-align: center;
    }

    .top-bar__left .top-bar__weather {
        display: none;
    }

    .ad-banner__inner {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-main__title {
        font-size: 18px;
    }

    .intl-featured__title {
        font-size: 16px;
    }
}

/* ========================================
   Category Page
   ======================================== */

/* Category Hero Banner */
.category-hero {
    background-color: var(--navy);
    padding: 32px var(--padding-x);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.category-hero__title {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: 2px;
}

.category-hero__breadcrumb {
    font-size: 12px;
    color: var(--text-muted);
}

.category-hero__breadcrumb a {
    color: var(--text-muted);
    transition: color 0.2s;
}

.category-hero__breadcrumb a:hover {
    color: var(--orange);
}

.category-hero__separator {
    margin: 0 6px;
}

/* Category Subtitle */
.category-subtitle {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
}

/* Category Cards (horizontal layout) */
.category-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.category-card {
    display: flex;
    gap: 16px;
    background: var(--bg-white);
    border-radius: 4px;
    padding: 16px;
    transition: box-shadow 0.2s;
}

.category-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.category-card__image-wrap {
    flex-shrink: 0;
    width: 200px;
    height: 130px;
    border-radius: 4px;
    overflow: hidden;
}

.category-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.category-card:hover .category-card__image {
    transform: scale(1.03);
}

.category-card__body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    min-width: 0;
}

.category-card__cat {
    font-size: 11px;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 0.5px;
}

.category-card__cat:hover {
    text-decoration: underline;
}

.category-card__title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--navy);
}

.category-card__title a:hover {
    color: var(--orange);
}

.category-card__excerpt {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.category-card__meta {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: auto;
}

/* Category Pagination */
.category-pagination {
    display: flex;
    justify-content: center;
    padding: 16px 0;
}

.category-pagination .nav-links {
    display: flex;
    gap: 8px;
    align-items: center;
}

.category-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 400;
    color: var(--navy);
    background: var(--bg-white);
    border: 1px solid var(--border-med);
    border-radius: 4px;
    transition: background-color 0.2s, color 0.2s;
}

.category-pagination .page-numbers:hover {
    background-color: var(--bg-light);
}

.category-pagination .page-numbers.current {
    background-color: var(--orange);
    color: var(--text-white);
    font-weight: 700;
    border-color: var(--orange);
}

.category-pagination .prev,
.category-pagination .next {
    color: var(--text-muted);
}

.category-empty {
    padding: 40px 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 16px;
}

/* Search Results */
.search-again {
    margin-bottom: 24px;
}

.search-again__form {
    display: flex;
    gap: 0;
}

.search-again__input {
    flex: 1;
    padding: 12px 16px;
    font-size: 15px;
    font-family: var(--font);
    border: 2px solid var(--border-med);
    border-right: none;
    border-radius: 4px 0 0 4px;
    outline: none;
    color: var(--text-dark);
    transition: border-color 0.2s;
}

.search-again__input:focus {
    border-color: var(--orange);
}

.search-again__btn {
    padding: 12px 24px;
    background: var(--orange);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font);
    border: 2px solid var(--orange);
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background-color 0.2s;
}

.search-again__btn:hover {
    background: #e05f00;
    border-color: #e05f00;
}

.search-empty {
    text-align: center;
    padding: 60px 20px;
}

.search-empty__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--text-muted);
    font-size: 24px;
    margin-bottom: 16px;
}

.search-empty__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.search-empty__text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Category Responsive */
@media (max-width: 768px) {
    .category-hero__title {
        font-size: 24px;
    }

    .category-card {
        flex-direction: column;
    }

    .category-card__image-wrap {
        width: 100%;
        height: 180px;
    }
}

@media (max-width: 480px) {
    .category-hero__title {
        font-size: 20px;
    }

    .category-card__image-wrap {
        height: 150px;
    }
}

/* ========================================
   Single Post
   ======================================== */

/* Breadcrumb */
.single-breadcrumb {
    background: var(--bg-white);
    padding: 12px var(--padding-x);
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--border-light);
    font-size: 12px;
    flex-wrap: wrap;
}

.single-breadcrumb a {
    color: var(--orange);
    font-weight: 600;
}

.single-breadcrumb a:hover {
    text-decoration: underline;
}

.single-breadcrumb__sep {
    color: var(--text-muted);
}

.single-breadcrumb__current {
    color: var(--text-body);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Single Article */
.single-article {
    background: var(--bg-white);
    border-radius: 6px;
    overflow: hidden;
    width: 860px;
    min-width: 0;
    flex: 1;
}

/* Hero Image */
.single-article__hero {
    width: 100%;
    max-height: 560px;
    overflow: hidden;
    background: var(--bg-page);
}

.single-article__hero-img {
    width: 100%;
    max-height: 560px;
    object-fit: contain;
}

/* Article Meta */
.single-article__meta {
    padding: 28px 32px 0 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.single-article__cat-tag {
    display: inline-block;
    align-self: flex-start;
    background-color: var(--orange);
    color: var(--text-white);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 5px 10px;
    border-radius: 3px;
}

.single-article__cat-tag:hover {
    background-color: #e05f00;
    color: var(--text-white);
}

.single-article__title {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.25;
    color: var(--navy);
}

.single-article__author-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.single-article__author {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-body);
}

.single-article__dot {
    color: var(--border-med);
    font-size: 13px;
}

.single-article__date {
    font-size: 13px;
    color: var(--text-meta);
}

/* Share Row */
.single-article__share-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    flex-wrap: wrap;
}

.single-article__share-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-body);
}

.single-article__share-btn {
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-white);
    border: none;
    cursor: pointer;
    font-family: var(--font);
    transition: opacity 0.2s;
}

.single-article__share-btn:hover {
    opacity: 0.85;
    color: var(--text-white);
}

.single-article__share-btn--fb {
    background-color: #1877F2;
}

.single-article__share-btn--tw {
    background-color: #1DA1F2;
}

.single-article__share-btn--wa {
    background-color: #25D366;
}

.single-article__share-btn--copy {
    background-color: var(--bg-page);
    color: var(--text-body);
    border: 1px solid var(--border-med);
}

.single-article__share-btn--copy:hover {
    color: var(--text-body);
    background-color: var(--bg-light);
}

/* Article Body */
.single-article__body {
    padding: 24px 32px 32px 32px;
    font-size: 16px;
    line-height: 1.7;
    color: #333333;
    text-align: justify;
}

.single-article__body p {
    margin-bottom: 20px;
}

.single-article__body h2,
.single-article__body h3,
.single-article__body h4 {
    color: var(--navy);
    margin: 28px 0 12px 0;
}

.single-article__body h2 {
    font-size: 24px;
    font-weight: 800;
}

.single-article__body h3 {
    font-size: 20px;
    font-weight: 700;
}

.single-article__body blockquote {
    background-color: var(--navy);
    border-left: 5px solid var(--orange);
    border-radius: 6px;
    padding: 24px 28px;
    margin: 24px 0;
    color: var(--text-white);
    font-size: 16px;
    font-style: italic;
    line-height: 1.6;
}

.single-article__body blockquote p {
    margin-bottom: 0;
    color: var(--text-white);
}

.single-article__body img {
    border-radius: 6px;
    margin: 16px 0;
}

.single-article__body ul,
.single-article__body ol {
    margin: 16px 0;
    padding-left: 24px;
}

.single-article__body li {
    margin-bottom: 8px;
    list-style: disc;
}

.single-article__body ol li {
    list-style: decimal;
}

.single-article__body a {
    color: var(--orange);
    font-weight: 600;
}

.single-article__body a:hover {
    text-decoration: underline;
}

/* Tags */
.single-article__tags {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 32px 32px 32px;
    border-top: 1px solid var(--border-light);
    flex-wrap: wrap;
    padding-top: 20px;
}

.single-article__tags-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-meta);
}

.single-article__tag {
    display: inline-block;
    padding: 5px 10px;
    background-color: var(--bg-light);
    border: 1px solid var(--border-med);
    border-radius: 3px;
    font-size: 11px;
    color: var(--text-body);
    transition: background-color 0.2s;
}

.single-article__tag:hover {
    background-color: var(--border-med);
}

/* ========================================
   Related Articles
   ======================================== */
.related-section {
    background: var(--bg-white);
    padding: 40px var(--padding-x);
}

.related-section__header {
    padding-bottom: 16px;
    border-bottom: 3px solid var(--orange);
    margin-bottom: 24px;
}

.related-section__title {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--navy);
}

.related-section__grid {
    display: flex;
    gap: 24px;
}

.related-card {
    flex: 1;
    min-width: 0;
    border-radius: 6px;
    overflow: hidden;
    background: var(--bg-page);
    transition: box-shadow 0.2s, transform 0.15s;
    display: flex;
    flex-direction: column;
}

.related-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.related-card__image-wrap {
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.related-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.related-card:hover .related-card__image {
    transform: scale(1.03);
}

.related-card__body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.related-card__cat {
    font-size: 10px;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 0.5px;
}

.related-card__title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--navy);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-card__meta {
    font-size: 11px;
    color: var(--text-muted);
}

/* Single Post Responsive */
@media (max-width: 992px) {
    .single-article {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .single-article__hero {
        max-height: 360px;
    }

    .single-article__hero-img {
        max-height: 360px;
    }

    .single-article__title {
        font-size: 22px;
    }

    .single-article__meta {
        padding: 20px 16px 0 16px;
    }

    .single-article__body {
        padding: 20px 16px 24px 16px;
    }

    .single-article__tags {
        padding: 16px 16px 24px 16px;
    }

    .related-section__grid {
        flex-direction: column;
    }

    .single-article__share-row {
        gap: 6px;
    }
}

@media (max-width: 480px) {
    .single-article__hero {
        max-height: 300px;
    }

    .single-article__hero-img {
        max-height: 300px;
    }

    .single-article__title {
        font-size: 20px;
    }
}

/* ========================================
   404 — Página no encontrada
   ======================================== */
.error-404 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px var(--padding-x) 80px;
    background: var(--bg-page);
}

.error-404__icon {
    font-size: 48px;
    color: var(--border-med);
    margin-bottom: 8px;
}

.error-404__number {
    font-size: 160px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -6px;
    background: linear-gradient(180deg, var(--orange) 0%, #D08030 60%, rgba(248, 104, 0, 0.15) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.error-404__title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.error-404__desc {
    font-size: 16px;
    color: var(--text-body);
    max-width: 480px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.error-404__actions {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 24px;
}

.error-404__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    border: none;
    font-family: var(--font);
    transition: opacity 0.2s, transform 0.2s;
}

.error-404__btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.error-404__btn--primary {
    background: var(--orange);
    color: var(--text-white);
}

.error-404__btn--secondary {
    background: var(--bg-white);
    color: var(--text-dark);
    border: 1.5px solid var(--border-med);
}

.error-404__search {
    width: 100%;
    max-width: 520px;
    margin-bottom: 20px;
}

.error-404__search-wrap {
    display: flex;
    align-items: center;
    background: var(--bg-white);
    border: 1.5px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
    padding-left: 16px;
    transition: border-color 0.2s;
}

.error-404__search-wrap:focus-within {
    border-color: var(--orange);
}

.error-404__search-wrap i {
    color: var(--text-muted);
    font-size: 14px;
}

.error-404__search-wrap input {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px;
    font-size: 14px;
    font-family: var(--font);
    color: var(--text-dark);
    background: transparent;
}

.error-404__search-wrap button {
    background: var(--orange);
    color: var(--text-white);
    border: none;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    transition: opacity 0.2s;
}

.error-404__search-wrap button:hover {
    opacity: 0.9;
}

.error-404__breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 13px;
    color: var(--text-meta);
    margin-bottom: 48px;
}

.error-404__breadcrumb a {
    color: var(--orange);
    font-weight: 500;
}

.error-404__breadcrumb a:hover {
    text-decoration: underline;
}

.error-404__recent {
    width: 100%;
    max-width: 960px;
}

.error-404__recent-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 24px;
    text-align: left;
}

.error-404__recent-title .section-bar {
    width: 4px;
    height: 24px;
    background: var(--orange);
    border-radius: 2px;
    flex-shrink: 0;
}

.error-404__recent-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.error-404__card {
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.error-404__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.error-404__card-img {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.error-404__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.error-404__card:hover .error-404__card-img img {
    transform: scale(1.05);
}

.error-404__card-body {
    padding: 12px 14px 16px;
    text-align: left;
}

.error-404__card-cat {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 6px;
}

.error-404__card-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 404 Responsive */
@media (max-width: 768px) {
    .error-404 {
        padding: 40px 20px 60px;
    }

    .error-404__number {
        font-size: 100px;
        letter-spacing: -3px;
    }

    .error-404__title {
        font-size: 22px;
    }

    .error-404__desc {
        font-size: 14px;
    }

    .error-404__actions {
        flex-direction: column;
        width: 100%;
    }

    .error-404__btn {
        width: 100%;
        justify-content: center;
    }

    .error-404__recent-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .error-404__number {
        font-size: 80px;
    }

    .error-404__recent-grid {
        grid-template-columns: 1fr;
    }
}
