/*
Theme Name: NothingLess Radio
Theme URI: https://nothinglessradio.net
Description: Custom child theme for NothingLess Radio — Urban Indie Music Station
Author: DJNONLESS Project
Author URI: https://nothinglessradio.net
Template: astra
Version: 2.5.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nothingless-radio
*/

/* ==========================================================================
    TABLE OF CONTENTS
    1. Design Tokens
    2. Reset & Base
    3. Typography
    4. Layout Utilities
    5. Header
    6. Navigation (Desktop)
    7. Mobile Drawer
    8. Hamburger
    9. Listen Live Button
    10. Page Banner
    11. Footer
    12. Astra Overrides
    13. Animations & Utilities
    14. Responsive
    ========================================================================== */

/* ==========================================================================
   1. DESIGN TOKENS
   ========================================================================== */
:root {
    /* Brand Colors */
    --nl-black:        #08080a;
    --nl-dark:         #111114;
    --nl-dark-card:    #18181c;
    --nl-dark-border:  #28282f;
    --nl-red:          #e63946;
    --nl-red-hover:    #ff4655;
    --nl-red-glow:     rgba(230, 57, 70, 0.35);
    --nl-red-subtle:   rgba(230, 57, 70, 0.08);
    --nl-white:        #ffffff;
    --nl-grey-light:   #c8c8d0;
    --nl-grey-mid:     #888896;
    --nl-grey-dark:    #44444e;

    /* Typography */
    --nl-font-primary: 'Montserrat', 'Barlow Condensed', sans-serif;
    --nl-font-display: 'Barlow Condensed', 'Montserrat', sans-serif;

    /* Sizing */
    --nl-header-h:     72px;
    --nl-radius:       6px;
    --nl-radius-pill:  100px;
    --nl-max-w:        1200px;
    --nl-gutter:       clamp(1rem, 4vw, 2rem);

    /* Transitions */
    --nl-ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --nl-dur:          0.25s;
    --nl-header-ease:  cubic-bezier(0.22, 1, 0.36, 1);
    --nl-header-dur:   0.45s;
    --nl-header-strip: linear-gradient(180deg, rgba(6, 8, 12, 0.62) 0%, rgba(6, 8, 12, 0.4) 58%, rgba(6, 8, 12, 0.22) 100%);
}

/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: var(--nl-black) !important;
    color: var(--nl-white) !important;
    font-family: var(--nl-font-primary) !important;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Offset fixed header for anchor jumps */
html { scroll-padding-top: calc(var(--nl-header-h) + 1rem); }

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

a {
    color: var(--nl-red);
    text-decoration: none;
    transition: color var(--nl-dur) var(--nl-ease);
}
a:hover { color: var(--nl-red-hover); }

ul { list-style: none; }

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--nl-font-primary) !important;
    color: var(--nl-white) !important;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

p { color: var(--nl-grey-light); }

/* ==========================================================================
   4. LAYOUT UTILITIES
   ========================================================================== */

.nl-container {
    width: 100%;
    max-width: var(--nl-max-w);
    margin-inline: auto;
    padding-inline: var(--nl-gutter);
}

/* ==========================================================================
   5. HEADER
   ========================================================================== */

.nl-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    height: var(--nl-header-h);
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid transparent;
    transition: background var(--nl-header-dur) var(--nl-header-ease),
                border-color var(--nl-header-dur) var(--nl-header-ease),
                box-shadow var(--nl-header-dur) var(--nl-header-ease),
                backdrop-filter var(--nl-header-dur) var(--nl-header-ease);
}

.nl-header::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(6, 8, 12, 0.8) 0%, rgba(6, 8, 12, 0.44) 56%, rgba(6, 8, 12, 0.04) 100%);
    opacity: 1;
    transition: opacity calc(var(--nl-header-dur) + 0.08s) var(--nl-header-ease);
}

.nl-header::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: min(calc(100% - (var(--nl-gutter) * 2)), var(--nl-max-w));
    height: calc(var(--nl-header-h) - 16px);
    border-radius: 999px;
    pointer-events: none;
    background: var(--nl-header-strip);
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(6px) saturate(120%);
    -webkit-backdrop-filter: blur(6px) saturate(120%);
    opacity: 1;
    transition: opacity var(--nl-header-dur) var(--nl-header-ease),
                transform var(--nl-header-dur) var(--nl-header-ease);
}

/* Scrolled state — added by JS */
.nl-header.is-scrolled {
    background: rgba(8, 8, 10, 0.9);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    border-bottom-color: var(--nl-dark-border);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.52);
}

.nl-header.is-scrolled::before {
    opacity: 0;
}

.nl-header.is-scrolled::after {
    opacity: 0;
    transform: translateX(-50%) translateY(-6px);
}

.nl-header__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--nl-max-w);
    margin-inline: auto;
    padding-inline: var(--nl-gutter);
    gap: 1.5rem;
}

/* Push main content below fixed header — target only the outer wrapper */
#main.site-content {
    padding-top: 0 !important;
}

/* Astra has a nested <main id="main" class="site-main"> inside #primary — zero it out */
#primary #main,
#primary main,
main.site-main {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* Content area - clean layout */
body .content-area.primary,
body #primary.content-area {
    position: relative;
    z-index: 1;
    margin-top: 0 !important;
}


/* ==========================================================================
   5a. BRANDING / LOGO
   ========================================================================== */

.nl-header__brand {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.nl-brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    justify-content: center;
}

.nl-brand-lockup__profile {
    height: clamp(40px, 4.5vw, 58px);
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
}

/* Custom logo image */
.nl-header__brand .custom-logo-link {
    display: flex;
    align-items: center;
    line-height: 1;
}

.nl-header__brand .custom-logo {
    height: 52px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
    display: block;
    filter: brightness(1.05);
    transition: opacity var(--nl-dur) var(--nl-ease);
}

.nl-header__brand .custom-logo:hover {
    opacity: 0.85;
}

@media (max-width: 600px) {
    .nl-brand-lockup__profile {
        height: clamp(32px, 7vw, 46px);
        max-width: 140px;
    }
}

@media (max-width: 600px) {
    .nl-header__brand .custom-logo {
        height: 38px;
        max-width: 160px;
    }
}

/* ==========================================================================
   5b. FRONT PAGE HERO
   ========================================================================== */

.nl-hero {
    position: relative;
    width: 100%;
    height: clamp(520px, 88vh, 820px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.nl-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.nl-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

.nl-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(160deg,
            rgba(8,8,10,0.55) 0%,
            rgba(8,8,10,0.25) 40%,
            rgba(8,8,10,0.70) 75%,
            rgba(8,8,10,0.95) 100%),
        linear-gradient(to right, rgba(230,57,70,0.08) 0%, transparent 60%);
}

.nl-hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    flex: 1;
    padding-bottom: clamp(3rem, 6vw, 5rem);
    padding-top: calc(var(--nl-header-h) + 1rem);
}

.nl-hero__inner {
    max-width: 640px;
}

.nl-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--nl-font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--nl-red) !important;
    margin-bottom: 1rem;
}

.nl-hero__eyebrow .nl-live-dot {
    background: var(--nl-red);
}

.nl-hero__headline {
    font-family: var(--nl-font-display) !important;
    font-size: clamp(3.2rem, 8vw, 7rem) !important;
    font-weight: 900 !important;
    line-height: 0.92 !important;
    letter-spacing: -0.02em !important;
    text-transform: uppercase !important;
    color: var(--nl-white) !important;
    margin-bottom: 1.25rem !important;
}

.nl-hero__headline em {
    font-style: normal;
    color: var(--nl-red);
    display: inline-block;
    transform: skewX(-3deg);
}

.nl-hero__sub {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    color: var(--nl-grey-light) !important;
    line-height: 1.6;
    max-width: 480px;
    margin-bottom: 2rem !important;
}

.nl-hero__actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.nl-btn-listen--hero {
    padding: 0.75rem 1.75rem !important;
    font-size: 0.82rem !important;
    border-radius: var(--nl-radius-pill) !important;
    box-shadow: 0 8px 28px var(--nl-red-glow);
}

.nl-hero__link {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--nl-grey-light) !important;
    text-decoration: none;
    border-bottom: 1px solid var(--nl-grey-dark);
    padding-bottom: 2px;
    transition: color var(--nl-dur) var(--nl-ease),
                border-color var(--nl-dur) var(--nl-ease);
}

.nl-hero__link:hover {
    color: var(--nl-white) !important;
    border-color: var(--nl-white);
}

.nl-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent 0%, var(--nl-black) 100%);
    z-index: 1;
    pointer-events: none;
}

/* ==========================================================================
   5c. INNER PAGE HERO
   ========================================================================== */

.nl-page-hero {
    position: relative;
    width: 100%;
    height: clamp(180px, 30vh, 300px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.nl-page-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.nl-page-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    filter: brightness(0.45) saturate(0.7);
}

.nl-page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(8,8,10,0.3) 0%,
        rgba(8,8,10,0.75) 100%);
}

.nl-page-hero::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--nl-red);
    z-index: 3;
}

.nl-page-hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    flex: 1;
    padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
    padding-top: calc(var(--nl-header-h) + 1rem);
}

.nl-page-hero__breadcrumb {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--nl-grey-mid) !important;
    margin-bottom: 0.5rem !important;
}

.nl-page-hero__breadcrumb a {
    color: var(--nl-grey-mid) !important;
    text-decoration: none;
    transition: color var(--nl-dur) var(--nl-ease);
}

.nl-page-hero__breadcrumb a:hover {
    color: var(--nl-white) !important;
}

.nl-page-hero__title {
    font-family: var(--nl-font-display) !important;
    font-size: clamp(2rem, 5vw, 3.5rem) !important;
    font-weight: 900 !important;
    letter-spacing: 0.02em !important;
    text-transform: uppercase !important;
    color: var(--nl-white) !important;
    line-height: 1 !important;
    margin: 0 !important;
}

.nl-page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent 0%, var(--nl-black) 100%);
    z-index: 1;
    pointer-events: none;
}

/* ==========================================================================
   5d. HOMEPAGE CONTENT SECTIONS
   ========================================================================== */

