:root {
    --color-bg: #0d0f14;
    --color-bg-soft: #141821;
    --color-blue: #123f6b;
    --color-orange: #c96b35;
    --color-text: #f2f2f2;
    --color-muted: #a9b0bf;
    --color-border: rgba(255, 255, 255, 0.09);
    --container: 1180px;
    --radius: 22px;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--color-orange); }
img { max-width: 100%; height: auto; display: block; }

.container {
    width: min(100% - 32px, var(--container));
    margin-inline: auto;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(13, 15, 20, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-border);
}

.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.site-branding { flex: 0 0 auto; }
.custom-logo { max-height: 58px; width: auto; }
.site-title {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.main-navigation { margin-left: auto; }
.main-navigation ul {
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.main-navigation a {
    color: var(--color-text);
    font-size: 0.92rem;
    font-weight: 600;
    opacity: 0.88;
}
.main-navigation a:hover { opacity: 1; color: var(--color-orange); }

.live-button,
.button-primary,
.button-secondary,
.footer-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 44px;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 0.02em;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.live-button,
.button-primary,
.footer-cta {
    padding: 0 20px;
    background: var(--color-orange);
    color: #fff;
    box-shadow: 0 10px 30px rgba(201, 107, 53, .25);
}
.live-button:hover,
.button-primary:hover,
.footer-cta:hover { color: #fff; transform: translateY(-1px); }
.button-secondary {
    padding: 0 20px;
    border: 1px solid var(--color-border);
    color: var(--color-text);
    background: rgba(255,255,255,.04);
}
.play-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    display: inline-block;
}
.play-icon::after {
    content: '';
    position: absolute;
    left: 8px;
    top: 6px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 7px solid #fff;
}
.live-button.large { min-height: 54px; padding-inline: 26px; }

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 10px;
}
.menu-toggle span:not(.screen-reader-text) {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--color-text);
}

 .section-dark,
.section-block { padding: 72px 0; }
.section-block.alt { background: var(--color-bg-soft); }

.lr-hero {
    min-height: 680px;
    display: flex;
    align-items: center;
    padding: 86px 0;
    background:
        radial-gradient(circle at 78% 22%, rgba(18, 63, 107, .62), transparent 34%),
        radial-gradient(circle at 82% 80%, rgba(201, 107, 53, .20), transparent 30%),
        linear-gradient(135deg, #0d0f14 0%, #111826 52%, #0d0f14 100%);
    border-bottom: 1px solid var(--color-border);
}

.lr-hero-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 56px;
    align-items: center;
}

.lr-hero-content p {
    font-size: 1.12rem;
    max-width: 620px;
}

.lr-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.lr-hero-media {
    min-width: 0;
}

.lr-hero-frame {
    position: relative;
    min-height: 440px;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.13);
    background:
        linear-gradient(145deg, rgba(18,63,107,.72), rgba(201,107,53,.22)),
        linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,0));
    box-shadow: var(--shadow);
}

.lr-hero-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(13,15,20,.1), rgba(13,15,20,.55)),
        radial-gradient(circle at 20% 25%, rgba(255,255,255,.10), transparent 24%);
}

.lr-hero-badge {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(9,11,16,.72);
    border: 1px solid rgba(255,255,255,.12);
    color: var(--color-text);
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.live-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--color-orange);
    box-shadow: 0 0 0 6px rgba(201,107,53,.18);
}

.lr-hero-slide-content {
    position: absolute;
    left: 34px;
    right: 34px;
    bottom: 32px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.lr-hero-slide-content span {
    color: var(--color-orange);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .14em;
}

.lr-hero-slide-content strong {
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    line-height: .95;
    letter-spacing: -.07em;
}

.lr-hero-slide-content small {
    color: var(--color-muted);
    font-weight: 700;
}

.hero-slider {
    min-height: 640px;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 80% 20%, rgba(18, 63, 107, .55), transparent 34%),
        linear-gradient(135deg, #0d0f14 0%, #121927 48%, #0d0f14 100%);
}
.hero-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
    align-items: center;
}
.streaming-section { padding: 32px 0; background: var(--color-bg); }
.card-highlight {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 34px;
    border-radius: var(--radius);
    background: var(--color-bg-soft);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow);
}

