/* 
   LA MÁXIMA GRUPERA - URBAN / WAVE REDESIGN
   Style: Dark, Brutalist, Geometric, High Contrast
   Fonts: Wix Madefor Display (Headings), DM Sans (Body)
   Palette: Orange (#ff8c00), Black (#111), White (#fff)
*/

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Wix+Madefor+Display:wght@400;600;700;800&display=swap');

:root {
    --primary-orange: #ff8c00;
    --primary-black: #050505;
    /* Deep rich black */
    --secondary-black: #121212;
    /* Card background */
    --tertiary-black: #1e1e1e;
    /* Borders/Separators */

    --text-white: #ffffff;
    --text-grey: #b3b3b3;

    --font-display: 'Wix Madefor Display', sans-serif;
    --font-body: 'DM Sans', sans-serif;

    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius-md: 16px;

    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* RESET & BASE */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--primary-black);
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 800;
    /* Extra Bold */
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--text-white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* TEXT CLAMP (used across views) */
.clamp-2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.clamp-3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

/* UTILITIES */
.text-orange {
    color: var(--primary-orange) !important;
}

.bg-orange {
    background-color: var(--primary-orange) !important;
}

.bg-black {
    background-color: var(--primary-black) !important;
}

.bg-dark {
    background-color: var(--secondary-black) !important;
}

.fw-black {
    font-weight: 800;
}

.fw-bold {
    font-weight: 700;
}

.font-display {
    font-family: var(--font-display);
}

.object-fit-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* LAYOUT HELPERS */
.section-padding {
    padding: 4rem 0;
}

@media(min-width: 992px) {
    .section-padding {
        padding: 6rem 0;
    }
}

/* BUTTONS - Geometric & Solid */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
    /* Minimal radius */
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-orange);
    color: var(--primary-black);
    /* Contrast Black on Orange */
}

.btn-primary:hover {
    background: #f9aa5d;
    color: var(--primary-black);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--text-white);
}

.btn-outline:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

.btn-icon {
    width: 45px;
    height: 45px;
    padding: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* HEADER - Urban App Bar */
.top-bar {
    background: var(--primary-orange);
    color: var(--primary-black);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    padding: 0.25rem 0;
    text-align: center;
    letter-spacing: 1px;
}

.navbar {
    background-color: rgba(5, 5, 5, 0.95);
    /* Deep Black semi-transparent */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    /* Subtle border */
    padding: 1.5rem 0;
}

.navbar-brand img,
.logo-desktop {
    height: 120px;
    width: auto;
    transition: transform 0.3s ease;
    display: block;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

@media (max-width: 991px) {

    .navbar-brand img,
    .logo-desktop {
        height: 60px;
        /* Smaller on mobile */
    }
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--text-grey) !important;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    padding: 0.5rem 1rem !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-orange) !important;
}

/* SITE HEADER (new responsive offcanvas menu) */
.site-header .navbar {
    padding: 0.75rem 0;
}

.site-header .site-logo {
    height: 72px;
    width: auto;
    display: block;
}

.site-header .site-logo--sm {
    height: 44px;
}

@media (max-width: 991px) {
    .site-header .site-logo {
        height: 56px;
    }

    .site-header .site-nav-toggle i {
        line-height: 1;
    }
}

.site-offcanvas {
    background: rgba(5, 5, 5, 0.98) !important;
    backdrop-filter: blur(14px);
}

@media (max-width: 991px) {
    .site-offcanvas {
        --bs-offcanvas-width: 100vw;
    }
}

.site-mobile-links {
    font-family: var(--font-display);
}

.site-mobile-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 0;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-mobile-link:hover,
.site-mobile-link.active {
    color: var(--primary-orange) !important;
}

.site-social-row .btn-icon {
    width: 44px;
    height: 44px;
}

.site-offcanvas .accordion-button:focus {
    box-shadow: none;
}

.site-offcanvas .accordion-button:not(.collapsed) {
    color: var(--primary-orange);
}

.site-offcanvas .accordion-button::after {
    filter: invert(1);
    opacity: 0.85;
}

/* HERO - Magazine Style */
.hero-section {
    position: relative;
    padding: 6rem 0;
    background-color: var(--primary-black);
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    line-height: 0.9;
    letter-spacing: -2px;
}

