:root {
    --orange: #c8421a;
    --orange2: #e8621a;
    --green: #a1ea0f;
    --green2: #7aaa2a;
    --gold: #c9a961;
    --dark: #1a1209;
    --mid: #2c2c2c;
    --gray: #666;
    --light-gray: #f0f0f0;
    --white: #ffffff;
    --border: #e0e0e0;
    --accent-red: #c8421a;
    --accent-green: #a4f600;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--mid);
    background: var(--white);
    overflow-x: hidden;
}

/* ========================
   HEADER
======================== */
header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    background: var(--dark);
    z-index: 1000;
    border-bottom: 3px solid var(--orange);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

/* LOGO IMAGEN */
.logo-area {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(200,66,26,0.3));
    transition: transform 0.2s;
}

.logo-img:hover { transform: scale(1.04); }

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-suscribirse {
    background: var(--orange);
    color: white;
    padding: 0.45rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.btn-suscribirse:hover { background: var(--orange2); }

nav {
    border-top: 1px solid #2a2a2a;
    background: linear-gradient(90deg, #1a1209 0%, #2a1a08 50%, #1a2009 100%);
}

.nav-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0;
}

.nav-links a {
    display: block;
    color: #ccc;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.7rem 1.1rem;
    transition: color 0.2s, background 0.2s;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
    background: rgba(130, 0, 0, 0.0);
    border-bottom-color: var(--orange);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    margin-left: auto;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    transition: 0.3s;
}

/* ========================
   PAGE WRAPPER
======================== */
#page-home, #page-article {
    padding-top: 105px;
}

#page-article { display: none; }

/* ========================
   DATE BAR
======================== */
.date-bar {
    background: var(--light-gray);
    border-bottom: 1px solid var(--border);
    padding: 0.4rem 2rem;
    font-size: 0.75rem;
    color: var(--gray);
    display: flex;
    justify-content: space-between;
    max-width: 100%;
}

/* ========================
   HERO SLIDER — MÁS DELGADO
======================== */
.slider-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--dark);
}

.slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.slide {
    min-width: 100%;
    position: relative;
    height: 340px; /* ANTES: 520px */
    cursor: pointer;
    overflow: hidden;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 6s ease;
}

.slide:hover img { transform: scale(1.04); }

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(26,18,9,0.92) 0%,
        rgba(90,122,26,0.25) 60%,
        rgba(200,66,26,0.15) 100%
    );
}

/* Franja decorativa con colores del logo */
.slide-overlay::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: green
}

.slide-content {
    position: absolute;
    bottom: 0; left: 0;
    padding: 1.8rem 2.5rem;
    max-width: 650px;
}

.slide-category {
    display: inline-block;
    background: var(--green2);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.3rem 0.9rem;
    border-radius: 2px;
    margin-bottom: 0.6rem;
}

.slide-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 900;
    color: white;
    line-height: 1.15;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.slide-desc {
    font-family: 'Source Serif 4', serif;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.slide-date {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.5);
    margin-top: 0.5rem;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(200,66,26,0.3);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(200,66,26,0.5);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 10;
}

.slider-btn:hover { background: var(--orange); border-color: var(--orange); }
.slider-btn.prev { left: 1.2rem; }
.slider-btn.next { right: 1.2rem; }

.slider-dots {
    position: absolute;
    bottom: 0.8rem;
    right: 1.5rem;
    display: flex;
    gap: 0.4rem;
    z-index: 10;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--orange);
    width: 18px;
    border-radius: 3px;
}

/* ========================
   TICKER
======================== */
.ticker-bar {
    background: var(--green2);
    color: white;
    padding: 0.5rem 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
}

.ticker-inner {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-label {
    background: var(--dark);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.2rem 0.8rem;
    border-radius: 2px;
    flex-shrink: 0;
}

.ticker-content {
    font-size: 0.82rem;
    font-weight: 500;
    display: inline-block;
}

/* ========================
   MAIN LAYOUT
======================== */
.main-layout {
    max-width: 1300px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2.5rem;
}

/* ========================
   SECTION HEADERS
======================== */
.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.7rem;
    border-bottom: 3px solid var(--dark);
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--dark);
    letter-spacing: -0.5px;
}

