/* ==========================================
   VARIABLES Y RESET
   ========================================== */
:root {
    --bg-card: #ffffff;
    --nt-blue: #092c81; /* Azul corporativo */
    --nt-red: #e60000;  /* Rojo alertas/destacadas */
    --nt-dark: #111111;
    --bg-light: #f4f5f7;
    --text-main: #333333;
    --text-muted: #777777;
    --border-color: #eaeaea;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6; /* Mejor legibilidad */
    transition: background-color 0.3s, color 0.3s;
    overflow-x: hidden; /* Evitar scroll horizontal global */
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ==========================================
   TOP BAR (Ticker)
   ========================================== */
.top-bar {
    background-color: var(--nt-blue);
    color: white;
    font-size: 0.75rem;
    padding: 4px 0;
    overflow: hidden;
    white-space: nowrap;
}

.top-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.top-ticker {
    animation: ticker 30s linear infinite;
}

@keyframes ticker {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* ==========================================
   HEADER
   ========================================== */
.main-header {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 15px 20px;
    gap: 20px;
}

.logo-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.main-nav {
    flex: 1;
    background-color: var(--nt-blue);
    border-radius: 4px;
}

.nav-links {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 10px 0;
}

.nav-links a {
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    transition: color 0.3s, border-bottom 0.3s;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--nt-red);
}

.nav-links a.active {
    border-bottom: 2px solid var(--nt-red);
}

.nav-separator {
    color: rgba(255,255,255,0.3);
}

.header-actions button {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--nt-blue);
    margin-left: 15px;
    cursor: pointer;
}

/* ==========================================
   SUB HEADER
   ========================================== */
.sub-header {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
}

.sub-header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.live-indicator {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--nt-blue);
    display: flex;
    align-items: center;
}

.red-dot {
    width: 10px;
    height: 10px;
    background-color: var(--nt-red);
    border-radius: 50%;
    margin-right: 8px;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

.btn-radio {
    display: flex;
    align-items: center;
    background-color: var(--nt-blue);
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
}

/* ==========================================
   MAIN CONTENT
   ========================================== */
.main-content {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

.small-title, .sidebar-title {
    color: var(--nt-blue);
    font-size: 1rem;
    font-weight: 900;
    margin-bottom: 15px;
    border-left: 3px solid var(--nt-red);
    padding-left: 10px;
}

.view-all {
    font-size: 0.8rem;
    color: var(--nt-blue);
    font-weight: 700;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 20px;
    padding-bottom: 5px;
}

/* 1. BANNERS PROGRAMAS */
.programs-banner-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.program-banner {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
    font-size: 1.2rem;
    border-radius: 4px;
}

.blue-banner { background-color: #e6f0ff; color: var(--nt-blue); border: 1px solid #b3d1ff; }
.black-banner { background-color: var(--nt-dark); color: white; }
.navy-banner { background-color: var(--nt-blue); color: white; }

/* 2. HERO SECTION (Destacada + Más Leídas) */
.hero-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.featured-card {
    position: relative;
    height: 100%;
    min-height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.featured-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    padding: 30px;
    color: white;
}

.category-badge, .category-badge-small {
    background-color: var(--nt-red);
    color: white;
    padding: 4px 10px;
    font-size: 0.8rem;
    font-weight: 900;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.featured-overlay h2 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 15px;
    line-height: 1.2;
}

.featured-meta {
    font-size: 0.9rem;
    color: #ccc;
}

.placeholder-card {
    background-color: #ccc;
}

.most-read-list li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.read-number {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--nt-blue);
    width: 30px;
    line-height: 1;
}

.most-read-list img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    margin: 0 10px;
}

.read-info h4 {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 5px;
}

.read-cat {
    font-size: 0.75rem;
    color: var(--nt-blue);
    font-weight: 700;
}

.btn-block-blue {
    display: block;
    background-color: var(--nt-blue);
    color: white;
    text-align: center;
    padding: 10px;
    font-weight: 900;
    border-radius: 4px;
    margin-top: 20px;
}

/* 3. LATEST NEWS */
.news-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.news-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 10px;
}

.category-badge-small {
    background-color: var(--nt-blue);
    padding: 3px 8px;
    font-size: 0.7rem;
}

.news-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin: 10px 0;
    line-height: 1.3;
}

.news-time {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* 4. AD BANNER */
.ad-banner-horizontal {
    background-color: var(--nt-blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin-bottom: 40px;
    border-radius: 4px;
}

.ad-banner-horizontal .ad-text-right {
    font-size: 0.8rem;
    font-weight: 900;
    text-align: right;
    line-height: 1.2;
}

/* 5. BOTTOM 3 COLS */
.bottom-three-cols {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr;
    gap: 30px;
}

.video-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 15px;
}

.video-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.grid-70-30 {
    display: grid;
    grid-template-columns: 2fr 1fr; /* approx 66% and 33% */
    gap: 30px;
    align-items: start;
}

.play-icon {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,255,255,0.8);
    width: 50px; height: 50px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    color: var(--nt-blue);
}