.nl-section {
    padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.nl-section--tight {
    padding: clamp(2rem, 4vw, 3rem) 0;
}

.nl-section--dark {
    background: var(--nl-dark);
}

.nl-section--darker {
    background: var(--nl-dark-card);
}

.nl-section__header {
    margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.nl-section__eyebrow {
    display: block;
    font-family: var(--nl-font-display);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--nl-red);
    margin-bottom: 0.6rem;
}

.nl-section__title {
    font-family: var(--nl-font-display) !important;
    font-size: clamp(1.8rem, 4vw, 3rem) !important;
    font-weight: 900 !important;
    letter-spacing: 0.02em !important;
    text-transform: uppercase !important;
    color: var(--nl-white) !important;
    line-height: 1.05 !important;
    margin: 0 !important;
}

.nl-section__lead {
    font-size: 1rem;
    color: var(--nl-grey-mid) !important;
    margin-top: 0.75rem !important;
    max-width: 520px;
}

/* ── Homepage module layout — centered content ── */
#nl-home-schedule,
#nl-home-djs,
#nl-home-newsletter {
    /* Centered layout: no full-bleed, just proper padding */
    width: 100%;
    left: auto;
    right: auto;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

#nl-home-schedule .ast-container,
#nl-home-djs .ast-container,
#nl-home-newsletter .ast-container {
    padding-left: clamp(1.5rem, 5vw, 3rem) !important;
    padding-right: clamp(1.5rem, 5vw, 3rem) !important;
    max-width: 1100px;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
}

/* ── Now Playing / Up Next grid ── */
.nl-now-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.nl-now-card {
    position: relative;
    background: var(--nl-dark-card);
    border: 1px solid var(--nl-dark-border);
    border-radius: 4px;
    padding: 2rem 2rem 1.75rem;
    overflow: hidden;
    transition: border-color var(--nl-dur) var(--nl-ease),
                background var(--nl-dur) var(--nl-ease);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.nl-now-card--live {
    border-color: rgba(230, 57, 70, 0.4);
    background: rgba(230, 57, 70, 0.04);
    box-shadow: 0 0 20px rgba(230, 57, 70, 0.05);
}

/* Pulsing live dot */
.nl-now-card__pulse {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--nl-red);
    animation: nl-pulse 2s ease-in-out infinite;
}

@keyframes nl-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(0.7); }
}

.nl-now-card__badge {
    font-family: var(--nl-font-display);
    font-size: 0.6rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--nl-red);
    display: inline-block;
    margin-bottom: 0.25rem;
}

.nl-now-card__badge--next {
    color: var(--nl-grey-mid);
}

.nl-now-card__label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--nl-grey-mid);
    margin: 0 !important;
}

.nl-now-card__title {
    font-family: var(--nl-font-display) !important;
    font-size: 1.6rem !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    color: var(--nl-white) !important;
    line-height: 1.1 !important;
    margin: 0.25rem 0 !important;
    letter-spacing: 0.02em !important;
}

.nl-now-card__artist {
    font-size: 0.9rem;
    color: var(--nl-grey-mid) !important;
    margin: 0 !important;
}

.nl-now-card__time {
    font-family: var(--nl-font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--nl-grey-mid);
    margin: 0 !important;
}

.nl-now-card .nl-btn {
    margin-top: 1rem;
    align-self: flex-start;
}

/* ── Section footer (View Full Schedule link) ── */
.nl-section__footer {
    text-align: center;
    padding-top: 0.5rem;
}

/* Featured DJs: editorial minimal card grid */
.nl-dj-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2.75rem;
}

.nl-dj-card2 {
    border: 1px solid var(--nl-dark-border);
    background: linear-gradient(180deg, rgba(20, 20, 24, 0.98) 0%, rgba(13, 13, 16, 0.98) 100%);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color var(--nl-dur) var(--nl-ease),
                box-shadow var(--nl-dur) var(--nl-ease),
                transform var(--nl-dur) var(--nl-ease);
}

.nl-dj-card2:hover {
    border-color: rgba(230, 57, 70, 0.45);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.42);
    transform: translateY(-3px);
}

.nl-dj-card2__photo-wrap {
    width: 100%;
    aspect-ratio: 5 / 4;
    overflow: hidden;
    background: var(--nl-dark-card);
    flex-shrink: 0;
    position: relative;
}

.nl-dj-card2__photo-wrap::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 40%;
    background: linear-gradient(180deg, rgba(10, 10, 13, 0) 0%, rgba(10, 10, 13, 0.62) 100%);
    pointer-events: none;
}

.nl-dj-card2__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.5s ease;
}

.nl-dj-card2:hover .nl-dj-card2__photo {
    transform: scale(1.03);
}

.nl-dj-card2__body {
    padding: clamp(1.3rem, 2.3vw, 1.85rem);
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    flex: 1;
}

.nl-dj-card2__role {
    display: inline-block;
    font-family: var(--nl-font-display);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #d87a82;
}

.nl-dj-card2__name {
    font-family: var(--nl-font-display) !important;
    font-size: clamp(1.7rem, 2.55vw, 2.1rem) !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    color: var(--nl-white) !important;
    margin: 0.12rem 0 0 !important;
    line-height: 1.08;
    letter-spacing: 0.012em !important;
}

.nl-dj-card2__series {
    margin: 0.08rem 0 0 !important;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--nl-grey-mid);
}

.nl-dj-card2__schedule {
    margin: 0.22rem 0 0 !important;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--nl-grey-light);
}

.nl-dj-card2__show {
    margin: 0.35rem 0 0 !important;
    font-size: 0.9rem;
    color: var(--nl-grey-mid);
    line-height: 1.6;
    max-width: 38ch;
}

.nl-dj-card2__watch {
    margin-top: auto;
    padding-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: #f6f6f6;
    text-decoration: none;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    transition: color var(--nl-dur) var(--nl-ease), transform var(--nl-dur) var(--nl-ease);
}

.nl-dj-card2__watch i {
    font-size: 0.95rem;
    color: var(--nl-red);
}

.nl-dj-card2__watch:hover {
    color: var(--nl-red);
    transform: translateX(2px);
}

.nl-dj-card2__watch:focus-visible {
    outline: 2px solid rgba(230, 57, 70, 0.65);
    outline-offset: 3px;
}

/* Legacy carousel selectors kept for JS safety (hidden) */
.nl-dj-carousel { display: none; }
.nl-dj-dots     { display: none; }

/* ── Newsletter module ── */
.nl-newsletter {
    border: 1px solid var(--nl-dark-border);
    background: linear-gradient(135deg, rgba(22, 22, 26, 0.98), rgba(12, 12, 14, 0.98));
    padding: clamp(2rem, 4vw, 3.5rem);
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.nl-newsletter::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 260px;
    height: 260px;
    background: var(--nl-red);
    opacity: 0.04;
    border-radius: 999px;
    pointer-events: none;
}

.nl-newsletter__form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.nl-newsletter__input-row {
    display: flex;
    gap: 0.6rem;
}

.nl-newsletter__form input {
    flex: 1;
    min-height: 48px;
    border-radius: var(--nl-radius-pill);
    border: 1px solid var(--nl-dark-border);
    background: rgba(255, 255, 255, 0.03);
    color: var(--nl-white);
    padding: 0 1.2rem;
    font-size: 0.9rem;
    transition: border-color var(--nl-dur) var(--nl-ease);
}

.nl-newsletter__form input:focus {
    outline: none;
    border-color: rgba(230, 57, 70, 0.5);
}

.nl-newsletter__form button {
    min-height: 48px;
    border: none;
    border-radius: var(--nl-radius-pill);
    background: var(--nl-red);
    color: var(--nl-white);
    font-family: var(--nl-font-primary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0 1.6rem;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 4px 18px var(--nl-red-glow);
    transition: background var(--nl-dur) var(--nl-ease),
                box-shadow var(--nl-dur) var(--nl-ease),
                transform var(--nl-dur) var(--nl-ease);
}

.nl-newsletter__form button:hover {
    background: var(--nl-red-hover);
    box-shadow: 0 8px 26px var(--nl-red-glow);
    transform: translateY(-1px);
}

.nl-newsletter__note {
    margin: 0 !important;
    font-size: 0.78rem;
    color: var(--nl-grey-mid) !important;
    opacity: 0.75;
}

/* ── Stat strip ── */
.nl-stat-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--nl-dark-border);
    border-bottom: 1px solid var(--nl-dark-border);
}

.nl-stat {
    padding: 2.5rem 2rem;
    text-align: center;
    border-right: 1px solid var(--nl-dark-border);
}

.nl-stat:last-child {
    border-right: none;
}

.nl-stat__num {
    display: block;
    font-family: var(--nl-font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--nl-white);
    line-height: 1;
    letter-spacing: -0.02em;
}

.nl-stat__num span {
    color: var(--nl-red);
}

.nl-stat__label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--nl-grey-mid);
    margin-top: 0.4rem;
}

/* ── CTA Band ── */
.nl-cta-band {
    position: relative;
    padding: clamp(3rem, 6vw, 5rem) 0;
    overflow: hidden;
    background: var(--nl-dark);
}

.nl-cta-band::before {
    content: '';
    position: absolute;
    top: -40px; right: -60px;
    width: 340px;
    height: 340px;
    background: var(--nl-red);
    opacity: 0.05;
    transform: rotate(45deg);
    pointer-events: none;
}

.nl-cta-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.nl-cta-band__kicker {
    display: block;
    font-family: var(--nl-font-display);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--nl-red);
    margin-bottom: 0.5rem;
}

.nl-cta-band__heading {
    font-family: var(--nl-font-display) !important;
    font-size: clamp(1.6rem, 3.5vw, 2.6rem) !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    color: var(--nl-white) !important;
    line-height: 1.05 !important;
    margin: 0 !important;
    letter-spacing: 0.02em !important;
}

.nl-cta-band__sub {
    font-size: 0.9rem;
    color: var(--nl-grey-mid) !important;
    margin-top: 0.5rem !important;
    max-width: 440px;
}

.nl-cta-band__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    background: var(--nl-red);
    color: var(--nl-white) !important;
    font-family: var(--nl-font-primary);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--nl-radius-pill);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background var(--nl-dur) var(--nl-ease),
                box-shadow var(--nl-dur) var(--nl-ease),
                transform var(--nl-dur) var(--nl-ease);
    box-shadow: 0 6px 22px var(--nl-red-glow);
}