@media(max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

.hero-highlight {
    color: var(--primary-orange);
    position: relative;
    display: inline-block;
}

/* CARDS - Brutalist/Urban */
.urban-card {
    background-color: var(--secondary-black);
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.urban-card:hover {
    transform: translateY(-5px);
    /* border-color removed as requested */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.urban-card img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backface-visibility: hidden;
}

.urban-card:hover img {
    transform: scale(1.03);
}

.card-img-wrapper {
    position: relative;
    overflow: hidden;
    /* Aspect ratio managed by wrapper or image class */
}

/* STATIONS - Chart Style List */
.station-list-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: var(--secondary-black);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    border-radius: var(--radius-sm);
    margin-bottom: 0.5rem;
    position: relative;
    overflow: hidden;
}

.station-list-item::before {
    content: '';
    position: absolute;
    top: 15%;
    /* Not full height, just a stick in middle */
    left: 0;
    width: 4px;
    height: 70%;
    background: var(--primary-orange);
    transform: scaleY(0);
    transition: transform 0.2s ease-out;
    border-radius: 0;
    /* Sharp corners */
}

.station-list-item:hover {
    background: #1a1a1a;
    transform: translateX(5px);
    /* Subtle move right */
}

.station-list-item:hover::before {
    transform: scaleY(1);
}

.station-rank {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-orange);
    width: 40px;
    flex-shrink: 0;
}

.station-thumb {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-xs);
    object-fit: cover;
    margin-right: 1rem;
    background: #000;
}

.station-info h5 {
    margin: 0;
    font-size: 1rem;
}

.station-info span {
    font-size: 0.8rem;
    color: var(--text-grey);
    text-transform: uppercase;
}

/* FEATURED - Bento Box / Masonry */
.featured-grid {
    display: grid;
    gap: 1.5rem;
}