.informe-title {
    font-size: 1.2rem;
    font-weight: 900;
    line-height: 1.3;
}

.nota-dia-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nota-main img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
}

.nota-list-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    background: var(--bg-card);
    border-radius: 8px;
    padding: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nota-list-item img {
    width: 100px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
}

.nota-list-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.nota-list-content .cat-tag {
    color: red;
    font-size: 0.65rem;
    font-weight: 900;
    margin-bottom: 3px;
    text-transform: uppercase;
}

.nota-list-content h5 {
    font-size: 0.85rem;
    font-weight: 900;
    margin: 0 0 5px 0;
    line-height: 1.2;
    color: var(--nt-dark);
}

.nota-list-content .meta {
    font-size: 0.7rem;
    color: #888;
    display: flex;
    gap: 10px;
    align-items: center;
}

.destacada-card {
    position: relative;
    width: 100%;
    flex: 1; /* Stretch to fill column height */
    min-height: 350px; /* Keep a minimum height just in case */
    border-radius: 12px;
    overflow: hidden;
    display: block; /* If made an anchor */
    cursor: pointer;
}

.destacada-card img.bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0; left: 0;
    transition: transform 0.4s ease; /* Hover transition */
}

/* Hover effects for the image */
.destacada-card:hover img.bg-img {
    transform: scale(1.05);
}

/* Hover effects for the text */
.destacada-card:hover .destacada-overlay h3 {
    text-decoration: underline;
}

.destacada-overlay {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    padding: 100px 30px 30px 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
}

.destacada-overlay h3 {
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 10px;
    line-height: 1.2;
}
.destacada-overlay p {
    font-size: 0.9rem;
    color: #eee;
}

.badge-red {
    position: absolute;
    top: 20px; left: 20px;
    background: red; color: white;
    padding: 5px 12px; border-radius: 4px;
    font-size: 0.8rem; font-weight: 900;
}
.badge-black {
    position: absolute;
    top: 20px; right: 20px;
    background: rgba(0,0,0,0.7); color: white;
    padding: 5px 12px; border-radius: 20px;
    font-size: 0.8rem; font-weight: 600;
}
.carousel-dots {
    position: absolute;
    bottom: 15px; left: 0; width: 100%;
    display: flex; justify-content: center; gap: 8px;
}
.carousel-dots span {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,0.5);
}
.carousel-dots span.active { background: red; }

.streaming-list li {
    display: flex;
    align-items: center;
    background: var(--bg-card);
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 10px;
    border: 1px solid var(--border-color);
}

.prog-logo {
    width: 60px; height: 60px;
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.6rem; font-weight: 900; color: white;
    text-align: center;
    margin-right: 15px;
}

.blue-bg { background-color: var(--nt-blue); }
.dark-bg { background-color: #051a54; }
.black-bg { background-color: var(--nt-dark); }

.prog-info strong {
    font-size: 0.9rem;
}
.prog-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.prog-play {
    margin-left: auto;
    font-size: 1.5rem;
    color: var(--nt-blue);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: bold;
    width: 100%;
    transition: background 0.2s ease;
    text-decoration: none;
}
.btn-whatsapp:hover {
    background-color: #1da851;
    color: white;
}

.btn-subscribe {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #CC0000;
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: bold;
    width: 100%;
    transition: background 0.2s ease;
    text-decoration: none;
}
.btn-subscribe:hover {
    background-color: #aa0000;
    color: white;
}

/* WIDGET BOXES PREMIUM STYLING */
.widget-box {
    transition: all 0.3s ease;
    border-radius: 12px;
}
.widget-box:hover {
    transform: translateY(-2px);
}

.yt-widget {
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-light) 100%);
    border: 1px solid rgba(255, 0, 0, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.yt-widget:hover {
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.1);
}
.yt-widget i.fa-youtube {
    filter: drop-shadow(0 4px 6px rgba(255, 0, 0, 0.2));
    transition: transform 0.3s ease;
}
.yt-widget:hover i.fa-youtube {
    transform: scale(1.1);
}

.whatsapp-widget {
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-light) 100%);
    border: 1px solid rgba(37, 211, 102, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.whatsapp-widget:hover {
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.1);
}

/* ==========================================
   FOOTER
   ========================================== */