.nl-cta-band__btn:hover {
    background: var(--nl-red-hover);
    box-shadow: 0 10px 32px var(--nl-red-glow);
    transform: translateY(-2px);
    color: var(--nl-white) !important;
}

.nl-cta-band__btn--outline {
    background: transparent;
    border: 1.5px solid var(--nl-red);
    color: var(--nl-red) !important;
    box-shadow: none;
}

.nl-cta-band__btn--outline:hover {
    background: var(--nl-red);
    color: var(--nl-white) !important;
    box-shadow: 0 8px 24px var(--nl-red-glow);
}

/* ── About teaser ── */
.nl-about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: center;
}

.nl-about-split__body p {
    font-size: 1rem;
    color: var(--nl-grey-light) !important;
    line-height: 1.75;
    margin-bottom: 1rem !important;
}

.nl-about-split__body p:last-of-type {
    margin-bottom: 1.75rem !important;
}

.nl-about-split__visual {
    position: relative;
    border-radius: var(--nl-radius);
    overflow: hidden;
}

.nl-about-split__img {
    width: 100%;
    height: clamp(260px, 40vw, 440px);
    object-fit: cover;
    display: block;
    filter: saturate(0.85);
}

.nl-about-split__visual::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 40%;
    height: 3px;
    background: var(--nl-red);
}

/* ── Inner page content ── */
.nl-page-content {
    padding: clamp(3rem, 6vw, 5rem) 0;
    max-width: 820px;
}

.nl-page-content p {
    font-size: 1rem;
    color: var(--nl-grey-light) !important;
    line-height: 1.75;
    margin-bottom: 1.25rem !important;
}

.nl-page-content h2 {
    font-family: var(--nl-font-display) !important;
    font-size: clamp(1.4rem, 3vw, 2rem) !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
    color: var(--nl-white) !important;
    margin: 2.5rem 0 1rem !important;
    padding-left: 1rem;
    border-left: 3px solid var(--nl-red);
}

.nl-page-content h3 {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: var(--nl-white) !important;
    margin: 1.75rem 0 0.5rem !important;
}

.nl-divider {
    border: none;
    border-top: 1px solid var(--nl-dark-border);
    margin: 0;
}

/* Text fallback wordmark */
.nl-wordmark {
    display: flex;
    align-items: baseline;
    gap: 0;
    font-family: var(--nl-font-display) !important;
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--nl-white) !important;
    line-height: 1;
}
.nl-wordmark__ntlr   { color: var(--nl-white); }
.nl-wordmark__colon  { color: var(--nl-red); margin: 0 1px; }
.nl-wordmark__radio  { color: var(--nl-grey-light); font-size: 1rem; font-weight: 700; margin-left: 4px; }
.nl-wordmark__arrow  { color: var(--nl-red); font-size: 1.2rem; margin-left: 2px; }

/* ==========================================================================
   6. NAVIGATION (DESKTOP)
   ========================================================================== */

.nl-nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nl-nav__list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nl-nav__list .menu-item > a {
    display: block;
    padding: 0.45rem 0.9rem;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--nl-grey-light) !important;
    text-decoration: none;
    border-radius: var(--nl-radius);
    transition: color var(--nl-dur) var(--nl-ease),
                background var(--nl-dur) var(--nl-ease);
    white-space: nowrap;
}

.nl-nav__list .menu-item > a:hover {
    color: var(--nl-white) !important;
    background: rgba(255, 255, 255, 0.06);
}

.nl-nav__list .current-menu-item > a,
.nl-nav__list .current_page_item > a {
    color: var(--nl-red) !important;
    background: var(--nl-red-subtle);
}

.nl-nav__list .current-menu-item > a:hover,
.nl-nav__list .current_page_item > a:hover {
    background: rgba(230, 57, 70, 0.14);
}

/* Dropdown support */
.nl-nav__list .menu-item-has-children {
    position: relative;
}

.nl-nav__list .menu-item-has-children > .sub-menu {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    min-width: 200px;
    background: var(--nl-dark-card);
    border: 1px solid var(--nl-dark-border);
    border-radius: var(--nl-radius);
    padding: 0.5rem 0;
    box-shadow: 0 16px 40px rgba(0,0,0,0.5);
    z-index: 100;
    list-style: none;
}

.nl-nav__list .menu-item-has-children:hover > .sub-menu,
.nl-nav__list .menu-item-has-children:focus-within > .sub-menu {
    display: block;
}

.nl-nav__list .sub-menu .menu-item > a {
    border-radius: 0;
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
}

/* ==========================================================================
   7. MOBILE DRAWER
   ========================================================================== */

.nl-mobile-drawer {
    position: fixed;
    top: var(--nl-header-h);
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background: var(--nl-dark);
    border-left: 1px solid var(--nl-dark-border);
    z-index: 8999;
    transform: translateX(100%);
    transition: transform 0.35s var(--nl-ease);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.nl-mobile-drawer.is-open {
    transform: translateX(0);
}

.nl-mobile-drawer__inner {
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 0.25rem;
    min-height: 100%;
}

.nl-mobile-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nl-mobile-nav__list .menu-item > a {
    display: block;
    padding: 0.9rem 0;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--nl-grey-light) !important;
    text-decoration: none;
    border-bottom: 1px solid var(--nl-dark-border);
    transition: color var(--nl-dur) var(--nl-ease);
}

.nl-mobile-nav__list .menu-item > a:hover,
.nl-mobile-nav__list .current-menu-item > a {
    color: var(--nl-red) !important;
}

.nl-mobile-nav__list .sub-menu {
    list-style: none;
    padding: 0;
    padding-left: 1rem;
}

.nl-mobile-nav__list .sub-menu .menu-item > a {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.6rem 0;
}

.nl-mobile-socials {
    display: flex;
    gap: 1rem;
    margin-top: auto;
    padding-top: 2rem;
}

.nl-mobile-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--nl-dark-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nl-grey-mid) !important;
    font-size: 0.9rem;
    transition: border-color var(--nl-dur) var(--nl-ease),
                color var(--nl-dur) var(--nl-ease),
                background var(--nl-dur) var(--nl-ease);
}

.nl-mobile-socials a:hover {
    border-color: var(--nl-red);
    color: var(--nl-white) !important;
    background: var(--nl-red-subtle);
}

/* Overlay */
.nl-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 8998;
    backdrop-filter: blur(3px);
}
.nl-overlay.is-active { display: block; }

/* ==========================================================================
   8. HAMBURGER
   ========================================================================== */

.nl-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--nl-dark-border);
    border-radius: var(--nl-radius);
    cursor: pointer;
    padding: 0;
    transition: border-color var(--nl-dur) var(--nl-ease),
                background var(--nl-dur) var(--nl-ease);
}

.nl-hamburger:hover {
    border-color: var(--nl-red);
    background: var(--nl-red-subtle);
}

.nl-hamburger__bar {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--nl-white);
    border-radius: 2px;
    transition: transform 0.3s var(--nl-ease),
                opacity 0.3s var(--nl-ease),
                width 0.3s var(--nl-ease);
    transform-origin: center;
}

/* Open state — X animation */
.nl-hamburger.is-active .nl-hamburger__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nl-hamburger.is-active .nl-hamburger__bar:nth-child(2) {
    opacity: 0;
    width: 0;
}
.nl-hamburger.is-active .nl-hamburger__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   9. LISTEN LIVE BUTTON
   ========================================================================== */

.nl-header__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.nl-btn-listen {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.5rem 1.1rem;
    background: var(--nl-red);
    color: var(--nl-white) !important;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--nl-radius-pill);
    text-decoration: none;
    transition: background var(--nl-dur) var(--nl-ease),
                box-shadow var(--nl-dur) var(--nl-ease),
                transform var(--nl-dur) var(--nl-ease);
    white-space: nowrap;
}

.nl-btn-listen:hover {
    background: var(--nl-red-hover);
    box-shadow: 0 6px 20px var(--nl-red-glow);
    transform: translateY(-1px);
    color: var(--nl-white) !important;
}

.nl-btn-listen--full {
    margin-top: 1.5rem;
    width: 100%;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    font-size: 0.85rem;
    border-radius: var(--nl-radius);
}

/* ── Generic button base ── */
.nl-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.25rem;
    font-family: var(--nl-font-display);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--nl-radius-pill);
    text-decoration: none !important;
    transition: background var(--nl-dur) var(--nl-ease),
                box-shadow var(--nl-dur) var(--nl-ease),
                transform var(--nl-dur) var(--nl-ease),
                color var(--nl-dur) var(--nl-ease);
    white-space: nowrap;
    cursor: pointer;
    border: none;
}

.nl-btn--red {
    background: var(--nl-red);
    color: var(--nl-white) !important;
}

.nl-btn--red:hover {
    background: var(--nl-red-hover);
    box-shadow: 0 6px 20px var(--nl-red-glow);
    transform: translateY(-1px);
    color: var(--nl-white) !important;
}

.nl-btn--outline {
    background: transparent;
    color: var(--nl-white) !important;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.nl-btn--outline:hover {
    border-color: var(--nl-red);
    color: var(--nl-red) !important;
    transform: translateY(-1px);
}

/* Pulsing live dot */
.nl-live-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: var(--nl-white);
    border-radius: 50%;
    flex-shrink: 0;
    animation: nl-pulse 1.8s ease-in-out infinite;
}

@keyframes nl-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(0.7); }
}

/* ==========================================================================
    10. PAGE BANNER
    ========================================================================== */

 .nl-page-banner {
      position: relative;
      width: 100%;
      height: clamp(220px, 35vh, 420px);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      background-color: #08080a;
      margin-bottom: 1.5rem;
      overflow: hidden;
      opacity: 1;
      /* Fade the top and bottom edges into the page background */
      -webkit-mask-image: linear-gradient(to bottom,
          transparent 0%,
          black 12%,
          black 88%,
          transparent 100%);
      mask-image: linear-gradient(to bottom,
          transparent 0%,
          black 12%,
          black 88%,
          transparent 100%);
  }
 
  /* Dark tint layer to help the banner blend with the page */
  .nl-page-banner::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(8, 8, 10, 0.35);
      pointer-events: none;
      z-index: 1;
  }
 
  .nl-page-banner .ast-container {
      position: relative;
      z-index: 2;
      padding-top: 0 !important;
      padding-bottom: 0 !important;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: flex-end;
  }

