    .media-hub-shell {
        position: relative;
        min-height: calc(100vh - 220px);
        background:
            linear-gradient(180deg, rgba(248, 250, 252, 0.98) 0%, rgba(241, 245, 249, 0.96) 62%, rgba(236, 242, 248, 0.98) 100%);
    }
    .media-hub-shell::before {
        content: "";
        position: absolute;
        inset: 0 0 auto 0;
        height: 540px;
        background:
            radial-gradient(circle at top left, rgba(14, 165, 233, 0.18), transparent 42%),
            radial-gradient(circle at top right, rgba(59, 130, 246, 0.14), transparent 38%),
            linear-gradient(180deg, rgba(15, 23, 42, 0.06), transparent 86%);
        pointer-events: none;
    }
    [data-theme="dark"] .media-hub-shell {
        background:
            linear-gradient(180deg, rgba(2, 6, 23, 0.98) 0%, rgba(15, 23, 42, 0.97) 62%, rgba(15, 23, 42, 0.99) 100%);
    }
    .media-hub-topbar {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
        position: relative;
        z-index: 1;
    }
    .media-hub-kicker {
        display: inline-flex;
        align-items: center;
        gap: 0.55rem;
        padding: 0.45rem 0.85rem;
        border-radius: 999px;
        background: rgba(15, 23, 42, 0.08);
        color: var(--nex-primary, #0d6efd);
        font-weight: 700;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        font-size: 0.78rem;
        margin-bottom: 0.9rem;
    }
    .media-hub-subtitle {
        max-width: 760px;
        font-size: 1.02rem;
        color: var(--nex-muted, #6c757d);
        margin-top: 0.75rem;
    }
    .media-hub-nav {
        display: flex;
        flex-wrap: wrap;
        gap: 0.65rem;
        margin-bottom: 1.5rem;
        position: relative;
        z-index: 1;
    }
    .media-search-shell {
        position: relative;
        z-index: 2;
        margin-bottom: 1.75rem;
        padding: 1rem;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.82);
        border: 1px solid rgba(148, 163, 184, 0.18);
        box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
        backdrop-filter: blur(18px);
    }
    .media-search-bar {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 0.9rem;
        align-items: center;
    }
    .media-search-input-wrap {
        position: relative;
    }
    .media-search-input {
        width: 100%;
        min-height: 60px;
        border-radius: 18px;
        border: 1px solid rgba(148, 163, 184, 0.24);
        background: rgba(248, 250, 252, 0.92);
        padding: 0.95rem 1rem 0.95rem 3rem;
        font-size: 1rem;
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
    }
    .media-search-input:focus {
        outline: none;
        border-color: rgba(59, 130, 246, 0.42);
        box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
    }
    .media-search-icon {
        position: absolute;
        top: 50%;
        left: 1rem;
        transform: translateY(-50%);
        color: var(--nex-muted, #64748b);
    }
    .media-search-filters {
        display: flex;
        gap: 0.55rem;
        flex-wrap: wrap;
        justify-content: flex-end;
    }
    .media-search-filter {
        border: 1px solid rgba(148, 163, 184, 0.22);
        background: rgba(255,255,255,0.88);
        color: #1e293b;
        border-radius: 999px;
        padding: 0.65rem 1rem;
        font-weight: 700;
        font-size: 0.9rem;
    }
    .media-search-filter.is-active {
        background: linear-gradient(135deg, #1d4ed8, #2563eb);
        color: #fff;
        border-color: transparent;
        box-shadow: 0 12px 24px rgba(37, 99, 235, 0.24);
    }
    .media-search-hint {
        margin-top: 0.75rem;
        font-size: 0.88rem;
        color: var(--nex-muted, #64748b);
    }
    .media-search-suggestions {
        position: absolute;
        top: calc(100% + 0.55rem);
        left: 0;
        right: 0;
        z-index: 30;
        display: none;
        border-radius: 20px;
        background: rgba(255,255,255,0.98);
        border: 1px solid rgba(148, 163, 184, 0.2);
        box-shadow: 0 22px 54px rgba(15, 23, 42, 0.14);
        overflow: hidden;
    }
    .media-search-suggestions.is-visible {
        display: block;
    }
    .media-search-suggestion {
        display: grid;
        grid-template-columns: 56px minmax(0, 1fr) auto;
        gap: 0.85rem;
        align-items: center;
        padding: 0.8rem 0.95rem;
        text-decoration: none;
        color: inherit;
        border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    }
    .media-search-suggestion:last-child {
        border-bottom: none;
    }
    .media-search-suggestion:hover {
        background: rgba(248, 250, 252, 0.96);
        color: inherit;
    }
    .media-search-suggestion-thumb {
        width: 56px;
        height: 56px;
        object-fit: contain;
        object-position: center;
        border-radius: 14px;
        background: #0f172a;
    }
    .media-search-suggestion-type {
        font-size: 0.72rem;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        color: var(--nex-muted, #64748b);
        font-weight: 800;
    }
    .media-search-results {
        display: none;
        position: relative;
        z-index: 1;
        margin-bottom: 2rem;
    }
    .media-search-results.is-visible {
        display: block;
    }
    .media-search-results-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1rem;
    }
    .media-search-empty {
        border-radius: 22px;
        padding: 1.5rem;
        background: rgba(255,255,255,0.9);
        border: 1px solid rgba(148, 163, 184, 0.18);
        color: var(--nex-muted, #64748b);
        box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
    }
    .media-nav-chip {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.7rem 1rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.78);
        border: 1px solid rgba(148, 163, 184, 0.24);
        text-decoration: none;
        color: inherit;
        box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    }
    .media-nav-chip:hover {
        color: inherit;
        transform: translateY(-1px);
    }
    .media-nav-chip strong {
        display: block;
        font-size: 0.95rem;
    }
    .media-nav-chip span {
        font-size: 0.8rem;
        color: var(--nex-muted, #6c757d);
    }
    .media-stat-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1rem;
        min-width: 320px;
    }
    .media-stat-card {
        background: rgba(255, 255, 255, 0.82);
        border: 1px solid rgba(148, 163, 184, 0.2);
        border-radius: 20px;
        padding: 1rem 1.1rem;
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
        backdrop-filter: blur(16px);
    }
    .media-stat-label {
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        color: var(--nex-muted, #6c757d);
        margin-bottom: 0.3rem;
    }
    .media-stat-value {
        font-size: 1.55rem;
        font-weight: 800;
        line-height: 1;
    }
    .media-briefing-toplists {
        display: grid;
        gap: 0.9rem;
        margin-top: 1rem;
    }
    .media-briefing-toplist {
        display: grid;
        gap: 0.45rem;
    }
    .media-briefing-toplist-label {
        font-size: 0.72rem;
        font-weight: 900;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: #475569;
    }
    .media-briefing-toplist-items {
        display: grid;
        gap: 0.45rem;
    }
    .media-briefing-top-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.9rem;
        padding: 0.55rem 0.7rem;
        border-radius: 0.95rem;
        background: rgba(248, 250, 252, 0.86);
        border: 1px solid rgba(148, 163, 184, 0.14);
        text-decoration: none;
        color: inherit;
        transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .media-briefing-top-item:hover {
        transform: translateY(-1px);
        color: inherit;
        border-color: rgba(59, 130, 246, 0.26);
        box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
    }
    .media-briefing-top-item__main {
        min-width: 0;
        display: flex;
        align-items: center;
        gap: 0.75rem;
        flex: 1 1 auto;
    }
    .media-briefing-top-item__thumb {
        width: 78px;
        height: 50px;
        flex: 0 0 78px;
        border-radius: 0.8rem;
        object-fit: contain;
        object-position: center;
        background: #0f172a;
        box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
    }
    .media-briefing-top-item__title {
        min-width: 0;
        font-size: 0.84rem;
        font-weight: 700;
        color: #0f172a;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .media-briefing-top-item__views {
        flex: 0 0 auto;
        font-size: 0.76rem;
        font-weight: 800;
        color: #2563eb;
        white-space: nowrap;
    }
    .media-hub-hero {
        position: relative;
        height: 68vh;
        min-height: 460px;
        max-height: 680px;
        overflow: hidden;
        border-radius: 28px;
        margin-bottom: 2rem;
        box-shadow: 0 26px 70px rgba(15, 23, 42, 0.16);
        z-index: 1;
    }
    .media-hub-hero-track {
        position: relative;
        height: 100%;
    }
    .media-hero-slide {
        position: absolute;
        inset: 0;
        height: 100%;
        display: flex;
        align-items: flex-end;
        transform-origin: center center;
        transition:
            opacity 0.65s ease,
            transform 0.9s cubic-bezier(.22, 1, .36, 1),
            filter 0.9s cubic-bezier(.22, 1, .36, 1);
        opacity: 0;
        pointer-events: none;
        transform: scale(1.03);
        filter: saturate(0.9);
        z-index: 1;
    }
    .media-hero-slide:first-child {
        opacity: 1;
        pointer-events: auto;
        z-index: 2;
    }
    .media-hero-slide.is-active {
        opacity: 1;
        pointer-events: auto;
        transform: scale(1);
        filter: none;
        z-index: 2;
    }
    .media-hero-media {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
        display: block;
        background: #020617;
    }
    .media-hero-overlay {
        position: absolute;
        inset: 0;
        background:
            linear-gradient(180deg, rgba(2, 6, 23, 0.08), rgba(2, 6, 23, 0.72) 56%, rgba(2, 6, 23, 0.96)),
            linear-gradient(90deg, rgba(2, 6, 23, 0.68), rgba(2, 6, 23, 0.22) 58%, transparent);
        border-radius: inherit;
        transform-origin: center center;
        transition:
            opacity 1.05s cubic-bezier(.22, 1, .36, 1),
            transform 1.05s cubic-bezier(.22, 1, .36, 1),
            filter 1.05s cubic-bezier(.22, 1, .36, 1);
        opacity: 0.92;
        filter: saturate(0.92);
        transform: scale(1.03);
    }
    .media-hero-content {
        position: relative;
        z-index: 2;
        padding: 2rem 2rem 2.3rem;
        width: 100%;
        color: white;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 1.5rem;
        align-items: end;
        opacity: 1;
        transform: translateY(0) scale(1);
        transition:
            opacity .9s cubic-bezier(.22, 1, .36, 1),
            transform .9s cubic-bezier(.22, 1, .36, 1);
    }
    .media-hero-badge-row {
        display: flex;
        flex-wrap: wrap;
        gap: 0.6rem;
        margin-bottom: 1rem;
    }
    .media-hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
        padding: 0.42rem 0.8rem;
        border-radius: 999px;
        background: rgba(15, 23, 42, 0.38);
        border: 1px solid rgba(255, 255, 255, 0.16);
        color: white;
        font-weight: 700;
        font-size: 0.78rem;
        letter-spacing: 0.04em;
        text-transform: uppercase;
    }
    .media-hero-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
        margin-top: 1.35rem;
    }
    .media-hero-glance {
        display: grid;
        gap: 0.75rem;
        min-width: 260px;
    }
    .media-glance-card {
        background: rgba(15, 23, 42, 0.42);
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 18px;
        padding: 0.95rem 1rem;
        backdrop-filter: blur(16px);
        transition: transform .9s cubic-bezier(.22, 1, .36, 1), opacity .9s cubic-bezier(.22, 1, .36, 1);
    }
    .media-hero-slide .media-glance-card {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    .media-hero-slide.is-active .media-hero-overlay,
    .media-hero-slide:first-child .media-hero-overlay {
        opacity: 1;
        filter: saturate(1);
        transform: scale(1);
    }
    .media-hub-hero-pagination {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 1rem;
        z-index: 3;
        display: flex;
        justify-content: center;
        gap: 0.5rem;
    }
    .media-hub-hero-dot {
        width: 10px;
        height: 10px;
        border: 0;
        border-radius: 999px;
        background: rgba(255,255,255,0.38);
        box-shadow: inset 0 0 0 1px rgba(255,255,255,0.2);
        transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    }
    .media-hub-hero-dot.is-active {
        background: #fff;
        transform: scale(1.15);
        box-shadow: 0 0 0 4px rgba(255,255,255,0.16);
    }
    .media-glance-label {
        font-size: 0.74rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: rgba(255, 255, 255, 0.68);
        margin-bottom: 0.25rem;
    }
    .media-glance-value {
        font-size: 0.96rem;
        font-weight: 700;
        line-height: 1.35;
    }
    .media-section {
        margin-bottom: 3rem;
        scroll-margin-top: 110px;
        position: relative;
        z-index: 1;
    }
    .media-rail-header {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 1rem;
        margin-bottom: 1.1rem;
    }
    .media-rail-title {
        font-size: 1.55rem;
        font-weight: 800;
        margin: 0 0 0.2rem;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }
    .media-rail-title i {
        color: var(--nex-primary, #0d6efd);
    }
    .media-rail-copy {
        color: var(--nex-muted, #6c757d);
        max-width: 720px;
    }
    .media-rail-link {
        white-space: nowrap;
    }
    .media-rail-scroller {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: minmax(280px, 340px);
        gap: 1rem;
        overflow-x: auto;
        padding: 0.35rem 0.1rem 0.9rem;
        scroll-snap-type: x proximity;
        scrollbar-width: thin;
    }
    .media-rail-item {
        scroll-snap-align: start;
    }
    .media-rail-scroller::-webkit-scrollbar {
        height: 10px;
    }
    .media-rail-scroller::-webkit-scrollbar-thumb {
        background: rgba(100, 116, 139, 0.35);
        border-radius: 999px;
    }
    .media-rail-scroller::-webkit-scrollbar-track {
        background: rgba(148, 163, 184, 0.12);
        border-radius: 999px;
    }
    .media-empty-state {
        position: relative;
        z-index: 1;
        background: rgba(255, 255, 255, 0.92);
        border: 1px solid rgba(148, 163, 184, 0.18);
        border-radius: 24px;
        padding: 2rem;
        box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
        backdrop-filter: blur(18px);
    }
    .media-empty-grid {
        display: grid;
        grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
        gap: 1.5rem;
        align-items: stretch;
    }
    .media-empty-stage {
        border-radius: 22px;
        min-height: 340px;
        padding: 1.5rem;
        background:
            radial-gradient(circle at top left, rgba(59, 130, 246, 0.16), transparent 38%),
            linear-gradient(180deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.96));
        color: #fff;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
    }
    .media-empty-stage-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
        padding: 0.42rem 0.8rem;
        border-radius: 999px;
        background: rgba(255,255,255,0.12);
        font-size: 0.78rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        margin-bottom: auto;
    }
    .media-empty-side {
        display: grid;
        gap: 1rem;
    }
    .media-empty-card {
        border-radius: 18px;
        padding: 1.1rem 1.15rem;
        background: rgba(15, 23, 42, 0.04);
        border: 1px solid rgba(148, 163, 184, 0.14);
    }
    .media-empty-card h4 {
        font-size: 1rem;
        font-weight: 800;
        margin-bottom: 0.4rem;
    }
    .media-empty-card p {
        margin: 0;
        color: var(--nex-muted, #64748b);
        line-height: 1.6;
    }
    .media-card {
        display: block;
        text-decoration: none;
        color: inherit;
        transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
        height: 100%;
        border-radius: 18px;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.94);
        border: 1px solid rgba(148, 163, 184, 0.18);
        box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
    }
    .media-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 28px 54px rgba(15, 23, 42, 0.14);
        border-color: rgba(59, 130, 246, 0.28);
        color: inherit;
    }
    .media-thumbnail-wrap {
        position: relative;
        aspect-ratio: 16/9;
        background: #000;
        overflow: hidden;
    }
    .media-thumbnail {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
        transition: transform 0.55s ease;
        background: #020617;
    }
    .media-card:hover .media-thumbnail {
        transform: none;
    }
    .media-card-gradient {
        position: absolute;
        inset: auto 0 0 0;
        height: 60%;
        background: linear-gradient(180deg, transparent, rgba(2, 6, 23, 0.86));
        pointer-events: none;
    }
    .media-card-badges {
        position: absolute;
        top: 0.75rem;
        left: 0.75rem;
        right: 0.75rem;
        display: flex;
        justify-content: space-between;
        gap: 0.55rem;
        pointer-events: none;
    }
    .media-chip {
        display: inline-flex;
        align-items: center;
        border-radius: 999px;
        padding: 0.3rem 0.65rem;
        font-size: 0.74rem;
        font-weight: 700;
        backdrop-filter: blur(10px);
        color: white;
    }
    .media-chip-type {
        background: rgba(220, 38, 38, 0.86);
    }
    .media-chip-meta {
        background: rgba(2, 6, 23, 0.62);
    }
    .media-chip-analytics {
        background: rgba(15, 23, 42, 0.82);
        box-shadow: 0 12px 24px rgba(15, 23, 42, 0.16);
    }
    .media-chip-analytics.is-trending {
        background: linear-gradient(135deg, rgba(220, 38, 38, 0.92), rgba(249, 115, 22, 0.92));
    }
    .media-chip-analytics.is-popular {
        background: linear-gradient(135deg, rgba(17, 72, 218, 0.92), rgba(14, 116, 144, 0.92));
    }
    .media-play-icon {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, 0.16);
        opacity: 0;
        transition: opacity 0.2s ease;
    }
    .media-card:hover .media-play-icon {
        opacity: 1;
    }
    .media-play-icon i {
        font-size: 3rem;
        color: white;
        filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.42));
    }
    .media-info {
        padding: 1rem 1rem 1.05rem;
    }
    .media-title {
        font-weight: 800;
        font-size: 1rem;
        margin-bottom: 0.45rem;
        line-height: 1.35;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .media-summary {
        font-size: 0.9rem;
        color: var(--nex-muted, #6c757d);
        line-height: 1.55;
        min-height: 2.8rem;
        margin-bottom: 0.7rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .media-meta {
        font-size: 0.84rem;
        color: var(--nex-muted, #6c757d);
        display: flex;
        align-items: center;
        gap: 0.85rem;
        flex-wrap: wrap;
    }
    [data-theme="dark"] .media-card,
    [data-theme="dark"] .media-nav-chip,
    [data-theme="dark"] .media-stat-card,
    [data-theme="dark"] .media-search-shell,
    [data-theme="dark"] .media-search-suggestions,
    [data-theme="dark"] .media-search-empty {
        background: rgba(15, 23, 42, 0.88);
        border-color: rgba(148, 163, 184, 0.16);
        color: #fff;
    }
    [data-theme="dark"] .media-summary,
    [data-theme="dark"] .media-meta,
    [data-theme="dark"] .media-hub-subtitle,
    [data-theme="dark"] .media-nav-chip span,
    [data-theme="dark"] .media-stat-label,
    [data-theme="dark"] .media-briefing-toplist-label,
    [data-theme="dark"] .media-rail-copy,
    [data-theme="dark"] .media-search-hint,
    [data-theme="dark"] .media-search-suggestion-type {
        color: rgba(226, 232, 240, 0.72);
    }
    [data-theme="dark"] .media-briefing-top-item {
        background: rgba(15, 23, 42, 0.76);
        border-color: rgba(148, 163, 184, 0.16);
    }
    [data-theme="dark"] .media-briefing-top-item__title {
        color: #f8fafc;
    }
    [data-theme="dark"] .media-briefing-top-item__views {
        color: #93c5fd;
    }
    [data-theme="dark"] .media-search-input,
    [data-theme="dark"] .media-search-filter {
        background: rgba(15, 23, 42, 0.96);
        border-color: rgba(148, 163, 184, 0.18);
        color: #fff;
    }
    [data-theme="dark"] .media-search-suggestion:hover {
        background: rgba(30, 41, 59, 0.96);
    }
    @media (max-width: 991.98px) {
        .media-hub-shell {
            padding-inline: 0.35rem;
        }
        .media-hub-topbar,
        .media-hero-content {
            grid-template-columns: 1fr;
        }
        .media-hub-nav,
        .media-briefing-toplists {
            grid-template-columns: 1fr;
        }
        .media-empty-grid {
            grid-template-columns: 1fr;
        }
        .media-stat-grid {
            width: 100%;
            min-width: 0;
        }
        .media-search-bar,
        .media-search-results-grid {
            grid-template-columns: 1fr;
        }
        .media-hub-hero {
            min-height: 520px;
            height: auto;
        }
    }
    @media (max-width: 767.98px) {
        .media-hub-topbar {
            flex-direction: column;
            align-items: stretch;
            gap: 1rem;
            margin-bottom: 1.25rem;
        }
        .media-hub-kicker {
            width: fit-content;
            max-width: 100%;
        }
        .media-hub-subtitle {
            max-width: 100%;
            font-size: 0.95rem;
            line-height: 1.75;
        }
        .media-hub-nav {
            gap: 0.8rem;
            margin-bottom: 1.25rem;
        }
        .media-stat-grid {
            grid-template-columns: 1fr;
        }
        .media-nav-chip,
        .media-stat-card,
        .media-search-shell,
        .media-empty-state,
        .media-card {
            border-radius: 20px;
        }
        .media-nav-chip {
            padding: 1rem;
        }
        .media-search-shell,
        .media-empty-state {
            padding: 1rem;
        }
        .media-search-bar {
            gap: 0.85rem;
        }
        .media-search-input {
            min-height: 54px;
            padding-right: 1rem;
            font-size: 0.98rem;
        }
        .media-search-filters {
            flex-wrap: nowrap;
            overflow-x: auto;
            padding-bottom: 0.2rem;
            scrollbar-width: none;
        }
        .media-search-filters::-webkit-scrollbar {
            display: none;
        }
        .media-search-filter {
            flex: 0 0 auto;
        }
        .media-hub-hero {
            display: block;
            height: auto;
            min-height: 420px;
            border-radius: 24px;
        }
        .media-hub-hero-track {
            min-height: inherit;
        }
        .media-hero-slide {
            min-height: inherit;
        }
        .media-hero-content {
            padding: 1.2rem;
            gap: 1rem;
        }
        .media-hero-content h2 {
            font-size: clamp(1.5rem, 7vw, 2rem);
            line-height: 1.18;
            margin-bottom: 0.65rem;
        }
        .media-hero-badge-row,
        .media-hero-actions {
            gap: 0.55rem;
        }
        .media-hero-glance {
            min-width: 0;
            grid-template-columns: 1fr;
        }
        .media-glance-card {
            border-radius: 16px;
            padding: 0.85rem 0.95rem;
        }
        .media-section {
            margin-bottom: 2rem;
            scroll-margin-top: 88px;
        }
        .media-rail-header {
            align-items: flex-start;
            gap: 0.65rem;
            margin-bottom: 0.9rem;
        }
        .media-rail-title {
            font-size: 1.22rem;
            line-height: 1.25;
            gap: 0.55rem;
        }
        .media-rail-copy {
            font-size: 0.92rem;
            line-height: 1.65;
        }
        .media-rail-scroller {
            grid-auto-columns: minmax(84vw, 84vw);
            gap: 0.85rem;
            padding-bottom: 0.7rem;
        }
        .media-search-filters {
            justify-content: flex-start;
        }
        .media-search-suggestion {
            grid-template-columns: 48px minmax(0, 1fr);
            gap: 0.7rem;
            padding-inline: 0.85rem;
        }
        .media-search-suggestion > span:last-child {
            display: none;
        }
        .media-search-results-grid {
            gap: 0.9rem;
        }
        .media-card-badges {
            top: 0.65rem;
            left: 0.65rem;
            right: 0.65rem;
        }
        .media-info {
            padding: 0.9rem 0.9rem 1rem;
        }
        .media-summary {
            min-height: 0;
        }
        .media-briefing-top-item {
            display: grid;
            grid-template-columns: minmax(0, 1fr);
            align-items: flex-start;
            gap: 0.75rem;
            width: 100%;
            min-width: 0;
            overflow: hidden;
            padding: 0.9rem;
        }
        .media-briefing-toplist-items {
            min-width: 0;
            width: 100%;
            overflow: hidden;
        }
        .media-briefing-top-item__main {
            width: 100%;
            min-width: 0;
        }
        .media-briefing-top-item__views {
            width: 100%;
            min-width: 0;
            padding-top: 0.15rem;
            white-space: normal;
            word-break: break-word;
        }
        .media-briefing-top-item__thumb {
            width: 100%;
            height: auto;
            aspect-ratio: 16 / 9;
            max-height: 160px;
            object-fit: contain;
        }
        .media-stat-card.d-flex.flex-column.justify-content-between {
            height: auto !important;
            min-height: 0;
            justify-content: flex-start !important;
            gap: 1rem;
        }
        .media-empty-stage {
            min-height: 240px;
            padding: 1.1rem;
        }
    }
    @media (max-width: 575.98px) {
        .media-hub-shell {
            padding-inline: 0.15rem;
        }
        .media-hub-hero {
            min-height: 380px;
            border-radius: 20px;
        }
        .media-hub-kicker,
        .media-hero-badge,
        .media-chip {
            font-size: 0.72rem;
        }
        .media-search-shell,
        .media-empty-state,
        .media-card,
        .media-nav-chip,
        .media-stat-card {
            border-radius: 18px;
        }
        .media-hero-content {
            padding: 1rem;
        }
        .media-rail-scroller {
            grid-auto-columns: minmax(88vw, 88vw);
        }
        .media-search-input {
            min-height: 50px;
            padding-left: 2.6rem;
        }
        .media-search-icon {
            left: 0.9rem;
        }
        .media-hero-actions .btn,
        .media-rail-link .btn {
            width: 100%;
            justify-content: center;
        }
    }