.section-line {
    flex: 1;
    height: 1px;
    background: var(--border);
}

.section-header .cat-tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    border: 1.5px solid var(--orange);
    padding: 0.2rem 0.7rem;
    border-radius: 2px;
}

/* ========================
   NEWS GRID
======================== */
.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.news-card {
    cursor: pointer;
    transition: opacity 0.2s;
}

.news-card:hover { opacity: 0.85; }

.news-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.news-img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    object-position: top;
    display: block;
    border-radius: 2px;
}

.news-card.featured .news-img {
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: top;
}

.news-card-body { padding-top: 0.6rem; }
.news-card.featured .news-card-body { display: flex; flex-direction: column; justify-content: center; }

.news-cat {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.4rem;
    display: block;
}

.news-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.25;
    margin-bottom: 0.5rem;
}

.news-card.featured .news-title { font-size: 1.45rem; }
.news-card:not(.featured) .news-title { font-size: 1rem; }

.news-excerpt {
    font-family: 'Source Serif 4', serif;
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.news-meta {
    font-size: 0.73rem;
    color: #999;
}

/* ========================
   SHARE BAR EN CARDS
======================== */
.news-share-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.6rem;
    padding-top: 0.6rem;
    border-top: 1px solid var(--border);
}

.news-share-bar span {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #bbb;
    margin-right: 0.2rem;
}

.news-share-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--light-gray);
    color: var(--gray);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.news-share-bar a:hover { background: var(--orange); color: white; }
.news-share-bar a.fb:hover { background: #1877f2; color: white; }

.news-share-bar a.yt:hover { background: #ff0000; color: white; }

/* List cards */
.news-list-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: opacity 0.2s;
}

.news-list-item:hover { opacity: 0.75; }
.news-list-item:last-child { border-bottom: none; }

.news-list-item img {
    width: 100px;
    height: 70px;
    object-fit: cover;
    border-radius: 2px;
}

.news-list-item .news-title {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

/* ========================
   SIDEBAR
======================== */
.sidebar {}

.sidebar-section { margin-bottom: 2rem; }

.sidebar-card {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 0.8rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: opacity 0.2s;
}

.sidebar-card:hover { opacity: 0.75; }
.sidebar-card:last-child { border-bottom: none; }

.sidebar-card img {
    width: 80px;
    height: 55px;
    object-fit: cover;
    border-radius: 2px;
}

.sidebar-card .news-title { font-size: 0.82rem; }

/* ========================
   ARTICLE PAGE
======================== */
.article-page {
    max-width: 860px;
    margin: 0 auto;
    padding: 2.5rem 2rem 4rem;
}

.article-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--orange);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 1.5rem;
    transition: gap 0.2s;
    text-decoration: none;
}

.article-back:hover { gap: 0.8rem; }

.article-category {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.8rem;
    display: block;
}

.article-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.82rem;
    color: var(--gray);
    padding: 1rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 1.5rem;
}

.article-meta strong { color: var(--dark); }

/* SHARE BAR ARTÍCULO */
.article-share-bar {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 3px solid var(--dark);
    margin-bottom: 1.5rem;
}

.article-share-bar span {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
    margin-right: 0.3rem;
}

.article-share-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--light-gray);
    color: var(--gray);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    transition: all 0.2s;
    border: 1px solid var(--border);
}