.nl-page-banner__breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nl-page-banner__breadcrumb-link {
    color: var(--nl-red);
    text-decoration: none;
    transition: opacity var(--nl-dur) var(--nl-ease);
}

.nl-page-banner__breadcrumb-link:hover {
    opacity: 0.8;
}

.nl-page-banner__breadcrumb-sep {
    color: var(--nl-grey-mid);
}

.nl-page-banner__breadcrumb-current {
    color: var(--nl-white);
}

.nl-page-banner__title {
    font-family: var(--nl-font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--nl-white);
    line-height: 1.1;
    margin: 0;
    letter-spacing: 0.02em;
}

/* Compact (visual-only) banner title used when the page content already
   contains the document H1. This prevents repeated semantic H1s while
   preserving readable context in the banner. */
.nl-page-banner__title--small {
    font-family: var(--nl-font-display);
    font-size: clamp(1rem, 2.2vw, 1.6rem);
    font-weight: 800;
    text-transform: uppercase;
    color: var(--nl-grey-light);
    margin: 0.25rem 0 0;
    letter-spacing: 0.06em;
}

/* Wide page layout */
body.nl-page-wide .ast-container {
    max-width: 100% !important;
    padding-left: clamp(1.5rem, 5vw, 3rem) !important;
    padding-right: clamp(1.5rem, 5vw, 3rem) !important;
}

body.nl-page-wide .entry-content {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Schedule page custom layout ── */
.nl-page-schedule .entry-content > .wp-block-group:first-of-type {
    background: linear-gradient(180deg, rgba(20, 20, 24, 0.92) 0%, rgba(12, 12, 15, 0.9) 100%);
    border: 1px solid var(--nl-dark-border);
    border-radius: 8px;
    padding: clamp(1.5rem, 4vw, 2.5rem) !important;
}

.nl-page-schedule .entry-content > .wp-block-group:first-of-type > h1 {
    margin: 0 0 0.7rem !important;
}

.nl-page-schedule .entry-content > .wp-block-group:first-of-type > p:first-of-type {
    margin: 0 0 1.35rem !important;
    color: var(--nl-grey-light) !important;
    max-width: 68ch;
}

.nl-page-schedule .entry-content .wp-block-columns {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem !important;
    margin: 0 !important;
}

.nl-page-schedule .entry-content .wp-block-columns > .wp-block-column {
    margin: 0 !important;
}

.nl-page-schedule .entry-content > .wp-block-group:first-of-type > .wp-block-column {
    max-width: min(560px, 100%);
    margin: 1rem auto 0 !important;
}

.nl-page-schedule .entry-content .wp-block-group[style*="border-left:4px solid #e63946"] {
    border: 1px solid var(--nl-dark-border) !important;
    border-left: 4px solid var(--nl-red) !important;
    border-radius: 6px;
    background: rgba(24, 24, 28, 0.95) !important;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
    padding: 1.2rem 1.25rem !important;
    height: 100%;
}

.nl-page-schedule .entry-content .wp-block-group[style*="border-left:4px solid #e63946"] p[style*="color:#e63946"] {
    display: inline-flex;
    align-items: center;
    margin: 0 0 0.8rem !important;
}

.nl-page-schedule .entry-content .wp-block-group[style*="border-left:4px solid #e63946"] p[style*="color:#e63946"] strong {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(230, 57, 70, 0.35);
    background: rgba(230, 57, 70, 0.1);
    color: var(--nl-red) !important;
    font-size: 0.68rem;
    letter-spacing: 0.13em;
}

.nl-page-schedule .entry-content .wp-block-group[style*="border-left:4px solid #e63946"] h3 {
    margin: 0 0 0.45rem !important;
    font-family: var(--nl-font-display) !important;
    font-size: 1.35rem !important;
    font-weight: 900 !important;
    text-transform: uppercase;
    color: var(--nl-white) !important;
    letter-spacing: 0.02em !important;
    line-height: 1.12;
}

.nl-page-schedule .entry-content .wp-block-group[style*="border-left:4px solid #e63946"] h3 + p {
    font-family: var(--nl-font-display);
    font-size: 0.78rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: var(--nl-grey-light) !important;
    margin: 0 0 0.65rem !important;
}

.nl-page-schedule .entry-content .wp-block-group[style*="border-left:4px solid #e63946"] p {
    margin: 0 !important;
    color: var(--nl-grey-light) !important;
    max-width: none;
}

@media (max-width: 900px) {
    .nl-page-schedule .entry-content .wp-block-columns {
        grid-template-columns: 1fr;
    }

    .nl-page-schedule .entry-content > .wp-block-group:first-of-type > .wp-block-column {
        max-width: 100%;
    }
}

/* ==========================================================================
    10b. ADVERTISE PAGE
    ========================================================================== */

.nl-advertise {
    max-width: 860px;
    margin: 0 auto;
    padding: clamp(2rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 5rem);
}

/* Hero intro */
.nl-advertise__hero {
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.nl-advertise__title {
    font-family: var(--nl-font-display) !important;
    font-size: clamp(2.2rem, 5vw, 3.5rem) !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: -0.01em !important;
    color: var(--nl-white) !important;
    line-height: 1 !important;
    margin: 0.5rem 0 1rem !important;
}

.nl-advertise__lead {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--nl-grey-light) !important;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.65;
}

/* Video */
.nl-advertise__video-wrap {
    margin-bottom: clamp(3rem, 6vw, 5rem);
    display: flex;
    justify-content: center;
}

.nl-advertise__video-frame {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 9 / 16;
    border-radius: var(--nl-radius);
    overflow: hidden;
    border: 1px solid var(--nl-dark-border);
    box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}

.nl-advertise__video-frame iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Packages */
.nl-advertise__section-title {
    font-family: var(--nl-font-display) !important;
    font-size: clamp(1.4rem, 3vw, 2rem) !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    color: var(--nl-white) !important;
    text-align: center;
    margin-bottom: 2rem !important;
}

.nl-advertise__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.nl-ad-card {
    position: relative;
    background: var(--nl-dark-card);
    border: 1px solid var(--nl-dark-border);
    border-radius: var(--nl-radius);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    transition: border-color var(--nl-dur) var(--nl-ease),
                transform var(--nl-dur) var(--nl-ease);
}

.nl-ad-card:hover {
    border-color: var(--nl-red);
    transform: translateY(-3px);
}

.nl-ad-card--featured {
    border-color: var(--nl-red);
    background: linear-gradient(135deg, rgba(230,57,70,0.08) 0%, var(--nl-dark-card) 60%);
}

.nl-ad-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--nl-red);
    color: var(--nl-white);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.2rem 0.75rem;
    border-radius: var(--nl-radius-pill);
    white-space: nowrap;
}

.nl-ad-card__icon {
    font-size: 1.6rem;
    color: var(--nl-red);
}

.nl-ad-card__title {
    font-family: var(--nl-font-display) !important;
    font-size: 1.1rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
    color: var(--nl-white) !important;
    margin: 0 !important;
}

.nl-ad-card__price {
    font-size: 1rem;
    color: var(--nl-red) !important;
    font-weight: 700;
    margin: 0 !important;
}

.nl-ad-card__price strong {
    font-size: 1.3rem;
}

.nl-ad-card__desc {
    font-size: 0.875rem;
    color: var(--nl-grey-light) !important;
    line-height: 1.6;
    margin: 0 !important;
}

/* CTA band */
.nl-advertise__cta {
    text-align: center;
    background: linear-gradient(135deg, rgba(230,57,70,0.1) 0%, rgba(8,8,10,0) 70%);
    border: 1px solid var(--nl-red);
    border-radius: var(--nl-radius);
    padding: clamp(2rem, 5vw, 3.5rem) 2rem;
}

.nl-advertise__cta-title {
    font-family: var(--nl-font-display) !important;
    font-size: clamp(1.5rem, 3.5vw, 2.4rem) !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    color: var(--nl-white) !important;
    margin: 0 0 0.65rem !important;
}

.nl-advertise__cta-sub {
    color: var(--nl-grey-light) !important;
    margin: 0 0 1.5rem !important;
    font-size: 1rem;
}

.nl-advertise__cta-btn {
    font-size: 0.9rem;
    padding: 0.75rem 2rem;
}

@media (max-width: 768px) {
    .nl-advertise__grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
    10c. CONTACT PAGE
    ========================================================================== */

.nl-contact {
    max-width: 1000px;
    margin: 0 auto;
    padding: clamp(2rem, 5vw, 4rem) 0;
}

.nl-contact__grid {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

/* Info Column */
.nl-contact__section-title {
    font-family: var(--nl-font-display) !important;
    font-size: clamp(1.4rem, 3vw, 2.2rem) !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    color: var(--nl-white) !important;
    margin-bottom: 1.25rem !important;
    letter-spacing: 0.02em !important;
}

.nl-contact__lead {
    font-size: 1rem;
    color: var(--nl-grey-light) !important;
    margin-bottom: 2rem !important;
    line-height: 1.6;
}

.nl-contact__list {
    margin-bottom: 3rem;
}

.nl-contact__list li {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.nl-contact__list li i {
    font-size: 1.25rem;
    color: var(--nl-red);
    margin-top: 0.2rem;
}

.nl-contact__list li span {
    font-size: 0.95rem;
    color: var(--nl-grey-light);
}

.nl-contact__list li strong {
    color: var(--nl-white);
    display: block;
    margin-bottom: 0.15rem;
}

.nl-contact__social-box h4 {
    font-size: 0.8rem !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--nl-grey-mid) !important;
    margin-bottom: 1rem !important;
}

.nl-contact__socials {
    display: flex;
    gap: 0.75rem;
}

.nl-contact__socials a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--nl-dark-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nl-white);
    font-size: 1rem;
    background: var(--nl-dark-card);
    transition: all var(--nl-dur) var(--nl-ease);
}

.nl-contact__socials a:hover {
    border-color: var(--nl-red);
    background: var(--nl-red);
    transform: translateY(-2px);
}