.section-heading {
    display: flex;
    flex-direction: column;
    margin-bottom: 28px;
}
.cards-grid,
.post-grid {
    display: grid;
    gap: 24px;
}
.cards-grid.three,
.post-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.media-card,
.post-card {
    background: var(--color-bg-soft);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0,0,0,.22);
}
.media-card { padding: 18px; }
.media-card .thumb {
    height: 190px;
    border-radius: 16px;
    margin-bottom: 18px;
}
.video-placeholder {
    min-height: 310px;
    border-radius: var(--radius);
    display: grid;
    place-items: center;
    color: var(--color-muted);
    font-weight: 800;
}
.post-card-thumb {
    min-height: 210px;
    display: grid;
    place-items: center;
    color: rgba(255,255,255,.55);
    font-weight: 800;
}
.post-card-thumb img { width: 100%; height: 230px; object-fit: cover; }
.post-card-content { padding: 22px; }
.post-date,
.post-meta { color: var(--color-orange); font-size: .82rem; font-weight: 700; }

.archive-page,
.single-page,
.page-content,
.error-404 { padding: 72px 0; min-height: 60vh; }
.content-layout .page-header { margin-bottom: 34px; }
.narrow-content { max-width: 860px; }
.single-header { margin-bottom: 30px; }
.single-featured-image img { border-radius: var(--radius); margin-bottom: 30px; }
.entry-content {
    color: var(--color-text);
    font-size: 1.05rem;
}
.entry-content p { color: #d5dae5; }
.entry-content a { color: var(--color-orange); text-decoration: underline; }
.entry-content h2,
.entry-content h3 { margin-top: 34px; }

.site-footer {
    border-top: 1px solid var(--color-border);
    background: #090b10;
    padding: 56px 0 24px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 1fr 1fr;
    gap: 34px;
}
.footer-title {
    color: var(--color-text);
    font-size: 1rem;
    margin-bottom: 16px;
}
.footer-menu,
.footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-menu li,
.footer-column li { margin-bottom: 10px; }
.social-links { display: flex; flex-wrap: wrap; gap: 12px; }
.social-links a,
.footer-column a { color: var(--color-muted); }
.footer-column a:hover { color: var(--color-orange); }
.footer-bottom {
    margin-top: 42px;
    padding-top: 22px;
    border-top: 1px solid var(--color-border);
    font-size: .88rem;
}
.footer-bottom p { margin: 0; }

.nav-links,
.pagination { margin-top: 34px; }
.page-numbers {
    display: inline-flex;
    padding: 8px 12px;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    margin-right: 6px;
}
.page-numbers.current { background: var(--color-orange); color: #fff; }

@media (max-width: 900px) {
    .header-inner { min-height: 72px; }
    .menu-toggle { display: block; order: 3; }
    .main-navigation {
        position: absolute;
        top: 72px;
        left: 16px;
        right: 16px;
        display: none;
        background: var(--color-bg-soft);
        border: 1px solid var(--color-border);
        border-radius: 18px;
        padding: 18px;
        box-shadow: var(--shadow);
    }
    .main-navigation.is-open { display: block; }
    .main-navigation ul { flex-direction: column; align-items: flex-start; gap: 14px; }
    .live-button:not(.large) { margin-left: auto; }
    .lr-hero-grid,
    .hero-layout,
    .cards-grid.two,
    .cards-grid.three,
    .post-grid,
    .footer-grid { grid-template-columns: 1fr; }
    .hero-slider { min-height: auto; }
    .lr-hero { min-height: auto; padding: 58px 0; }
    .lr-hero-frame { min-height: 310px; }
    .slider-placeholder { min-height: 280px; }
    .card-highlight { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
    .container { width: min(100% - 24px, var(--container)); }
    .live-button:not(.large) { padding-inline: 13px; font-size: .82rem; }
    .section-dark,
    .section-block { padding: 48px 0; }
    .hero-actions,
    .lr-hero-actions { flex-direction: column; align-items: stretch; }
    .button-primary,
    .button-secondary { width: 100%; }
    .card-highlight { padding: 24px; }
}


/* Smart Slider dentro del Hero */
.lr-hero-slider-wrap {
    width: 100%;
    min-height: 360px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.12);
    background: linear-gradient(135deg, rgba(18,63,107,.85), rgba(201,107,53,.20));
    box-shadow: 0 28px 80px rgba(0,0,0,.35);
}

.lr-hero-slider-wrap .n2-section-smartslider,
.lr-hero-slider-wrap .n2-ss-slider,
.lr-hero-slider-wrap .n2-ss-slider-1,
.lr-hero-slider-wrap .n2-ss-slider-wrapper-inside {
    border-radius: 24px;
    overflow: hidden;
}

.lr-hero-slider-wrap img {
    display: block;
}

@media (max-width: 768px) {
    .lr-hero-slider-wrap {
        min-height: 240px;
        border-radius: 18px;
    }
}

/* =========================================================
   LaRadio Hero Fullscreen Smart Slider
   El Smart Slider deja de ser media columna y pasa a ser HERO.
   ========================================================= */
.lr-hero.lr-hero-full {
    position: relative;
    min-height: calc(100vh - 84px);
    padding: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0d0f14;
    border-bottom: 1px solid var(--color-border);
}

.lr-hero-full .lr-hero-slider-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
}

.lr-hero-full .lr-hero-slider-bg > *,
.lr-hero-full .lr-hero-slider-bg .n2-section-smartslider,
.lr-hero-full .lr-hero-slider-bg .n2-ss-align,
.lr-hero-full .lr-hero-slider-bg .n2-ss-slider,
.lr-hero-full .lr-hero-slider-bg .n2-ss-slider-wrapper-inside,
.lr-hero-full .lr-hero-slider-bg .n2-ss-slider-1,
.lr-hero-full .lr-hero-slider-bg .n2-ss-slider-2,
.lr-hero-full .lr-hero-slider-bg .n2-ss-slide,
.lr-hero-full .lr-hero-slider-bg .n2-ss-layers-container {
    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    min-height: calc(100vh - 84px) !important;
    border-radius: 0 !important;
}

.lr-hero-full .lr-hero-slider-bg img,
.lr-hero-full .lr-hero-slider-bg picture,
.lr-hero-full .lr-hero-slider-bg video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.lr-hero-full .lr-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(13,15,20,.92) 0%, rgba(13,15,20,.72) 38%, rgba(13,15,20,.20) 72%, rgba(13,15,20,.35) 100%),
        linear-gradient(180deg, rgba(13,15,20,.18) 0%, rgba(13,15,20,.24) 58%, rgba(13,15,20,.88) 100%);
}