.article-share-bar a:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.article-share-bar a.fb { background: #e8f0fe; color: #1877f2; }
.article-share-bar a.fb:hover { background: #1877f2; color: white; }
.article-share-bar a.ig { background: #fce4ec; color: #c13584; }
.article-share-bar a.ig:hover { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366); color: white; }
.article-share-bar a.wa { background: #e8f5e9; color: #25d366; }
.article-share-bar a.wa:hover { background: #25d366; color: white; }
.article-share-bar a.yt { background: #ffebee; color: #ff0000; }
.article-share-bar a.yt:hover { background: #ff0000; color: white; }

.article-hero-img {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    display: block;
}

.article-img-caption {
    font-size: 0.78rem;
    color: var(--gray);
    margin-bottom: 2rem;
    font-style: italic;
}

.article-body {
    font-family: 'Source Serif 4', serif;
    font-size: 1.05rem;
    line-height: 1.85;
    color: #333;
}

.article-body p { margin-bottom: 1.4rem; }

.article-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin: 2rem 0 0.8rem;
}

.article-body strong { color: var(--dark); }

.article-body blockquote {
    border-left: 4px solid var(--orange);
    padding: 0.8rem 1.5rem;
    margin: 1.5rem 0;
    background: #fff8f4;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--mid);
}

/* Related */
.related-section {
    border-top: 3px solid var(--dark);
    margin-top: 3rem;
    padding-top: 1.5rem;
}

.related-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.related-card {
    cursor: pointer;
    transition: opacity 0.2s;
}

.related-card:hover { opacity: 0.75; }

.related-card img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 2px;
    margin-bottom: 0.5rem;
}

.related-card .news-title { font-size: 0.88rem; }

/* ========================
   FOOTER
======================== */
footer {
    background: #0d0d0d;
    color: #aaa;
    font-size: 0.88rem;
}

.footer-main {
    max-width: 1300px;
    margin: 0 auto;
    padding: 3rem 2rem 2.5rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 3rem;
    border-bottom: 1px solid #2a2a2a;
}

.footer-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -1px;
}

.footer-logo-text span { color: #0c5a10; }

.footer-logo-tag {
    display: block;
    font-size: 0.6rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #555;
    margin-top: 2px;
    margin-bottom: 1rem;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: #2a2a2a;
    margin-bottom: 1.2rem;
}

.footer-col h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.footer-col-line {
    width: 3px;
    height: 18px;
    background: #017128;
    display: block;
    margin-bottom: 1.2rem;
}

.footer-col p {
    color: #888;
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.btn-footer-sub {
    display: inline-block;
    background: #09830f;
    color: #111;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.5rem 1.4rem;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s;
}

.btn-footer-sub:hover { background: #e0b000; }

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 0.6rem; }

.footer-links a {
    color: #999;
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s;
}

.footer-links a:hover { color: #108108; }

.footer-social {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #1e1e1e;
    color: #047c06;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.footer-social a:hover { background: #0e700b; color: #111; }

.footer-bottom {
    background: #181818;
    padding: 0.9rem 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-bottom a {
    color: #666;
    text-decoration: none;
    font-size: 0.78rem;
    transition: color 0.2s;
}

.footer-bottom a:hover { color: #077619; }

/* ========================
   HEADER SOCIAL
======================== */
.header-social {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.header-social a {
    color: #aaa;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.header-social a:hover { color: var(--orange); }

@media (max-width: 480px) { .header-social { display: none; } }

/* ========================
   PAGES: padding-top fix
======================== */
#page-videos,
#page-quienes {
    display: none;
    padding-top: 105px;
}

/* ========================
   EXTRA PAGE HERO
======================== */
.extra-page-hero {
    background: linear-gradient(135deg, var(--dark) 0%, #2a1a08 50%, #1a2009 100%);
    padding: 4rem 2rem 3.5rem;
    text-align: center;
    border-bottom: 3px solid var(--orange);
}

.extra-page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -1.5px;
    margin-bottom: 0.8rem;
}

.extra-page-hero h1 span { color: var(--orange); }

.extra-page-hero p {
    font-family: 'Source Serif 4', serif;
    font-size: 1rem;
    color: #999;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ========================
   TABS BAR
======================== */
.extra-tabs-bar {
    background: #1a1a1a;
    display: flex;
    border-bottom: 3px solid var(--orange);
    overflow-x: auto;
}

.extra-tab-btn {
    background: none;
    border: none;
    color: #888;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.9rem 2rem;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -3px;
    transition: color 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.extra-tab-btn:hover { color: var(--white); }

.extra-tab-btn.active {
    color: var(--orange);
    border-bottom-color: var(--orange);
}

/* ========================
   TAB CONTENT
======================== */
.extra-tab-content { display: none; }
.extra-tab-content.active { display: block; }

.extra-section {
    max-width: 1300px;
    margin: 0 auto;
    padding: 2.5rem 2rem 4rem;
}

/* ========================
   VIDEO: FEATURED + PLACEHOLDERS
======================== */
.vid-featured {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 2rem;
    margin-bottom: 1rem;
    align-items: start;
}

.vid-embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}

.vid-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Placeholder de video (thumbnail + botón play) */
.vid-placeholder {
    position: absolute;
    inset: 0;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vid-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.vid-placeholder:hover .vid-thumb-img { transform: scale(1.04); }

.vid-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.25);
    transition: background 0.2s;
}

.vid-placeholder:hover .vid-play-overlay { background: rgba(0,0,0,0.4); }

.vid-play-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(200,66,26,0.9);
    color: white;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    transition: transform 0.2s, background 0.2s;
}

.vid-play-btn.small {
    width: 44px;
    height: 44px;
    font-size: 1rem;
    padding-left: 3px;
}

.vid-placeholder:hover .vid-play-btn { transform: scale(1.1); background: var(--orange); }

.vid-featured-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding: 0.5rem 0;
}

.vid-badge {
    display: inline-block;
    background: var(--orange);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 2px;
    width: fit-content;
}

.vid-featured-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--dark);
    line-height: 1.2;
}

.vid-featured-info p {
    font-family: 'Source Serif 4', serif;
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.65;
}

.vid-yt-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--dark);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s;
    width: fit-content;
    margin-top: 0.4rem;
}

.vid-yt-btn:hover { background: var(--orange); }

/* ========================
   VIDEO: GRID
======================== */
.vid-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.vid-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
}

.vid-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.vid-thumb-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    overflow: hidden;
}

.vid-thumb-wrap iframe,
.vid-thumb-wrap .vid-placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.vid-card-info {
    padding: 1rem 1rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.vid-card-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
}

.vid-card-info p {
    font-family: 'Source Serif 4', serif;
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.55;
}

/* ========================
   PODCAST
======================== */
.pod-banner {
    background: linear-gradient(135deg, var(--dark) 0%, #2a1a08 100%);
    border-left: 4px solid var(--orange);
    border-radius: 4px;
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.pod-banner h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.pod-banner p {
    font-family: 'Source Serif 4', serif;
    font-size: 0.9rem;
    color: #aaa;
    line-height: 1.65;
    max-width: 500px;
}

.pod-platforms {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    flex-shrink: 0;
}

.pod-plat-btn {
    display: inline-block;
    background: #1e1e1e;
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.55rem 1.4rem;
    border-radius: 50px;
    text-decoration: none;
    border: 1px solid #333;
    transition: background 0.2s, border-color 0.2s;
    white-space: nowrap;
    text-align: center;
}

.pod-plat-btn:hover { background: #2a2a2a; border-color: var(--orange); }
.pod-plat-btn.pod-yt { background: var(--orange); border-color: var(--orange); }
.pod-plat-btn.pod-yt:hover { background: var(--orange2); }

.pod-list { display: flex; flex-direction: column; }

.pod-card {
    display: grid;
    grid-template-columns: 140px 1fr auto;
    gap: 1.2rem;
    align-items: center;
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--border);
    transition: background 0.15s;
}

.pod-card:last-child { border-bottom: none; }

.pod-card:hover {
    background: #fafafa;
    margin: 0 -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.pod-card img {
    width: 140px;
    height: 90px;
    object-fit: cover;
    border-radius: 4px;
}

.pod-info { display: flex; flex-direction: column; gap: 0.3rem; }

.pod-num {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--orange);
}

.pod-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.25;
}

.pod-desc {
    font-family: 'Source Serif 4', serif;
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pod-meta { font-size: 0.75rem; color: #bbb; margin-top: 0.2rem; }

.pod-play {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--orange);
    color: white;
    font-size: 1rem;
    text-decoration: none;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.2s;
}

.pod-play:hover { background: var(--orange2); transform: scale(1.08); }

/* ========================
   QUIÉNES SOMOS
======================== */
.qs-hero-section {
    background: linear-gradient(135deg, var(--dark) 0%, #2a1a08 60%, #1a2009 100%);
    padding: 5rem 2rem 4rem;
    text-align: center;
    border-bottom: 3px solid var(--orange);
    position: relative;
    overflow: hidden;
}

.qs-hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(200,66,26,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.qs-hero-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--orange);
    letter-spacing: -3px;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.qs-hero-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #ccc;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.qs-hero-quote {
    font-family: 'Source Serif 4', serif;
    font-size: 1.05rem;
    color: #888;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.8;
    font-style: italic;
}

.qs-body {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3.5rem 2rem 5rem;
}

.qs-block {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 1.5rem;
    align-items: start;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border);
}

.qs-block:last-of-type { border-bottom: none; }

.qs-block-icon { font-size: 2.5rem; line-height: 1; margin-top: 0.2rem; }

.qs-block-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 0.6rem;
}

.qs-block-text p {
    font-family: 'Source Serif 4', serif;
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
}

.qs-brand-note {
    background: var(--dark);
    border-left: 4px solid var(--gold);
    border-radius: 4px;
    padding: 1.2rem 1.8rem;
    margin: 2.5rem 0;
    font-family: 'Source Serif 4', serif;
    font-size: 0.95rem;
    color: #aaa;
    line-height: 1.7;
}

.qs-brand-note strong { color: var(--gold); }

.qs-team-title { text-align: center; margin: 3rem 0 1.8rem; }

.qs-overline {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.5rem;
}

.qs-team-title h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--dark);
}