.main-footer {
    background-color: var(--nt-blue);
    color: white;
    padding: 50px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.footer-logos {
    display: flex;
    gap: 15px;
    align-items: center;
    width: auto;
    max-width: 450px;
}

.footer-logo-box {
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-brand-name {
    font-size: 0.8rem;
    font-weight: 900;
}

.footer-links-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.footer-links-grid > div {
    padding: 0 20px;
}

.footer-links-grid > div:first-child {
    padding-left: 0;
}

.footer-links-grid > div:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-links-grid h4 {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.footer-links-grid ul li {
    margin-bottom: 10px;
}

.footer-links-grid ul li a {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    transition: color 0.3s;
}

.footer-links-grid ul li a:hover {
    color: white;
}

/* DROPDOWN PROGRAMAS STREAMING */
.program-dropdown {
    width: 100%;
    padding: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--nt-blue);
    border: 2px solid var(--nt-blue);
    border-radius: 6px;
    background-color: #fff;
    cursor: pointer;
    outline: none;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* HEADER MENU DROPDOWN */
.nav-item-dropdown {
    position: relative;
}
.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--nt-blue);
    min-width: 200px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    z-index: 1000;
    list-style: none;
    padding: 8px 0;
    margin: 0;
    border-radius: 6px;
    border-top: 3px solid var(--nt-red);
}
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    height: 15px;
    background: transparent;
}
.nav-dropdown-menu li {
    display: block;
    margin: 0;
    border: none;
}
.nav-dropdown-menu li a {
    color: white !important;
    padding: 12px 20px !important;
    display: block;
    text-align: left;
    font-size: 0.95rem;
    transition: background-color 0.2s, padding-left 0.2s;
}
.nav-dropdown-menu li a:hover {
    background-color: rgba(255,255,255,0.15);
    padding-left: 25px !important;
}
.nav-item-dropdown:hover .nav-dropdown-menu {
    display: block;
}

/* RESPONSIVE BÁSICO */
@media (max-width: 1024px) {
    .news-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .programs-banner-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .bottom-three-cols {
        grid-template-columns: 1fr 1fr;
    }
    .grid-70-30 {
        grid-template-columns: 1fr;
    }
    .bottom-widgets-grid {
        grid-template-columns: 1fr 1fr;
    }
    .bottom-widgets-grid > div:first-child {
        grid-column: span 2;
    }
}

/* RADIO EMBED WIDGETS GRID */
.bottom-widgets-grid {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr;
}

/* RADIO EMBED */
.radio-embed-container {
    height: 272px;
}
.radio-embed-container iframe {
    min-height: 272px;
}

@media (max-width: 768px) {
    .hero-section, .news-grid-4, .bottom-three-cols, .programs-banner-row, .grid-70-30, .bottom-widgets-grid, .category-grid {
        grid-template-columns: 1fr !important;
    }
    .news-card, .nota-list-item, .destacada-card {
        width: 100% !important;
        max-width: 500px !important;
        margin: 0 auto !important;
    }
    .main-featured {
        width: 100% !important;
        min-height: 400px;
    }
    .bottom-widgets-grid > div:first-child {
        grid-column: span 1;
    }
    .main-nav { display: none; }
    
    /* FIX THE HEADER OVERFLOW */
    .header-container { 
        display: flex !important;
        justify-content: space-between !important; 
        align-items: center !important;
        padding: 10px 10px !important; 
    }
    .header-main-logo { max-height: 35px !important; }
    .header-actions { 
        flex: 1 !important; 
        display: flex !important; 
        justify-content: space-between !important; 
        align-items: center !important; 
        margin-left: 10px !important;
        gap: 10px !important;
    }
    .header-search-form { 
        margin: 0 auto !important; 
        width: 100% !important;
        max-width: 180px !important;
        background: #f0f2f5 !important;
        padding: 2px 10px !important;
        border-radius: 25px !important;
        border: none !important;
        box-shadow: none !important;
        display: flex !important;
        align-items: center !important;
    }
    .header-search-input { 
        display: block !important; 
        width: 100% !important; 
        background: transparent !important;
        border: none !important;
        font-size: 0.9rem !important;
    }
    .header-search-form button { 
        font-size: 1rem !important; 
        color: var(--text-muted) !important; 
        padding: 0 !important; 
    }
    .top-ticker { font-size: 0.75rem; white-space: normal; text-align: center; line-height: 1.2; }
    .mobile-menu-btn { margin-left: 0 !important; }
    
    .radio-embed-container { height: 540px !important; }
    .radio-embed-container iframe { min-height: 540px !important; }
    
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-logos {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        margin-bottom: 30px;
    }
    .footer-logos > div:last-child {
        flex-basis: 100%;
        margin-top: 15px;
    }
    .footer-links-grid { 
        grid-template-columns: 1fr; 
        gap: 30px;
    }
    .footer-links-grid > div {
        padding: 0;
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        padding-bottom: 15px;
    }
    .footer-links-grid > div:last-child {
        border-bottom: none;
    }
    .ad-banner-horizontal { flex-direction: column; text-align: center; }
    .ad-banner-horizontal .ad-logo { margin: 20px 0; }
    .ad-banner-horizontal .ad-text-right { text-align: center; }
    
    .sub-header-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }
    .weather-date {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .radio-button, .btn-radio {
        width: 100%;
        justify-content: center;
    }
    .bottom-radio-whatsapp {
        grid-template-columns: 1fr !important;
    }
    .featured-overlay h2 {
        font-size: 1.5rem;
    }
    .destacada-overlay h3 {
        font-size: 1.2rem;
    }
}
@media (min-width: 993px) { .menu-btn { display: none !important; } }