.lr-hero-full-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding-top: 110px;
    padding-bottom: 110px;
}

.lr-hero-full-content h1 {
    max-width: 760px;
    font-size: clamp(3.2rem, 7vw, 6.8rem);
    line-height: .92;
    letter-spacing: -0.07em;
    text-shadow: 0 20px 60px rgba(0,0,0,.62);
}

.lr-hero-full-content p {
    max-width: 640px;
    font-size: clamp(1.05rem, 1.5vw, 1.35rem);
    color: rgba(242,242,242,.88);
    text-shadow: 0 10px 35px rgba(0,0,0,.55);
}

@media (max-width: 768px) {
    .lr-hero.lr-hero-full,
    .lr-hero-full .lr-hero-slider-bg > *,
    .lr-hero-full .lr-hero-slider-bg .n2-section-smartslider,
    .lr-hero-full .lr-hero-slider-bg .n2-ss-align,
    .lr-hero-full .lr-hero-slider-bg .n2-ss-slider,
    .lr-hero-full .lr-hero-slider-bg .n2-ss-slider-wrapper-inside,
    .lr-hero-full .lr-hero-slider-bg .n2-ss-slider-1,
    .lr-hero-full .lr-hero-slider-bg .n2-ss-slider-2,
    .lr-hero-full .lr-hero-slider-bg .n2-ss-slide,
    .lr-hero-full .lr-hero-slider-bg .n2-ss-layers-container {
        min-height: 78vh !important;
    }

    .lr-hero-full .lr-hero-overlay {
        background:
            linear-gradient(180deg, rgba(13,15,20,.42) 0%, rgba(13,15,20,.78) 52%, rgba(13,15,20,.95) 100%);
    }

    .lr-hero-full-content {
        padding-top: 90px;
        padding-bottom: 70px;
    }
}