.bento-card {
    background-color: var(--secondary-black);
    border-radius: var(--radius-md);
    padding: 2rem;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.bento-card.highlight {
    background-color: var(--primary-orange);
    color: var(--primary-black);
}

.bento-card.highlight h3,
.bento-card.highlight p {
    color: var(--primary-black);
}

/* FOOTER - Big Type */
footer {
    background-color: var(--primary-black);
    /* Same as body for seamless feel */
    padding-top: 6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-cta {
    background: radial-gradient(circle at 20% 40%, rgba(255, 140, 0, 0.16) 0%, rgba(0, 0, 0, 0) 55%),
        linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(5, 5, 5, 1) 55%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 4.5rem 0 2.5rem;
}

@media (max-width: 768px) {
    .footer-cta {
        padding: 3.25rem 0 2rem;
    }
}

.footer-cta-title {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 0.95;
    color: var(--primary-orange);
    font-size: clamp(3rem, 6vw, 5.25rem);
}

.footer-cta-title:hover {
    color: #ffffff;
}

.site-footer {
    padding-top: 0;
    border-top: 0;
}

.footer-logo-link {
    display: inline-flex;
    align-items: center;
}

.footer-logo {
    height: 84px;
    width: auto;
    display: block;
}

@media (max-width: 768px) {
    .footer-logo {
        height: 64px;
    }
}

.footer-brand {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 7vw, 5.25rem);
    font-weight: 800;
    line-height: 0.9;
    color: var(--primary-orange);
    opacity: 0.9;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.footer-nav a {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.footer-nav a:hover {
    color: var(--primary-orange);
    transform: translateX(2px);
}

.footer-legal-link {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
}

.footer-contact {
    font-size: 0.95rem;
}

/* PAGINATION (numbers) */
.site-pagination .pagination {
    margin-bottom: 0;
}

.site-pagination .page-link {
    border-radius: 9999px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.55rem 0.9rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition);
}

.site-pagination .page-link:hover {
    border-color: rgba(255, 140, 0, 0.55);
    color: var(--primary-orange);
    transform: translateY(-1px);
}

.site-pagination .page-item.active .page-link {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    color: #000;
}

.site-pagination .page-item.disabled .page-link {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

/* CONTACTO */
.contact-social-bg-icon {
    pointer-events: none;
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(4rem, 10vw, 7rem);
    line-height: 1;
}

/* NEWS SHARE */
.news-share .btn {
    white-space: nowrap;
    width: auto;
}

@media (max-width: 575px) {
    .news-share .btn {
        width: 100%;
        justify-content: center;
    }
}

/* EVENTS (flyers) */
.event-thumb {
    width: 240px;
    background: rgba(0, 0, 0, 0.6);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
}

.event-thumb-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center;
    background: #000;
    border-radius: 0.5rem;
}

.event-flyer-card {
    position: relative;
}

.event-flyer-stage {
    position: relative;
    background: radial-gradient(circle at 25% 20%, rgba(255, 140, 0, 0.16) 0%, rgba(0, 0, 0, 0) 55%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 1) 100%);
    padding: 1rem;
}

.event-flyer-img {
    width: 100%;
    max-height: 520px;
    object-fit: contain;
    border-radius: 0.75rem;
    background: rgba(0, 0, 0, 0.55);
    display: block;
}

@media (max-width: 767px) {
    .event-thumb {
        width: 100%;
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .event-thumb-img {
        height: 320px;
    }

    .event-flyer-img {
        max-height: 420px;
    }
}


.hover-orange:hover {
    color: var(--primary-orange) !important;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.animate-pulse {
    animation: pulse 2s infinite;
}

.group-hover-scale:hover {
    transform: scale(1.05);
}

.group:hover .group-hover-scale {
    transform: scale(1.05);
}

/* LOAD MORE PAGINATION */
.btn-load-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50rem;
    padding: 0.8rem 3rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    font-family: var(--font-heading);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.btn-load-more:hover {
    background-color: #fff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 255, 255, 0.2);
}

/* DROPDOWN HOVER */
@media (min-width: 992px) {
    .dropdown-hover:hover .dropdown-menu {
        display: block;
        margin-top: 0;
        animation: fadeIn 0.2s ease-in-out;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hover-text-orange:hover {
    color: var(--primary-orange) !important;
    background-color: transparent !important;
    padding-left: 1.5rem;
    transition: all 0.2s ease;
}

.dropdown-item {
    transition: all 0.2s ease;
}

/* COMPACT PLAZA CARDS */
.urban-card-compact {
    display: block;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.urban-card-compact img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backface-visibility: hidden;
}

.urban-card-compact:hover img {
    transform: scale(1.1);
}

.urban-card-compact .overlay-gradient {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.5) 60%, transparent);
    z-index: 2;
}

.urban-card-compact .badge {
    letter-spacing: 0.5px;
}

/* PLAZAS CARDS */
.plaza-card {
    cursor: default;
}

.plaza-stretched-link {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.plaza-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.plaza-actions,
.plaza-actions a {
    pointer-events: auto;
}

.plaza-placeholder {
    background: radial-gradient(circle at 30% 30%, rgba(255, 140, 0, 0.16) 0%, rgba(0, 0, 0, 0) 55%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.plaza-placeholder-icon {
    width: 56px;
    height: 56px;
    border-radius: 9999px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.35);
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.35rem;
}

.plaza-initials {
    font-family: var(--font-display);
    font-weight: 900;
    letter-spacing: 2px;
    opacity: 0.65;
}

.plaza-name {
    font-size: 1.05rem;
}

.plaza-meta-badge {
    font-size: 0.72rem;
}

.plaza-actions .plaza-btn {
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 800;
}

.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* MOBILE OVERFLOW FIX */
html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
    -webkit-overflow-scrolling: touch;
}

/* =========================================
   PAGE SPECIFIC STYLES
   ========================================= */

/* CHANNEL PLAYER (from channels/show.php) */
.urban-player-wrapper {
    background-color: #000;
}

.plyr--video {
    border-radius: var(--radius-md);
}

.plyr--audio {
    border-radius: var(--radius-md);
    background: #111;
}

.plyr__control--overlaid {
    background: var(--primary-orange) !important;
    /* Force override */
}

.plyr--full-ui input[type=range] {
    color: var(--primary-orange) !important;
}

/* Radio Visualizer */
.equalizer-container {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.bar {
    width: 6px;
    background: var(--primary-orange);
    border-radius: 4px;
    height: 30%;
    animation: none;
}

.bar:nth-child(2) {
    height: 40%;
}

.bar:nth-child(3) {
    height: 70%;
}

.bar:nth-child(4) {
    height: 100%;
}

.bar:nth-child(5) {
    height: 60%;
}

.bar:nth-child(6) {
    height: 40%;
}

.equalizer-container.is-playing .bar {
    animation: bounce 1s infinite ease-in-out;
}

.equalizer-container.is-playing .bar:nth-child(2) {
    animation-duration: 0.8s;
}

.equalizer-container.is-playing .bar:nth-child(3) {
    animation-duration: 1.1s;
}

.equalizer-container.is-playing .bar:nth-child(4) {
    animation-duration: 0.9s;
}

.equalizer-container.is-playing .bar:nth-child(5) {
    animation-duration: 1.2s;
}

.equalizer-container.is-playing .bar:nth-child(6) {
    animation-duration: 0.7s;
}

@keyframes bounce {

    0%,
    100% {
        height: 20%;
        opacity: 0.5;
    }

    50% {
        height: 100%;
        opacity: 1;
        box-shadow: 0 0 10px var(--primary-orange);
    }
}

/* PODCAST GRID (from podcast/index.php) */
.hover-overlay {
    opacity: 1;
    /* Always visible per user request */
    transition: opacity 0.3s ease;
}

.urban-card:hover .hover-overlay {
    opacity: 1;
}

.play-btn {
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.play-btn:hover {
    transform: scale(1.1);
}

.play-btn.playing {
    background-color: #fff !important;
}

.play-btn.playing i {
    color: #000 !important;
}

/* UTILITY HELPERS */
.hover-orange-border:hover {
    border-color: var(--primary-orange) !important;
}


/* VIDEOS GRID (from videos/index.php) */
.scale-hover {
    transition: transform 0.2s ease;
}

.urban-card:hover .scale-hover {
    transform: scale(1.1);
}

/* HOME VIDEOS (featured + list) */
.home-video-feature {
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.home-video-feature-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.0) 40%, rgba(0, 0, 0, 0.85) 100%);
}

.home-video-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-video-feature-meta {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}

.home-video-feature-title {
    font-size: clamp(1.1rem, 1.2vw + 1rem, 2rem);
}

.home-video-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.home-video-item {
    display: flex;
    gap: 0.9rem;
    align-items: center;
    padding: 0.75rem;
    background: var(--secondary-black);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.home-video-item:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 140, 0, 0.45);
}

.home-video-thumb {
    width: 132px;
    height: 74px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    background: #000;
}

.home-video-thumb-play {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0.9;
}

.home-video-item-title {
    font-family: var(--font-display);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.2;
}

@media (max-width: 991px) {
    .home-video-list {
        flex-direction: row;
        overflow: auto;
        padding-bottom: 0.25rem;
        scroll-snap-type: x mandatory;
    }

    .home-video-item {
        min-width: 320px;
        scroll-snap-align: start;
    }
}

/* NEWS (blog list + sidebar) */
.news-list-item {
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* RADIO PLAYER (channels/show) */
.radio-player .plyr--audio .plyr__controls {
    background: rgba(0, 0, 0, 0.35);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.radio-now-playing {
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
}

#radioListenersBadge {
    background: rgba(0, 0, 0, 0.35) !important;
}

@media (max-width: 575px) {
    .radio-player .btn {
        width: 100%;
        justify-content: center;
    }

    .radio-actions {
        width: 100%;
    }
}

.news-list-link {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 0;
    color: inherit;
}

.news-list-thumb {
    width: 100%;
    min-height: 200px;
    background: #000;
}

.news-list-body {
    padding: 1.25rem 1.25rem 1.1rem;
    display: flex;
    flex-direction: column;
}

.news-sidebar .news-filter-list {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    max-height: 420px;
    overflow: auto;
    padding-right: 0.25rem;
}

.news-filter-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0.75rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.88);
    font-weight: 700;
    transition: var(--transition);
}

.news-filter-link:hover {
    border-color: rgba(255, 140, 0, 0.55);
    color: var(--primary-orange);
    transform: translateX(2px);
}

.news-filter-link.active {
    background: rgba(255, 140, 0, 0.16);
    border-color: rgba(255, 140, 0, 0.55);
    color: #fff;
}

@media (max-width: 991px) {
    .news-list-link {
        grid-template-columns: 1fr;
    }

    .news-list-thumb {
        min-height: 220px;
    }
}

/* PROGRAMMING SCHEDULE (from programacion/index.php) */
.nav-pills .nav-link {
    background-color: #000;
}

.nav-pills .nav-link:hover {
    border-color: var(--primary-orange) !important;
    color: var(--primary-orange) !important;
}

.nav-pills .nav-link.active {
    background-color: var(--primary-orange);
    color: #000 !important;
    border-color: var(--primary-orange) !important;
}

.program-time-box {
    min-width: 100px;
}

.program-img {
    width: 80px;
    height: 80px;
}

/* FOOTER APP DOWNLOAD BUTTONS */
.footer-app-btn {
    background: rgba(255, 255, 255, 0.03);
}

.footer-app-btn:hover {
    transform: translateY(-3px);
    border-color: var(--primary-orange) !important;
    background: rgba(255, 140, 0, 0.08);
    box-shadow: 0 8px 24px rgba(255, 140, 0, 0.25);
}

.footer-app-btn:active {
    transform: translateY(-1px);
}
