/* ==========================================================================
   TBS SAN JUAN — VIDEOS
   Página: /videos/
   ========================================================================== */

.videos-page {
    --videos-bg: var(--bg-base, #050506);
    --videos-surface: var(--bg-surface, #101014);
    --videos-border: var(--border-subtle, rgba(255, 255, 255, 0.10));
    --videos-text: var(--text-main, #ffffff);
    --videos-muted: var(--text-muted, rgba(255, 255, 255, 0.62));
    --videos-red: var(--primary-red, #e6192b);
    --videos-red-glow: var(--primary-red-glow, rgba(230, 25, 43, 0.42));
    --videos-gold: var(--accent-gold, #d4af37);

    min-height: 100vh;
    color: var(--videos-text);
    background:
        radial-gradient(circle at 50% 0%, rgba(230, 25, 43, 0.16), transparent 34%),
        radial-gradient(circle at 10% 18%, rgba(212, 175, 55, 0.08), transparent 28%),
        radial-gradient(circle at 92% 42%, rgba(230, 25, 43, 0.08), transparent 28%),
        var(--videos-bg);
    overflow-x: hidden;
}

.videos-page *,
.videos-page *::before,
.videos-page *::after {
    box-sizing: border-box;
}

.videos-container {
    width: min(1240px, calc(100% - 40px));
    margin-inline: auto;
}

.videos-scoreboard-wrap {
    position: relative;
    z-index: 5;
}

/* ==========================================================================
   HERO
   ========================================================================== */

.videos-hero {
    position: relative;
    overflow: hidden;
    padding: 82px 0 48px;
    text-align: center;
}

.videos-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.045), transparent),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 118px);
    mask-image: linear-gradient(to bottom, #000, transparent 80%);
}

.videos-hero__inner {
    position: relative;
    z-index: 1;
}

.videos-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 16px;
    padding: 8px 18px;
    border: 1px solid rgba(212, 175, 55, 0.34);
    border-radius: 999px;
    color: var(--videos-gold);
    background: rgba(212, 175, 55, 0.08);
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.videos-hero__eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--videos-red);
    box-shadow: 0 0 14px var(--videos-red-glow);
}

.videos-hero__title {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(2.65rem, 6.6vw, 5.8rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-shadow: 0 18px 42px rgba(0, 0, 0, 0.72);
}

.videos-hero__title span {
    color: var(--videos-red);
    text-shadow: 0 0 26px var(--videos-red-glow);
}

.videos-hero__desc {
    max-width: 780px;
    margin: 18px auto 0;
    color: var(--videos-muted);
    font-size: 1.02rem;
    line-height: 1.75;
}

.videos-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 720px;
    margin: 30px auto 0;
}

.videos-hero-stat {
    padding: 17px 14px;
    border: 1px solid var(--videos-border);
    border-radius: 18px;
    background:
        radial-gradient(circle at top, rgba(212, 175, 55, 0.08), transparent 46%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.060), rgba(255, 255, 255, 0.020));
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

.videos-hero-stat strong {
    display: block;
    color: #fff;
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.7rem);
    font-weight: 900;
    line-height: 1;
}