/* ==========================================
   TINYMCE CONTENT STYLES (.noticia-contenido)
   ========================================== */
.noticia-contenido img {
    max-width: 100%;
    height: auto;
    /* allow images to stay side-by-side if they fit */
    display: inline-block;
}

/* Soporte para clases de alineación típicas de TinyMCE */
.noticia-contenido img.alignleft, 
.noticia-contenido .alignleft {
    float: left;
    margin: 10px 20px 10px 0;
}

.noticia-contenido img.alignright, 
.noticia-contenido .alignright {
    float: right;
    margin: 10px 0 10px 20px;
}

.noticia-contenido img.aligncenter, 
.noticia-contenido .aligncenter {
    display: block;
    margin: 10px auto;
}

.noticia-contenido figure.image {
    display: inline-block;
    margin: 0 10px 10px 0;
}

.noticia-contenido figure.image.aligncenter {
    display: block;
    margin: 10px auto;
    text-align: center;
}

.noticia-contenido p {
    margin-bottom: 1.5em;
}

/* Permitir que imágenes insertadas juntas en TinyMCE se mantengan en una sola línea escalándose */
.noticia-contenido *:has(> img + img) {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    /* Evitar que el contenedor flex exceda el ancho */
    max-width: 100%;
}

.noticia-contenido *:has(> img + img) > img {
    flex: 1 1 0;
    min-width: 0;
    height: auto;
    object-fit: contain;
}

.noticia-contenido::after {
    content: "";
    display: table;
    clear: both;
}

/* Dropdown Header Secciones */
.nav-dropdown-secciones { width: 350px !important; display: grid !important; grid-template-columns: 1fr 1fr; gap: 5px; padding: 15px !important; }
.nav-dropdown-secciones li { padding: 0 !important; border: none !important; }
.nav-dropdown-secciones a { padding: 8px 12px !important; font-size: 0.85rem !important; border-radius: 4px; background: transparent; text-align: left; color: #333 !important; }
.nav-dropdown-secciones a:hover { background: var(--nt-blue); color: white !important; }
/* Category Pills Carousel (Index) */
.categories-carousel-container::-webkit-scrollbar { height: 6px; }
.categories-carousel-container::-webkit-scrollbar-thumb { background: #ccc; border-radius: 3px; }
.category-pill-link { white-space: nowrap; padding: 8px 18px; background: white; color: var(--nt-blue); border: 1px solid #e0e0e0; border-radius: 20px; font-weight: 600; font-size: 0.9rem; text-decoration: none; box-shadow: 0 2px 4px rgba(0,0,0,0.05); transition: all 0.3s ease; display: inline-block; }
.category-pill-link:hover { background: var(--nt-blue); color: white; border-color: var(--nt-blue); transform: translateY(-2px); box-shadow: 0 4px 8px rgba(0,0,0,0.1); }
/* Footer Category Pills */
.footer-category-pill { padding: 6px 12px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: #e0e0e0; border-radius: 20px; font-size: 0.85rem; text-decoration: none; transition: background 0.3s, color 0.3s; display: inline-block; }
.footer-category-pill:hover { background: var(--nt-red); color: white; border-color: var(--nt-red); }

/* RPP Sidebar Overrides */
@media (min-width: 993px) { .menu-btn { display: block !important; } }
.rpp-sidebar-container { padding: 0 10px; overflow-y: auto; height: calc(100vh - 80px); }
.rpp-sidebar-link { display: flex; justify-content: space-between; align-items: center; background: #ffffff; border: 1px solid #e0e0e0; border-radius: 8px; padding: 15px 20px; margin-bottom: 10px; color: #000000 !important; font-weight: 700; font-size: 1.1rem; text-decoration: none; transition: all 0.2s ease; }
.rpp-sidebar-link:hover { transform: translateX(5px); box-shadow: 0 4px 10px rgba(0,0,0,0.08); border-color: #d0d0d0; }