/* Form Wrap */
.nl-contact__form-wrap {
    background: var(--nl-dark-card);
    border: 1px solid var(--nl-dark-border);
    border-radius: var(--nl-radius);
    padding: clamp(1.5rem, 4vw, 3rem);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

/* Alerts */
.nl-contact-alert {
    padding: 1rem 1.25rem;
    border-radius: var(--nl-radius);
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.nl-contact-alert--success {
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid #2ecc71;
    color: #2ecc71;
}

.nl-contact-alert--error {
    background: rgba(230, 57, 70, 0.1);
    border: 1px solid var(--nl-red);
    color: var(--nl-red);
}

/* Form Elements */
.nl-contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.nl-contact-form__group {
    margin-bottom: 1.25rem;
}

.nl-contact-form__group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--nl-grey-mid);
    margin-bottom: 0.5rem;
}

.nl-contact-form input[type="text"],
.nl-contact-form input[type="email"],
.nl-contact-form input[type="number"],
.nl-contact-form select,
.nl-contact-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid var(--nl-dark-border);
    border-radius: var(--nl-radius);
    padding: 0.75rem 1rem;
    color: var(--nl-white);
    font-family: var(--nl-font-primary);
    font-size: 0.95rem;
    line-height: 1.5;
    min-height: 48px;
    transition: border-color var(--nl-dur) var(--nl-ease),
                background var(--nl-dur) var(--nl-ease);
}

.nl-contact-form input:focus,
.nl-contact-form select:focus,
.nl-contact-form textarea:focus {
    outline: none;
    border-color: var(--nl-red);
    background: rgba(255, 255, 255, 0.06);
}

.nl-contact-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23888896' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 1rem) center;
    padding-right: 2.5rem !important;
}

.nl-contact-form select option {
    background-color: var(--nl-dark-card);
    color: var(--nl-white);
}

.nl-contact-form__captcha {
    max-width: 200px;
    margin-top: 1rem;
}

.nl-btn--full {
    width: 100%;
    justify-content: center;
    padding: 0.9rem !important;
    font-size: 0.85rem !important;
    margin-top: 1rem;
}

@media (max-width: 900px) {
    .nl-contact__grid {
        grid-template-columns: 1fr;
    }
    
    .nl-contact__info {
        text-align: center;
    }
    
    .nl-contact__lead {
        margin-inline: auto;
    }
    
    .nl-contact__list li {
        justify-content: center;
    }
    
    .nl-contact__socials {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .nl-contact-form__row {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
    11. FOOTER
    ========================================================================== */

.nl-footer {
    background: var(--nl-dark) !important;
    border-top: 2px solid var(--nl-red);
    margin-top: 4rem;
}

/* Footer Top */
.nl-footer__top {
    padding: clamp(3rem, 6vw, 5rem) 0;
}

.nl-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
}

/* Footer columns */
.nl-footer__col--brand .custom-logo-link {
    display: inline-flex;
    margin-bottom: 1rem;
}

.nl-footer__col--brand .custom-logo {
    height: 52px;
    width: auto;
    max-width: 215px;
    object-fit: contain;
}

.nl-footer-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.nl-footer-brand__profile {
    height: clamp(84px, 9vw, 128px);
    width: auto;
    max-width: 240px;
    object-fit: contain;
    display: block;
}

.nl-footer__wordmark {
    display: block;
    font-family: var(--nl-font-display) !important;
    font-size: 1.4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--nl-white);
    margin-bottom: 1rem;
}

.nl-footer__tagline {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--nl-grey-mid) !important;
    margin-bottom: 1.5rem;
    max-width: 260px;
}

.nl-footer__text {
    font-size: 0.875rem;
    color: var(--nl-grey-mid) !important;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.nl-footer__heading {
    font-size: 0.7rem !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--nl-red) !important;
    margin-bottom: 1.25rem;
}

/* Social icons */
.nl-footer__socials {
    display: flex;
    gap: 0.65rem;
}

.nl-footer__socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--nl-dark-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nl-grey-mid) !important;
    font-size: 0.85rem;
    text-decoration: none;
    transition: border-color var(--nl-dur) var(--nl-ease),
                color var(--nl-dur) var(--nl-ease),
                background var(--nl-dur) var(--nl-ease),
                transform var(--nl-dur) var(--nl-ease);
}

.nl-footer__socials a:hover {
    border-color: var(--nl-red);
    color: var(--nl-white) !important;
    background: var(--nl-red-subtle);
    transform: translateY(-2px);
}

/* Quick links */
.nl-footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nl-footer__links li a {
    display: block;
    padding: 0.4rem 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--nl-grey-light) !important;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color var(--nl-dur) var(--nl-ease),
                padding-left var(--nl-dur) var(--nl-ease);
}

.nl-footer__links li a:hover {
    color: var(--nl-white) !important;
    padding-left: 0.4rem;
}

/* Stream badge */
.nl-footer__stream-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.9rem;
    border: 1px solid var(--nl-dark-border);
    border-radius: var(--nl-radius-pill);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--nl-grey-mid);
    margin-bottom: 1.5rem;
}

.nl-footer__stream-badge .nl-live-dot {
    background: var(--nl-grey-mid);
}

/* CTA button */
.nl-footer__cta {
    display: inline-block;
    padding: 0.55rem 1.2rem;
    background: transparent;
    border: 1px solid var(--nl-red);
    border-radius: var(--nl-radius);
    color: var(--nl-red) !important;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: background var(--nl-dur) var(--nl-ease),
                color var(--nl-dur) var(--nl-ease);
    margin-top: 0.5rem;
}

.nl-footer__cta:hover {
    background: var(--nl-red);
    color: var(--nl-white) !important;
}

/* Footer bottom bar */
.nl-footer__bottom {
    border-top: 1px solid var(--nl-dark-border);
    padding: 1.25rem 0;
}

.nl-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.nl-footer__copy,
.nl-footer__made {
    font-size: 0.8rem;
    color: var(--nl-grey-dark) !important;
    margin: 0;
}

.nl-footer__made span {
    color: var(--nl-grey-mid);
}

/* ==========================================================================
   11. ASTRA OVERRIDES
   — Suppress Astra's own header/footer so our custom ones take over
   ========================================================================== */

/* Hide Astra's header */
.ast-desktop-header,
.site-header.ast-primary-header,
.ast-masthead-custom-menu-items,
#masthead.site-header,
.main-header-bar,
.ast-header-break-point .main-header-bar,
.header-main-layout-1 .main-header-bar-wrap,
.ast-above-header-bar,
.ast-below-header-bar {
    display: none !important;
}

/* Hide Astra's footer */
.ast-footer-copyright,
.footer-widget-area,
.ast-footer-overlay,
#colophon.site-footer.ast-site-footer {
    display: none !important;
}

/* Remove Astra content padding-top that conflicts with our offset */
.ast-no-sidebar #content,
.ast-page-builder-template #content,
.ast-plain-container #content {
    padding-top: 0 !important;
}

/* Suppress Astra entry title wrappers only. Do not hide `.ast-post-format-`
   because Astra uses that class on single-post content wrappers. */
.entry-header,
.page-header {
    display: none !important;
}

/* Astra uses `.ast-post-format-` on single-post content wrappers.
   Force it visible in case cached legacy CSS still hides it. */
.single-post .ast-post-format- {
    display: block !important;
}

/* Hide the "Home" / page title label Astra injects */
.entry-title.page-title,
.ast-archive-title {
    display: none !important;
}

/* Remove Astra breadcrumbs if present */
.ast-breadcrumbs-wrapper { display: none !important; }

/* Ensure no Astra sidebar breaks layout */
.ast-right-sidebar #secondary,
.ast-left-sidebar #secondary {
    display: none !important;
}