.videos-hero-stat span {
    display: block;
    margin-top: 7px;
    color: var(--videos-muted);
    font-size: 0.73rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

/* ==========================================================================
   LAYOUT
   ========================================================================== */

.videos-section {
    padding: 0 0 90px;
}

.videos-layout {
    display: block;
}

.videos-main,
.videos-sidebar {
    min-width: 0;
}

.videos-sidebar {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 42px;
}

.videos-sidebar-card {
    overflow: hidden;
    padding: 18px;
    border: 1px solid var(--videos-border);
    border-radius: 20px;
    background:
        radial-gradient(circle at top left, rgba(212, 175, 55, 0.08), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.018));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.videos-sidebar-widget+.videos-sidebar-widget,
.videos-sidebar-card .widget+.widget {
    margin-top: 18px;
}

.videos-sidebar-widget__title,
.videos-sidebar-card .widget-title {
    margin: 0 0 12px;
    color: var(--videos-gold);
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.videos-sidebar-card img,
.videos-sidebar-card iframe,
.videos-sidebar-card ins {
    max-width: 100%;
}

/* ==========================================================================
   SECTION HEAD
   ========================================================================== */

.videos-section-head {
    margin-bottom: 18px;
}

.videos-section-head span {
    display: block;
    margin-bottom: 4px;
    color: var(--videos-gold);
    font-family: var(--font-heading);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.videos-section-head h2 {
    margin: 0;
    color: #fff;
    font-family: var(--font-heading);
    font-size: clamp(1.55rem, 3vw, 2.3rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

/* ==========================================================================
   CATEGORIES
   ========================================================================== */

.videos-categories {
    margin-bottom: 28px;
    padding: 22px;
    border: 1px solid var(--videos-border);
    border-radius: 24px;
    background:
        radial-gradient(circle at top left, rgba(230, 25, 43, 0.10), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.018));
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.videos-category-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
}

.videos-category-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    max-width: 100%;
    padding: 9px 15px;
    border: 1px solid var(--videos-border);
    border-radius: 999px;
    color: #fff;
    background: rgba(0, 0, 0, 0.30);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: 0.22s ease;
}

.videos-category-chip:hover,
.videos-category-chip.is-active {
    border-color: rgba(212, 175, 55, 0.46);
    background: rgba(212, 175, 55, 0.10);
    color: var(--videos-gold);
    transform: translateY(-1px);
}

/* ==========================================================================
   HORIZONTAL ADS
   ========================================================================== */

.videos-horizontal-ad {
    width: 100%;
    margin: 34px 0;
}

.videos-horizontal-ad__inner {
    width: min(970px, 100%);
    min-height: 90px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid var(--videos-border);
    border-radius: 18px;
    background:
        radial-gradient(circle at top, rgba(212, 175, 55, 0.08), transparent 52%),
        rgba(255, 255, 255, 0.035);
}

.videos-horizontal-ad-widget {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.videos-horizontal-ad-widget img,
.videos-horizontal-ad-widget iframe,
.videos-horizontal-ad-widget ins,
.videos-horizontal-ad-widget div {
    max-width: 100%;
}

.videos-horizontal-ad-widget img {
    height: auto;
    display: block;
}

.videos-horizontal-ad-widget__title {
    display: none;
}

/* ==========================================================================
   NCAA STYLE VIDEO STAGE — FULL WIDTH
   ========================================================================== */

.videos-stage {
    width: 100vw;
    margin: 0 0 42px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 38px max(20px, calc((100vw - 1240px) / 2)) 42px;
    border: 0;
    border-radius: 0;
    background:
        radial-gradient(circle at 18% 0%, rgba(230, 25, 43, 0.10), transparent 30%),
        linear-gradient(180deg, #242527 0%, #1f2022 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        inset 0 -1px 0 rgba(255, 255, 255, 0.06);
}

.videos-stage>.videos-section-head {
    margin-bottom: 18px;
}

.videos-stage-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(320px, 0.65fr);
    grid-template-areas: "player info";
    align-items: stretch;
    gap: 34px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.videos-stage-player {
    grid-area: player;
    position: relative;
    min-height: 430px;
    overflow: hidden;
    border-radius: 0;
    background: #050506;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}

.videos-stage-player iframe,
.videos-stage-player video,
.videos-stage-player embed,
.videos-stage-player object {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 430px;
    aspect-ratio: 16 / 9;
    border: 0;
}

.videos-stage-player .wp-block-embed,
.videos-stage-player .wp-block-embed__wrapper {
    width: 100%;
    height: 100%;
    margin: 0;
}

.videos-stage-player blockquote {
    max-width: 100% !important;
    margin: 0 auto !important;
}

.videos-stage-fallback {
    position: relative;
    display: block;
    width: 100%;
    min-height: 430px;
    color: inherit;
    text-decoration: none;
    background: #050506;
}

.videos-stage-fallback img {
    width: 100%;
    min-height: 430px;
    display: block;
    object-fit: cover;
    opacity: 0.72;
}

.videos-stage-fallback span {
    width: 100%;
    min-height: 430px;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.28);
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    background:
        radial-gradient(circle at top, rgba(212, 175, 55, 0.12), transparent 46%),
        #08080a;
}

.videos-stage-fallback b,
.videos-playlist-card__media b,
.videos-recommended-card__media b {
    position: absolute;
    left: 50%;
    top: 50%;
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(255, 255, 255, 0.72);
    border-radius: 50%;
    color: #fff;
    background: rgba(230, 25, 43, 0.82);
    box-shadow: 0 0 28px rgba(230, 25, 43, 0.35);
    font-size: 1.15rem;
}

.videos-stage-info {
    grid-area: info;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 8px 0;
    border: 0;
    background: transparent;
}

.videos-stage-info__category {
    display: block;
    margin-bottom: 11px;
    color: var(--videos-gold);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.videos-stage-info h2 {
    margin: 0 0 12px;
    color: #fff;
    font-family: var(--font-heading);
    font-size: clamp(2.15rem, 3.6vw, 3.45rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: 0.01em;
    text-transform: none;
}

.videos-stage-info__date {
    display: block;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.82);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.videos-stage-info p {
    margin: 0 0 22px;
    max-width: 520px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.96rem;
    line-height: 1.65;
}

.videos-stage-info p:empty {
    display: none;
}

.videos-stage-info p a {
    color: var(--videos-gold);
}

.videos-playlist-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    max-width: calc((100% - 354px) * 0.72);
    margin: 18px 0 14px;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.videos-playlist-head__title {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.videos-playlist-head__title span {
    color: #fff;
}

.videos-playlist-head__title small {
    display: none;
    color: rgba(255, 255, 255, 0.55);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
}

.videos-playlist-head__count {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.videos-playlist-head__count strong {
    color: var(--videos-gold);
    white-space: nowrap;
}

.videos-playlist-arrow {
    width: 24px;
    height: 24px;
    display: none;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    color: #fff;
    background: rgba(0, 0, 0, 0.22);
    font-size: 1rem;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
}

.videos-playlist-head span {
    color: #fff;
}

.videos-playlist-head strong {
    color: var(--videos-gold);
}

.videos-playlist {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: calc((100% - 354px) * 0.72);
    gap: 16px;
    align-items: start;
}

.videos-playlist-card {
    width: 100%;
    min-width: 0;
    padding: 0;
    border: 0;
    text-align: left;
    color: inherit;
    background: transparent;
    cursor: pointer;
}

.videos-playlist-card__media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.005)),
        #111214;
}

.videos-playlist-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.82;
    transition: 0.22s ease;
}

.videos-playlist-card:hover img,
.videos-playlist-card.is-active img {
    transform: scale(1.035);
    opacity: 0.58;
}

.videos-playlist-card__placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.28);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
}

.videos-playlist-card__media b,
.videos-recommended-card__media b {
    width: 42px;
    height: 42px;
    font-size: 0.82rem;
}

.videos-playlist-card__now {
    position: absolute;
    left: 10px;
    bottom: 10px;
    padding: 5px 8px;
    border-radius: 999px;
    color: #fff;
    background: rgba(0, 0, 0, 0.68);
    font-family: var(--font-heading);
    font-size: 0.62rem;
    font-style: normal;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.videos-playlist-card.is-active .videos-playlist-card__now {
    color: #fff;
    background: rgba(230, 25, 43, 0.92);
}

.videos-playlist-card.is-active .videos-playlist-card__media {
    border-color: rgba(212, 175, 55, 0.38);
    box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.14);
}

.videos-playlist-card__body {
    display: block;
    padding-top: 10px;
}

.videos-playlist-card__body small {
    display: block;
    margin-bottom: 5px;
    color: var(--videos-gold);
    font-family: var(--font-heading);
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.videos-playlist-card__body strong {
    display: block;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
}

.videos-playlist-card__body time {
    display: block;
    margin-top: 6px;
    color: var(--videos-muted);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

/* ==========================================================================
   RECOMMENDED VIDEOS
   ========================================================================== */

.videos-recommended-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px 20px;
}

.videos-recommended-card a {
    display: block;
    color: inherit;
    text-decoration: none;
}

.videos-recommended-card__media {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 14px;
    background: #08080a;
}

.videos-recommended-card__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: 0.22s ease;
}

.videos-recommended-card:hover img {
    transform: scale(1.035);
}

.videos-recommended-card__media span {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.28);
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
}

.videos-recommended-card__body {
    padding-top: 11px;
}

.videos-recommended-card__body span {
    display: block;
    margin-bottom: 6px;
    color: var(--videos-muted);
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.videos-recommended-card__body h3 {
    margin: 0 0 6px;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.12;
    text-transform: uppercase;
}

.videos-recommended-card__body time {
    color: var(--videos-muted);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

/* ==========================================================================
   EMPTY / PAGINATION
   ========================================================================== */

.videos-empty {
    padding: 58px 24px;
    border: 1px solid var(--videos-border);
    border-radius: 24px;
    text-align: center;
    background:
        radial-gradient(circle at top, rgba(212, 175, 55, 0.08), transparent 44%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.050), rgba(255, 255, 255, 0.018));
}

.videos-empty__icon {
    margin-bottom: 14px;
    font-size: 2.4rem;
}

.videos-empty h2 {
    margin: 0 0 8px;
    color: #fff;
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.videos-empty p {
    margin: 0;
    color: var(--videos-muted);
}

.videos-pagination {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.videos-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 42px;
    padding: 8px 12px;
    border: 1px solid var(--videos-border);
    border-radius: 12px;
    color: #fff;
    background: rgba(0, 0, 0, 0.30);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 900;
}

.videos-pagination .page-numbers.current {
    color: var(--videos-gold);
    border-color: rgba(212, 175, 55, 0.45);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1180px) {
    .videos-stage-shell {
        grid-template-columns: 1fr;
        grid-template-areas:
            "player"
            "info";
        gap: 22px;
    }

    .videos-stage-info {
        padding: 0;
    }

    .videos-playlist-head,
    .videos-playlist {
        max-width: none;
    }

    .videos-playlist,
    .videos-recommended-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .videos-sidebar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .videos-container {
        width: min(100% - 28px, 1240px);
    }

    .videos-hero {
        padding: 52px 0 34px;
        text-align: left;
    }

    .videos-hero__desc {
        margin-left: 0;
        margin-right: 0;
    }

    .videos-hero-stats {
        grid-template-columns: 1fr;
        max-width: none;
    }

    .videos-categories {
        padding: 16px;
    }

    .videos-category-chip {
        width: 100%;
        justify-content: flex-start;
    }

    .videos-horizontal-ad {
        margin: 24px 0;
    }

    .videos-horizontal-ad__inner {
        width: 100%;
        min-height: 90px;
        border-radius: 14px;
    }

    .videos-stage {
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        padding: 0 0 28px;
    }

    .videos-stage>.videos-section-head {
        padding: 20px 20px 0;
        margin-bottom: 14px;
    }

    .videos-stage-shell {
        grid-template-columns: 1fr;
        grid-template-areas:
            "info"
            "player";
        gap: 0;
    }

    .videos-stage-info {
        padding: 18px 20px 14px;
    }

    .videos-stage-info h2 {
        font-size: 2rem;
        line-height: 1.08;
    }

    .videos-stage-info p {
        font-size: 0.92rem;
        line-height: 1.55;
        max-width: none;
    }

    .videos-stage-player,
    .videos-stage-player iframe,
    .videos-stage-player video,
    .videos-stage-player embed,
    .videos-stage-player object,
    .videos-stage-fallback,
    .videos-stage-fallback img,
    .videos-stage-fallback span {
        min-height: 240px;
        border-radius: 0;
    }

    .videos-playlist-head {
        max-width: none;
        padding: 18px 20px 0;
        margin: 0 0 14px;
    }

    .videos-playlist-head__title small {
        display: block;
    }

    .videos-playlist-arrow {
        display: inline-flex;
    }

    .videos-playlist {
        max-width: none;
        display: flex;
        gap: 14px;
        overflow-x: auto;
        overflow-y: hidden;
        margin: 0;
        padding: 0 20px 10px;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 20px;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
        scrollbar-width: none;
    }

    .videos-playlist::-webkit-scrollbar {
        display: none;
    }

    .videos-playlist-card {
        flex: 0 0 82vw;
        max-width: 82vw;
        scroll-snap-align: start;
    }

    .videos-playlist-card__body small {
        font-size: 0.66rem;
    }

    .videos-playlist-card__body strong {
        font-size: 1.05rem;
        line-height: 1.12;
    }

    .videos-playlist-card__body time {
        font-size: 0.72rem;
    }

    .videos-recommended-grid {
        grid-template-columns: 1fr;
    }

    .videos-sidebar {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 430px) {
    .videos-hero__title {
        font-size: 2.45rem;
    }

    .videos-hero__eyebrow {
        font-size: 0.68rem;
        letter-spacing: 0.1em;
    }

    .videos-section-head h2 {
        font-size: 1.5rem;
    }

    .videos-horizontal-ad__inner {
        min-height: 80px;
    }

    .videos-stage-player,
    .videos-stage-player iframe,
    .videos-stage-player video,
    .videos-stage-player embed,
    .videos-stage-player object,
    .videos-stage-fallback,
    .videos-stage-fallback img,
    .videos-stage-fallback span {
        min-height: 210px;
    }

    .videos-stage-info {
        padding: 18px 16px 14px;
    }

    .videos-stage-info h2 {
        font-size: 1.72rem;
    }

    .videos-playlist-head {
        padding-left: 16px;
        padding-right: 16px;
    }

    .videos-playlist-head__title small {
        font-size: 0.68rem;
    }

    .videos-playlist-arrow {
        width: 22px;
        height: 22px;
        font-size: 0.95rem;
    }

    .videos-playlist {
        padding-left: 16px;
        padding-right: 16px;
        scroll-padding-left: 16px;
    }

    .videos-playlist-card {
        flex: 0 0 84vw;
        max-width: 84vw;
    }
}

.news-category-chip {
    min-height: 38px;
    padding: 8px 13px;
    font-size: 0.72rem;
}