/* LaRadio admin-editable home refinements */
.lr-hero-full {
    min-height: calc(100vh - 104px);
}

.lr-hero-full-content {
    max-width: 860px;
    padding-top: clamp(7rem, 11vw, 12rem);
    padding-bottom: clamp(5rem, 8vw, 9rem);
}

.lr-hero-full-content .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .45rem .8rem;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    background: rgba(13, 15, 20, .44);
    backdrop-filter: blur(8px);
    color: #f2f2f2;
    letter-spacing: .12em;
}

.lr-hero-full-content .eyebrow::before {
    content: '';
    width: .48rem;
    height: .48rem;
    border-radius: 999px;
    background: #c96b35;
    box-shadow: 0 0 18px rgba(201, 107, 53, .8);
}

.lr-hero-full-content h1 {
    max-width: 820px;
    margin-top: 1.4rem;
    font-size: clamp(3rem, 8vw, 7.4rem);
    line-height: .92;
    letter-spacing: -.08em;
}

.lr-hero-full-content p {
    max-width: 680px;
    font-size: clamp(1.05rem, 1.7vw, 1.45rem);
    line-height: 1.55;
}

.streaming-embed {
    width: min(100%, 520px);
}

.streaming-embed iframe,
.streaming-embed audio,
.streaming-embed video {
    width: 100%;
    max-width: 100%;
}

.video-placeholder iframe {
    width: 100%;
    height: 100%;
    min-height: 320px;
    border: 0;
    border-radius: 1.25rem;
}

.social-icons {
    display: flex;
    gap: .75rem;
    align-items: center;
    margin-top: 1.4rem;
}

.social-icons a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 999px;
    background: rgba(255,255,255,.04);
    color: #f2f2f2;
    text-decoration: none;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.social-icons a:hover {
    transform: translateY(-2px);
    background: rgba(201,107,53,.16);
    border-color: rgba(201,107,53,.55);
}

.social-icon {
    font-weight: 800;
    font-size: 1.1rem;
    line-height: 1;
}

.social-icon.youtube {
    font-size: .95rem;
    transform: translateX(1px);
}

.social-icon.facebook {
    font-family: Arial, sans-serif;
    font-size: 1.35rem;
}

.social-icon.whatsapp {
    font-size: 1.15rem;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .lr-hero-full {
        min-height: calc(100vh - 88px);
    }

    .lr-hero-full-content {
        padding-top: 6rem;
        padding-bottom: 5rem;
    }

    .lr-hero-full-content h1 {
        letter-spacing: -.055em;
    }

    .card-highlight {
        align-items: flex-start;
    }

    .streaming-embed {
        width: 100%;
    }
}