.qs-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    margin-bottom: 3.5rem;
}

.qs-team-card {
    text-align: center;
    padding: 1.8rem 1.2rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    transition: box-shadow 0.2s, transform 0.2s;
}

.qs-team-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.09); transform: translateY(-3px); }

.qs-team-card img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--orange);
}

.qs-team-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.qs-role {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.8rem;
}

.qs-team-card p {
    font-family: 'Source Serif 4', serif;
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.6;
}

.qs-cifras {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.qs-cifras > div {
    background: var(--white);
    padding: 2rem 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.qs-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--orange);
    letter-spacing: -1px;
    display: block;
}

.qs-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray);
    display: block;
}

/* ========================
   RESPONSIVE
======================== */
@media (max-width: 900px) {
    .main-layout { grid-template-columns: 1fr; }
    .slide { height: 280px; }
    .slide-title { font-size: 1.4rem; }
    .slide-content { padding: 1.2rem 1.5rem; }
    .news-card.featured { grid-template-columns: 1fr; }
    .news-card.featured .news-img { aspect-ratio: 16/9; height: auto; }
    .related-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
    .footer-main { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 600px) {
    .header-top { padding: 0.4rem 1rem; }
    .logo-img { height: 48px; }
    .nav-inner { flex-wrap: wrap; padding: 0; }
    .menu-toggle { display: flex; padding: 0.6rem 1rem; }
    .nav-links { display: none; flex-direction: column; width: 100%; background: #1a1a1a; }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 0.8rem 1.5rem; border-bottom: 1px solid #2a2a2a; }
    .slide { height: 220px; }
    .slide-title { font-size: 1.1rem; }
    .slide-desc { display: none; }
    .news-grid { grid-template-columns: 1fr; }
    .news-card.featured { grid-template-columns: 1fr; }
    .main-layout { padding: 1.5rem 1rem; }
    .article-title { font-size: 1.7rem; }
    .related-grid { grid-template-columns: 1fr; }
    #page-home, #page-article { padding-top: 95px; }
    #page-videos, #page-quienes { padding-top: 95px; }
}

@media (max-width: 1024px) { .vid-grid { grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 768px) {
    .extra-page-hero h1 { font-size: 2.2rem; }
    .vid-featured { grid-template-columns: 1fr; }
    .vid-grid { grid-template-columns: 1fr 1fr; }
    .pod-banner { flex-direction: column; align-items: flex-start; }
    .pod-card { grid-template-columns: 100px 1fr auto; }
    .pod-card img { width: 100px; height: 65px; }
    .qs-hero-section h1 { font-size: 3rem; }
    .qs-hero-section h2 { font-size: 1.15rem; }
    .qs-team-grid { grid-template-columns: 1fr 1fr; }
    .qs-cifras { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .vid-grid { grid-template-columns: 1fr; }
    .pod-card { grid-template-columns: 1fr; }
    .pod-card img { width: 100%; height: 180px; }
}

@media (max-width: 480px) {
    .qs-hero-section h1 { font-size: 2.2rem; }
    .qs-block { grid-template-columns: 1fr; }
    .qs-team-grid { grid-template-columns: 1fr; }
}