/* Remove Astra inline padding from container */
.ast-container,
.ast-page-builder-template .ast-container {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* ---- Gap fix: Astra adds margin-top/bottom 60px to #primary and 3em padding to .ast-article-single ---- */
#primary,
div#primary,
.content-area.primary {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* Remove Astra's article card padding — our blocks handle their own spacing */
.ast-article-single {
    padding: 0 !important;
}

/* Also remove entry-header space even after display:none to be safe */
.entry-header,
.ast-no-thumbnail.entry-header {
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}

/* ==========================================================================
   12. GLOBAL CONTENT STYLES
   ========================================================================== */

/* Strip Astra's article wrapper card look */
.ast-article-single,
article.post,
article.page,
.hentry {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

/* Entry content — reset Astra defaults, let our block classes do spacing */
.entry-content {
    max-width: 100%;
    background: transparent !important;
}

/* Inner page: wrap entry-content with padding and a max-width */
body:not(.nl-frontpage) .entry-content {
    max-width: var(--nl-max-w);
    margin-inline: auto;
    padding: clamp(2.5rem, 5vw, 4.5rem) var(--nl-gutter);
}

/* Inner page body text */
body:not(.nl-frontpage) .entry-content p {
    font-size: 1rem;
    color: var(--nl-grey-light) !important;
    line-height: 1.75;
    margin-bottom: 1.25rem !important;
    max-width: 72ch;
}

body:not(.nl-frontpage) .entry-content h1,
body:not(.nl-frontpage) .entry-content h2 {
    font-family: var(--nl-font-display) !important;
    font-size: clamp(1.4rem, 3vw, 2rem) !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
    color: var(--nl-white) !important;
    margin: 2.5rem 0 1rem !important;
    padding-left: 1rem;
    border-left: 3px solid var(--nl-red);
    line-height: 1.15 !important;
}

body:not(.nl-frontpage) .entry-content h3 {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: var(--nl-white) !important;
    margin: 1.75rem 0 0.5rem !important;
}

body:not(.nl-frontpage) .entry-content ul,
body:not(.nl-frontpage) .entry-content ol {
    color: var(--nl-grey-light) !important;
    padding-left: 1.5rem;
    margin-bottom: 1.25rem !important;
}

body:not(.nl-frontpage) .entry-content li {
    color: var(--nl-grey-light) !important;
    margin-bottom: 0.4rem;
    line-height: 1.65;
}

body:not(.nl-frontpage) .entry-content strong {
    color: var(--nl-white);
    font-weight: 700;
}

/* Single-post chrome cleanup */
.single-post .comments-area,
.single-post .comment-respond,
.single-post .post-navigation {
    background: var(--nl-dark-card);
    border: 1px solid var(--nl-dark-border);
    border-radius: 10px;
    padding: clamp(1.2rem, 2.2vw, 1.8rem);
    margin: 0 auto 1.25rem;
    max-width: var(--nl-max-w);
}

.single-post .comments-area p,
.single-post .comments-area label,
.single-post .comments-area h3,
.single-post .comments-area h4,
.single-post .post-navigation a,
.single-post .post-navigation .nav-subtitle,
.single-post .post-navigation .nav-title {
    color: var(--nl-grey-light) !important;
}

.single-post .comments-area input[type="text"],
.single-post .comments-area input[type="email"],
.single-post .comments-area input[type="url"],
.single-post .comments-area textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--nl-dark-border);
    color: var(--nl-white);
}

/* WordPress blocks dark styling */
.wp-block-group {
    background: transparent !important;
}

/* Front page: remove all default WP article padding — blocks handle it */
.nl-frontpage .entry-content {
    padding: 0 !important;
    margin: 0 !important;
}

/* ── Front page WP block content styling ──
   The WP editor blocks on the home page get auto-styled to match our design
   system so any content added there looks good without needing custom classes.
*/

/* Hide the first block group on front page — it's a duplicate of the hero content */
.nl-frontpage .entry-content > .wp-block-group:first-child {
    display: none !important;
}

/* Main section headings in front page WP content */
.nl-frontpage .entry-content h1 {
    font-family: var(--nl-font-display) !important;
    font-size: clamp(1.6rem, 3.5vw, 2.8rem) !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.02em !important;
    color: var(--nl-white) !important;
    line-height: 1.05 !important;
    margin: 0 0 1rem !important;
}

.nl-frontpage .entry-content > * {
    max-width: var(--nl-max-w);
    margin-inline: auto;
}

/* Section that wraps blocks — give it breathing room */
.nl-frontpage .entry-content .wp-block-group,
.nl-frontpage .entry-content .wp-block-cover {
    padding: clamp(3rem, 6vw, 5rem) var(--nl-gutter) !important;
}

/* Show section headings */
.nl-frontpage .entry-content h2 {
    font-family: var(--nl-font-display) !important;
    font-size: clamp(1.4rem, 3vw, 2.2rem) !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    color: var(--nl-white) !important;
    letter-spacing: 0.04em !important;
    margin-bottom: 1.75rem !important;
    text-align: center !important;
}

/* Show sub-headings (h3) */
.nl-frontpage .entry-content h3 {
    font-family: var(--nl-font-display) !important;
    font-size: 1.3rem !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    color: var(--nl-white) !important;
    letter-spacing: 0.02em !important;
    margin-bottom: 0.5rem !important;
}

/* Paragraphs inside front page blocks */
.nl-frontpage .entry-content p {
    color: var(--nl-grey-mid) !important;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.5rem !important;
}

/* Strong labels (like "WEDNESDAYS 7PM–9PM") → look like time badges */
.nl-frontpage .entry-content strong {
    display: block;
    font-family: var(--nl-font-display);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--nl-red) !important;
    margin-bottom: 0.4rem;
}

/* WP columns / columns block — show cards */
.nl-frontpage .entry-content .wp-block-column {
    background: var(--nl-dark-card) !important;
    border: 1px solid var(--nl-dark-border) !important;
    padding: 2rem 1.75rem !important;
    position: relative;
    overflow: hidden;
    transition: border-color var(--nl-dur) var(--nl-ease);
}

.nl-frontpage .entry-content .wp-block-column::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px;
    height: 100%;
    background: var(--nl-red);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.35s var(--nl-ease);
}

.nl-frontpage .entry-content .wp-block-column:hover {
    border-color: var(--nl-red) !important;
}

.nl-frontpage .entry-content .wp-block-column:hover::before {
    transform: scaleY(1);
}

.nl-frontpage .entry-content .wp-block-columns {
    gap: 1.5px !important;
    flex-wrap: nowrap !important;
}

/* WP buttons */
.nl-frontpage .entry-content .wp-block-button a,
.nl-frontpage .entry-content .wp-block-button__link {
    background: var(--nl-red) !important;
    border-radius: var(--nl-radius-pill) !important;
    font-weight: 800 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    font-size: 0.78rem !important;
    padding: 0.65rem 1.5rem !important;
    border: none !important;
}

/* Forms */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="tel"],
textarea,
select {
    background: var(--nl-dark-card) !important;
    border: 1px solid var(--nl-dark-border) !important;
    color: var(--nl-white) !important;
    border-radius: var(--nl-radius) !important;
    padding: 0.75rem 1rem !important;
    font-family: var(--nl-font-primary) !important;
    font-size: 0.9rem !important;
    width: 100%;
    transition: border-color var(--nl-dur) var(--nl-ease),
                box-shadow var(--nl-dur) var(--nl-ease);
}

input:focus,
textarea:focus,
select:focus {
    outline: none !important;
    border-color: var(--nl-red) !important;
    box-shadow: 0 0 0 3px var(--nl-red-glow) !important;
}

input::placeholder,
textarea::placeholder {
    color: var(--nl-grey-dark) !important;
}

/* Buttons */
.wp-block-button__link,
.button,
.ast-button,
input[type="submit"],
button[type="submit"] {
    background: var(--nl-red) !important;
    border: none !important;
    color: var(--nl-white) !important;
    padding: 0.75rem 1.75rem !important;
    font-family: var(--nl-font-primary) !important;
    font-size: 0.8rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    border-radius: var(--nl-radius-pill) !important;
    cursor: pointer !important;
    transition: background var(--nl-dur) var(--nl-ease),
                box-shadow var(--nl-dur) var(--nl-ease),
                transform var(--nl-dur) var(--nl-ease) !important;
}

.wp-block-button__link:hover,
.button:hover,
.ast-button:hover,
input[type="submit"]:hover,
button[type="submit"]:hover {
    background: var(--nl-red-hover) !important;
    box-shadow: 0 8px 24px var(--nl-red-glow) !important;
    transform: translateY(-2px) !important;
    color: var(--nl-white) !important;
}

/* ==========================================================================
   13. ANIMATIONS & UTILITIES
   ========================================================================== */

/* Fade-in on scroll — add .nl-fade to any element */
.nl-fade {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s var(--nl-ease), transform 0.6s var(--nl-ease);
}
.nl-fade.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Visually hidden (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;
}

/* ==========================================================================
   14. RESPONSIVE
   ========================================================================== */

/* Tablet: ≤ 900px */
@media (max-width: 900px) {
    /* Show hamburger, hide desktop nav */
    .nl-hamburger { display: flex; }
    .nl-nav { display: none; }

    /* Footer 2-col */
    .nl-footer__grid {
        grid-template-columns: 1fr 1fr;
    }
    .nl-footer__col--brand {
        grid-column: 1 / -1;
    }

    /* About split → single col */
    .nl-about-split {
        grid-template-columns: 1fr;
    }

    /* DJ grid → single column on tablet/mobile */
    .nl-dj-grid {
        grid-template-columns: 1fr;
    }

    .nl-newsletter {
        grid-template-columns: 1fr;
    }

    .nl-newsletter__form {
        grid-template-columns: 1fr;
    }

    .nl-about-split__visual {
        order: -1;
    }

    /* Stat strip → single row scroll */
    .nl-stat-strip {
        grid-template-columns: repeat(3, 1fr);
    }

    /* CTA band → stack */
    .nl-cta-band__inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Mobile: ≤ 600px */
@media (max-width: 600px) {
    :root { --nl-header-h: 60px; }

    .nl-footer-brand__profile {
        height: clamp(64px, 11vw, 110px);
        max-width: 200px;
    }

    /* Footer single column */
    .nl-footer__grid {
        grid-template-columns: 1fr;
    }

    .nl-footer__bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 0.4rem;
    }

    .nl-btn-listen {
        font-size: 0.7rem;
        padding: 0.45rem 0.85rem;
    }

    h1, h2 {
        overflow-wrap: break-word;
        word-break: break-word;
        hyphens: auto;
    }

    /* Stat strip → 1 col on very small */
    .nl-stat-strip {
        grid-template-columns: 1fr;
    }

    .nl-stat {
        border-right: none;
        border-bottom: 1px solid var(--nl-dark-border);
        padding: 1.75rem 1.5rem;
    }

    .nl-stat:last-child {
        border-bottom: none;
    }

    /* Now grid → single col on mobile */
    .nl-now-grid {
        grid-template-columns: 1fr;
    }

    /* Hero actions stack */
    .nl-hero__actions {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ==========================================================================
   15. MOBILE TAP TARGET & FONT-SIZE FIXES
   Ensures all interactive elements meet the 44×44px minimum touch target
   and that accent labels are legible on small screens.
   ========================================================================== */

/* ── Listen Live header button: ensure 44px tap height on mobile ── */
@media (max-width: 900px) {
    .nl-btn-listen {
        min-height: 44px;
        padding-top: 0.65rem;
        padding-bottom: 0.65rem;
    }

    /* Player close & mute buttons: larger touch area */
    .nl-player__close,
    .nl-player__vol-btn {
        min-width: 44px;
        min-height: 44px;
        padding: 0;
        justify-content: center;
    }

    /* Breadcrumb links — ensure tap-friendly height */
    .nl-page-banner__breadcrumb-link,
    .nl-page-hero__breadcrumb a {
        display: inline-block;
        padding: 0.5rem 0;
        font-size: 0.78rem;
    }

    /* "View Schedule →" hero ghost link — tappable */
    .nl-hero__link {
        display: inline-block;
        padding: 0.75rem 0;
        min-height: 44px;
        line-height: 1.5;
    }

    /* Eyebrow / badge accent labels — bump floor to 0.7rem on mobile */
    .nl-section__eyebrow,
    .nl-dj-card__role,
    .nl-dj-card2__role,
    .nl-now-card__badge,
    .nl-hero__eyebrow,
    .nl-ad-card__badge,
    .nl-cta-band__kicker,
    .nl-schedule-section .nl-section__eyebrow {
        font-size: 0.7rem;
    }

    /* Card time/label micro text */
    .nl-now-card__label,
    .nl-now-card__time {
        font-size: 0.72rem;
    }

    /* Footer section heading labels */
    .nl-footer__heading {
        font-size: 0.75rem !important;
    }

    /* Player live badge */
    .nl-player__live-badge {
        font-size: 0.65rem;
    }
}

/* ── Very small phones (≤480px) additional adjustments ── */
@media (max-width: 480px) {
    /* Ensure contact email link is tap-friendly */
    .nl-contact__list li a[href^="mailto"] {
        display: inline-block;
        padding: 0.35rem 0;
    }

    /* Newsletter input row: stack on very narrow screens */
    .nl-newsletter__input-row {
        flex-direction: column;
    }

    .nl-newsletter__form button {
        width: 100%;
    }
}

/* ==========================================================================
   14. STICKY RADIO PLAYER
   ========================================================================== */

/* Body padding so content isn't hidden behind the bar */
body:not(.nl-player-hidden) {
    padding-bottom: 72px;
}

/* The bar itself */
.nl-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0 clamp(1rem, 3vw, 2rem);
    background: rgba(10, 10, 13, 0.97);
    border-top: 1px solid var(--nl-dark-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.55);
    transition: transform 0.35s var(--nl-ease);
}

.nl-player.is-hidden {
    transform: translateY(100%);
    pointer-events: none;
}

/* ── Left: play button + meta ── */
.nl-player__left {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    min-width: 0;
    flex: 1;
}

/* Play/Pause button */
.nl-player__play {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--nl-red);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--nl-dur) var(--nl-ease),
                transform  var(--nl-dur) var(--nl-ease),
                box-shadow var(--nl-dur) var(--nl-ease);
    box-shadow: 0 0 0 0 var(--nl-red-glow);
}