/* Programas CPT */
.section-actions { margin-top: 28px; display: flex; justify-content: center; }
.programa-card { overflow: hidden; }
.programa-thumb { position: relative; display: block; aspect-ratio: 16 / 10; overflow: hidden; border-radius: 18px 18px 0 0; background: linear-gradient(135deg, rgba(18,63,107,.55), rgba(201,107,53,.28)); }
.programa-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transform: scale(1.01); transition: transform .35s ease, opacity .35s ease; }
.programa-card:hover .programa-thumb img { transform: scale(1.06); opacity: .92; }
.programa-schedule { position: absolute; left: 14px; bottom: 14px; z-index: 2; display: inline-flex; align-items: center; max-width: calc(100% - 28px); padding: 8px 11px; border-radius: 999px; background: rgba(13, 15, 20, .82); color: var(--lr-text, #f2f2f2); border: 1px solid rgba(255,255,255,.12); font-size: .76rem; font-weight: 700; line-height: 1.2; backdrop-filter: blur(10px); }
.programa-card-body { padding: 20px; }
.programa-card h3 a { color: inherit; text-decoration: none; }
.programa-card h3 a:hover { color: var(--lr-orange, #c96b35); }
.programa-host { margin: 6px 0 10px; color: var(--lr-orange, #c96b35); font-size: .86rem; font-weight: 700; }
.page-hero.compact { padding: 90px 0 46px; background: radial-gradient(circle at 20% 10%, rgba(201,107,53,.16), transparent 32%), radial-gradient(circle at 80% 0%, rgba(18,63,107,.35), transparent 36%), var(--lr-bg, #0d0f14); border-bottom: 1px solid rgba(255,255,255,.08); }
.page-hero.compact h1 { max-width: 900px; margin: 8px 0 12px; font-size: clamp(2.2rem, 5vw, 4.2rem); line-height: .98; }
.page-hero.compact p { max-width: 640px; color: var(--lr-muted, rgba(242,242,242,.75)); font-size: 1.06rem; }
.programa-single-hero { padding: 88px 0 54px; background: radial-gradient(circle at 75% 20%, rgba(201,107,53,.18), transparent 34%), linear-gradient(135deg, rgba(18,63,107,.36), rgba(13,15,20,1) 58%); border-bottom: 1px solid rgba(255,255,255,.08); }
.programa-single-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr); gap: 42px; align-items: center; }
.programa-single-copy h1 { margin: 10px 0 18px; font-size: clamp(2.3rem, 5.4vw, 5.2rem); line-height: .96; }
.programa-single-copy p { max-width: 680px; color: var(--lr-muted, rgba(242,242,242,.78)); font-size: 1.08rem; }
.programa-meta-box { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 20px; }
.programa-meta-box span { padding: 9px 12px; border-radius: 999px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); color: var(--lr-text, #f2f2f2); font-size: .86rem; font-weight: 700; }
.programa-single-image { border-radius: 28px; overflow: hidden; border: 1px solid rgba(255,255,255,.12); box-shadow: 0 24px 80px rgba(0,0,0,.34); }
.programa-single-image img { display: block; width: 100%; height: auto; }
.narrow-content { max-width: 820px; }
.pagination-wrap { margin-top: 34px; }
@media (max-width: 860px) { .programa-single-grid { grid-template-columns: 1fr; } }

/* =========================================================
   LaRadio v0.6.3 - Hero operativo y home inteligente
   ========================================================= */
.lr-operative-hero {
    position: relative;
    overflow: hidden;
}

.lr-operative-hero.has-thumb::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(20,24,33,.96) 0%, rgba(20,24,33,.82) 48%, rgba(20,24,33,.52) 100%);
    z-index: 1;
}

.lr-operative-hero > * {
    position: relative;
    z-index: 2;
}

.lr-operative-hero-copy {
    min-width: 0;
    max-width: 720px;
}

.lr-operative-hero-desc {
    margin: 16px 0 0;
    max-width: 680px;
    color: var(--color-muted);
}

.lr-operative-hero-media {
    position: absolute;
    inset: 0 0 0 auto;
    width: min(48%, 620px);
    opacity: .34;
    z-index: 0;
}

.lr-operative-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 900px) {
    .lr-operative-hero-media {
        width: 100%;
        opacity: .18;
    }
}

/* v1.0.5 — Hero operativo más explícito */
.lr-operative-hero {
    min-height: 190px;
    align-items: center;
    gap: 28px;
}

.lr-operative-hero-main {
    margin-top: 18px;
    max-width: 620px;
}

.lr-operative-hero-main h2 {
    margin: 6px 0 8px;
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    line-height: 1.05;
}

.lr-operative-hero .lr-now-on-air-wrap {
    margin-bottom: 4px;
}

.lr-operative-hero-media {
    width: min(360px, 34vw);
    aspect-ratio: 16 / 9;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
    border: 1px solid rgba(255, 255, 255, .12);
}

.lr-operative-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 900px) {
    .lr-operative-hero {
        min-height: auto;
        align-items: flex-start;
    }

    .lr-operative-hero-media {
        width: 100%;
        max-width: 420px;
    }
}