.nl-player__play:hover {
    background: var(--nl-red-hover);
    transform: scale(1.08);
}

.nl-player__play.is-playing {
    box-shadow: 0 0 0 6px var(--nl-red-glow);
}

/* Play/Stop FA icons */
.nl-player__play .nl-play-icon,
.nl-player__play .nl-stop-icon {
    font-size: 16px;
    color: var(--nl-white);
    line-height: 1;
}

/* Default: show play, hide stop */
.nl-player__play .nl-stop-icon {
    display: none;
}

/* Playing state: hide play, show stop */
.nl-player__play.is-playing .nl-play-icon {
    display: none;
}

.nl-player__play.is-playing .nl-stop-icon {
    display: inline-block;
}

/* Track meta */
.nl-player__meta {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.nl-player__live-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--nl-font-display);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--nl-grey-mid);
    transition: color var(--nl-dur) var(--nl-ease);
}

.nl-player__live-badge.is-live {
    color: var(--nl-red);
}

.nl-player__live-badge.is-live .nl-live-dot {
    background: var(--nl-red);
}

.nl-player__track {
    display: block;
    font-family: var(--nl-font-primary);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--nl-white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 260px;
}

.nl-player__artist {
    display: block;
    font-family: var(--nl-font-primary);
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--nl-grey-mid);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 260px;
}

/* ── Center: station label ── */
.nl-player__center {
    flex-shrink: 0;
}

.nl-player__station {
    font-family: var(--nl-font-display);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--nl-grey-dark);
}

/* ── Right: volume + close ── */
.nl-player__right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.nl-player__vol-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nl-player__vol-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--nl-grey-mid);
    font-size: 0.95rem;
    padding: 4px;
    display: flex;
    align-items: center;
    transition: color var(--nl-dur) var(--nl-ease);
}

.nl-player__vol-btn:hover {
    color: var(--nl-white);
}

/* Volume slider — custom styled */
.nl-player__vol-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 80px;
    height: 3px;
    border-radius: 3px;
    background: var(--nl-dark-border);
    outline: none;
    cursor: pointer;
}

.nl-player__vol-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--nl-white);
    cursor: pointer;
    transition: background var(--nl-dur) var(--nl-ease),
                transform  var(--nl-dur) var(--nl-ease);
}

.nl-player__vol-slider::-webkit-slider-thumb:hover {
    background: var(--nl-red);
    transform: scale(1.2);
}

.nl-player__vol-slider::-moz-range-thumb {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--nl-white);
    border: none;
    cursor: pointer;
}

/* Close button */
.nl-player__close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--nl-grey-dark);
    font-size: 1rem;
    padding: 4px;
    display: flex;
    align-items: center;
    transition: color var(--nl-dur) var(--nl-ease);
    margin-left: 0.25rem;
}

.nl-player__close:hover {
    color: var(--nl-white);
}

/* ── Red accent line at top of bar ── */
.nl-player::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--nl-red) 20%,
        var(--nl-red) 80%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.4s var(--nl-ease);
}

.nl-player:has(.nl-player__play.is-playing)::before {
    opacity: 1;
}

/* ── Mobile responsive ── */
@media (max-width: 768px) {
    .nl-player__center {
        display: none;
    }

    .nl-player__track,
    .nl-player__artist {
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .nl-player__vol-wrap {
        display: none;
    }

    .nl-player__track,
    .nl-player__artist {
        max-width: 120px;
    }
}

/* ==========================================================================
   15. ABOUT PAGE
   ========================================================================== */

.nl-page-about .entry-content {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.nl-about {
    padding-bottom: 6rem;
}

.nl-about-hero {
    margin-bottom: 4rem;
}

.nl-about-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.nl-about__section {
    margin-bottom: 6rem;
}

/* Mission Box */
.nl-about__mission-box {
    background: var(--nl-dark-card);
    border-left: 4px solid var(--nl-red);
    padding: 3.5rem;
    position: relative;
    overflow: hidden;
}

.nl-about__mission-box::after {
    content: "\f10e";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    bottom: -10px;
    right: 20px;
    font-size: 8rem;
    color: var(--nl-white);
    opacity: 0.03;
    pointer-events: none;
}

.nl-about__title {
    font-family: var(--nl-font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-transform: uppercase;
    line-height: 1;
    margin: 0.5rem 0 1.5rem;
    color: var(--nl-white);
}

.nl-about__mission-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--nl-grey-light);
    max-width: 900px;
}

/* Values Grid */
.nl-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.nl-value-card {
    background: var(--nl-dark-card);
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid var(--nl-dark-border);
    transition: transform 0.3s var(--nl-ease), border-color 0.3s var(--nl-ease);
}

.nl-value-card:hover {
    transform: translateY(-5px);
    border-color: var(--nl-red);
}

.nl-value-card i {
    font-size: 2.5rem;
    color: var(--nl-red);
    margin-bottom: 1.5rem;
}

.nl-value-card h3 {
    font-family: var(--nl-font-display);
    text-transform: uppercase;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.nl-value-card p {
    font-size: 0.95rem;
    color: var(--nl-grey-mid);
    line-height: 1.5;
}

/* Vision Split */
.nl-about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.nl-about__ethics {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--nl-dark-border);
}

.nl-about__ethics h4 {
    color: var(--nl-red);
    text-transform: uppercase;
    font-family: var(--nl-font-display);
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.nl-about__visual-box {
    aspect-ratio: 1/1;
    background: var(--nl-dark-card);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--nl-dark-border);
}

.nl-about__visual-accent {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid var(--nl-red);
    opacity: 0.15;
}

.nl-about__visual-text {
    text-align: center;
    z-index: 2;
}

.nl-about__visual-text span {
    display: block;
    font-family: var(--nl-font-display);
    color: var(--nl-red);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.nl-about__visual-text strong {
    display: block;
    font-family: var(--nl-font-display);
    font-size: 4rem;
    text-transform: uppercase;
    line-height: 0.9;
}

/* Connect Card */
.nl-about__cta-card {
    background: linear-gradient(135deg, var(--nl-dark-card) 0%, #0a0a0d 100%);
    padding: 5rem 2rem;
    text-align: center;
    border: 1px solid var(--nl-dark-border);
}

.nl-about__socials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.nl-social-btn {
    background: rgba(255,255,255,0.05);
    padding: 0.9rem 1.8rem;
    border-radius: var(--nl-radius-pill);
    color: var(--nl-white);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s var(--nl-ease);
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    border: 1px solid transparent;
}

.nl-social-btn:hover {
    background: var(--nl-red);
    border-color: var(--nl-red);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--nl-red-glow);
}

@media (max-width: 920px) {
    .nl-about-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .nl-about__visual-box {
        aspect-ratio: 16/9;
    }
}

@media (max-width: 600px) {
    .nl-about__mission-box {
        padding: 2.5rem 1.5rem;
    }
    .nl-about__cta-card {
        padding: 4rem 1.5rem;
    }
}

/* ==========================================================================
   17. ADVERTISE PAGE V2
   ========================================================================== */

.nl-page-advertise .entry-content {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.nl-advertise-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem 6rem;
}

.nl-video-stage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: var(--nl-dark-card);
    border: 1px solid var(--nl-dark-border);
    padding: 4rem;
    margin-bottom: 6rem;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.nl-video-stage::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 300px;
    height: 300px;
    background: var(--nl-red);
    opacity: 0.03;
    border-radius: 50%;
    filter: blur(60px);
}

.nl-video-stage__title {
    font-family: var(--nl-font-display) !important;
    font-size: clamp(2rem, 4vw, 3rem) !important;
    text-transform: uppercase !important;
    margin-bottom: 1.5rem !important;
}

.nl-video-stage__info p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--nl-grey-light);
}

/* Home page advertise CTA section separator */
.nl-home-advertise-cta {
    position: relative;
    border-top: 1px solid var(--nl-dark-border);
}

.nl-home-advertise-cta::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: min(540px, 86vw);
    height: 1px;
    background: linear-gradient(90deg, rgba(230, 57, 70, 0) 0%, rgba(230, 57, 70, 0.34) 50%, rgba(230, 57, 70, 0) 100%);
    pointer-events: none;
}

.nl-home-advertise-cta__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem 0;
    width: 100%;
}

/* Left "box" — text centered within its column */
.nl-home-advertise-cta__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
    text-align: center;
}

.nl-home-advertise-cta__text .nl-section__eyebrow,
.nl-home-advertise-cta__text h2.nl-section__title,
.nl-home-advertise-cta__text .nl-section__lead {
    text-align: center !important;
    padding-left: 0;
    margin-left: 0;
}

.nl-home-advertise-cta__text .nl-section__eyebrow {
    margin-bottom: 0;
}

.nl-home-advertise-cta__text .nl-section__title {
    margin-bottom: 0.25rem !important;
}

.nl-home-advertise-cta__text .nl-section__lead {
    margin-bottom: 0.5rem;
    max-width: 420px;
}

.nl-home-advertise-cta__btn {
    align-self: center;
    margin-top: 0.5rem;
}

/* Right "box" — video centered within its column */
.nl-home-advertise-cta__video {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nl-home-advertise-cta__frame {
    width: 100%;
    max-width: 220px;
    aspect-ratio: 9 / 16;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--nl-dark-border);
    box-shadow: 0 16px 48px rgba(0,0,0,0.6);
}

.nl-home-advertise-cta__frame iframe {
    width: 100%;
    height: 100%;
    display: block;
}

@media (max-width: 768px) {
    .nl-home-advertise-cta__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.5rem 0;
    }
    .nl-home-advertise-cta__text {
        align-items: center;
        text-align: center;
    }
    .nl-home-advertise-cta__text .nl-section__eyebrow,
    .nl-home-advertise-cta__text h2.nl-section__title,
    .nl-home-advertise-cta__text .nl-section__lead {
        text-align: center !important;
    }
    .nl-home-advertise-cta__btn {
        align-self: center;
    }
    .nl-home-advertise-cta__frame {
        max-width: 200px;
    }
}

/* Legacy single-video frame — kept for backwards compat */
.nl-advertise__video-frame-v2 {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 9 / 16;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--nl-dark-border);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    margin: 0 auto;
}

.nl-advertise__video-frame-v2 iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Dual video row */
.nl-video-dual-row {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    justify-content: center;
}

.nl-video-dual__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.nl-video-dual__label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--nl-red);
}

/* Landscape frame for the original video */
.nl-advertise__video-frame-landscape {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--nl-dark-border);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.nl-advertise__video-frame-landscape iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Portrait frame for the Short */
.nl-advertise__video-frame-portrait {
    width: 100%;
    max-width: 220px;
    aspect-ratio: 9 / 16;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--nl-dark-border);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.nl-advertise__video-frame-portrait iframe {
    width: 100%;
    height: 100%;
    display: block;
}

@media (max-width: 920px) {
    .nl-video-stage {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
        text-align: center;
    }
    .nl-video-dual-row {
        flex-direction: column;
        align-items: center;
    }
    .nl-advertise__video-frame-landscape {
        max-width: 100%;
    }
    .nl-advertise__video-frame-portrait {
        max-width: 220px;
    }
    .nl-advertise__video-frame-v2 {
        max-width: 280px;
    }
}


/* ==========================================================================
   16. SCHEDULE PAGE
   ========================================================================== */

.nl-page-schedule .entry-content {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.nl-schedule-page {
    padding-bottom: 6rem;
}

/* Schedule Hero */
.nl-schedule-hero {
    position: relative;
    height: clamp(300px, 45vh, 500px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-bottom: 4rem;
}

.nl-schedule-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.nl-schedule-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3) saturate(0.5);
}

.nl-schedule-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(8,8,10,0.4) 0%, var(--nl-black) 100%);
}

.nl-schedule-hero__content {
    position: relative;
    z-index: 2;
    padding: 0 1.5rem;
    max-width: 800px;
}

.nl-schedule-hero__title {
    font-family: var(--nl-font-display) !important;
    font-size: clamp(2.5rem, 8vw, 5rem) !important;
    text-transform: uppercase !important;
    letter-spacing: -0.02em !important;
    margin: 0.5rem 0 1rem !important;
    line-height: 0.9 !important;
}

.nl-schedule-hero__lead {
    font-size: 1.15rem;
    color: var(--nl-grey-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Daily Feature */
.nl-schedule-section {
    max-width: 1100px;
    margin: 0 auto 6rem;
    padding: 0 1.5rem;
}

.nl-daily-feature {
    background: var(--nl-dark-card);
    border: 1px solid var(--nl-dark-border);
    border-radius: 8px;
    padding: 3rem;
    display: flex;
    gap: 3rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.nl-daily-feature::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 6px;
    background: var(--nl-red);
}

.nl-daily-feature__label {
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    font-family: var(--nl-font-display);
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--nl-red);
    opacity: 0.8;
}

.nl-daily-feature__title {
    font-family: var(--nl-font-display) !important;
    font-size: clamp(1.8rem, 4vw, 3rem) !important;
    text-transform: uppercase !important;
    margin: 0 0 1rem !important;
}

.nl-daily-feature__desc {
    font-size: 1.1rem;
    color: var(--nl-grey-light);
    margin-bottom: 2rem !important;
    max-width: 700px;
}

.nl-daily-feature__times {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.nl-time-chip {
    background: rgba(255,255,255,0.05);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-family: var(--nl-font-display);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--nl-white);
}

/* Show Strip */
.nl-shows-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nl-show-strip {
    background: var(--nl-dark-card);
    border: 1px solid var(--nl-dark-border);
    display: grid;
    grid-template-columns: 180px 1fr 220px;
    align-items: center;
    padding: 2rem;
    transition: all 0.3s ease;
}

.nl-show-strip:hover {
    border-color: var(--nl-red);
    transform: scale(1.01);
}

.nl-show-strip__day {
    font-family: var(--nl-font-display);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 1.1rem;
    color: var(--nl-red);
}

.nl-show-strip__title {
    font-family: var(--nl-font-display) !important;
    text-transform: uppercase !important;
    font-size: 1.5rem !important;
    margin: 0 0 0.25rem !important;
}

.nl-show-strip__desc {
    font-size: 0.95rem;
    color: var(--nl-grey-mid);
    margin: 0 !important;
}

.nl-show-strip__time {
    text-align: right;
    display: flex;
    flex-direction: column;
}

.nl-show-strip__time strong {
    font-family: var(--nl-font-display);
    font-size: 1.2rem;
    color: var(--nl-white);
}

.nl-show-strip__time span {
    font-size: 0.8rem;
    color: var(--nl-grey-dark);
}

/* Footer CTA */
.nl-schedule-footer {
    max-width: 800px;
    margin: 4rem auto 0;
    padding: 0 1.5rem;
}

.nl-schedule-cta {
    text-align: center;
    border-top: 1px solid var(--nl-dark-border);
    padding-top: 4rem;
}

.nl-schedule-cta h3 {
    font-family: var(--nl-font-display) !important;
    font-size: 2rem !important;
    text-transform: uppercase !important;
    margin-bottom: 1rem !important;
}

.nl-schedule-cta p {
    color: var(--nl-grey-mid);
    margin-bottom: 2rem !important;
}

@media (max-width: 900px) {
    .nl-show-strip {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    .nl-show-strip__time {
        text-align: center;
    }
    .nl-daily-feature {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    .nl-daily-feature__label {
        writing-mode: horizontal-tb;
        transform: none;
    }
    .nl-daily-feature__times {
        justify-content: center;
    }
}

/* ==========================================================================
   AZURACAST INTEGRATION — Album art, recently played, listener count
   ========================================================================== */

/* ── Now-card album art ── */
.nl-now-card__art {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: .75rem;
    box-shadow: 0 4px 14px rgba(0,0,0,.45);
}

/* ── Recently played on home card ── */
.nl-now-card__recent {
    margin-top: .75rem;
    width: 100%;
}
.nl-recent-label {
    font-size: .65rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--nl-grey, #888896);
    margin-bottom: .35rem;
}
.nl-recent-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .25rem;
}
.nl-recent-list li {
    font-size: .78rem;
    color: rgba(255,255,255,.7);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.nl-recent-title  { color: rgba(255,255,255,.9); font-weight: 600; }
.nl-recent-artist { color: rgba(255,255,255,.5); }

/* ── Sticky player — album art thumb ── */
#nl-player-art {
    width: 46px;
    height: 46px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
    display: none;
}

/* ── Sticky player — recently played drawer ── */
.nl-player-history {
    list-style: none;
    margin: .4rem 0 0;
    padding: 0;
    font-size: .72rem;
    color: rgba(255,255,255,.6);
    display: flex;
    flex-direction: column;
    gap: .2rem;
}
.nl-ph-title  { color: rgba(255,255,255,.85); font-weight: 600; }
.nl-ph-artist { color: rgba(255,255,255,.45); }

/* ==========================================================================
   SCHEDULE PAGE — Live On-Air Banner
   ========================================================================== */

.nl-schedule-live-banner {
    background: linear-gradient(135deg, #1a0a0a 0%, #0f0f12 100%);
    border-bottom: 1px solid rgba(230,57,70,.25);
    border-top: 1px solid rgba(230,57,70,.15);
    padding: 1.25rem 0;
    margin-bottom: 1.5rem;
}

.nl-sched-live__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.nl-sched-live__now {
    display: flex;
    align-items: center;
    gap: .85rem;
    flex: 1;
    min-width: 0;
}

.nl-sched-live__label {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #e63946;
    white-space: nowrap;
}

.nl-sched-live__art {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 5px;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(0,0,0,.5);
}

.nl-sched-live__meta {
    display: flex;
    flex-direction: column;
    gap: .15rem;
    min-width: 0;
}

.nl-sched-live__track {
    font-size: .95rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nl-sched-live__artist {
    font-size: .78rem;
    color: rgba(255,255,255,.55);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nl-sched-live__btn {
    flex-shrink: 0;
    font-size: .8rem;
    padding: .5rem 1rem;
}

.nl-sched-live__next {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: .1rem;
    text-align: right;
    min-width: 0;
}

.nl-sched-live__next-label {
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
}

.nl-sched-live__next-track {
    font-size: .82rem;
    font-weight: 600;
    color: rgba(255,255,255,.75);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 240px;
}

.nl-sched-live__next-artist {
    font-size: .72rem;
    color: rgba(255,255,255,.4);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 240px;
}

@media (max-width: 600px) {
    .nl-sched-live__next { display: none; }
    .nl-sched-live__btn  { display: none; }
    .nl-sched-live__track { font-size: .85rem; }
}
