/**
 * dimosTV News Archive
 */

.dtv-news-archive {
    --dtv-news-bg: #070b14;
    --dtv-news-surface: rgba(16, 23, 38, .86);
    --dtv-news-surface-strong: rgba(21, 30, 49, .96);
    --dtv-news-border: rgba(255, 255, 255, .10);
    --dtv-news-text: #ffffff;
    --dtv-news-muted: rgba(255, 255, 255, .66);
    --dtv-news-red: #e10600;
    --dtv-news-red-soft: rgba(225, 6, 0, .18);
    background: radial-gradient(circle at top left, rgba(225, 6, 0, .14), transparent 32%), var(--dtv-news-bg);
    color: var(--dtv-news-text);
    min-height: 100vh;
    overflow: hidden;
    padding-bottom: 86px;
}

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

.dtv-news-archive-hero {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: flex-end;
    padding: 82px 0 52px;
    isolation: isolate;
    overflow: hidden;
}

.dtv-news-archive-hero__bg,
.dtv-news-archive-hero__shade {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.dtv-news-archive-hero__bg {
    background-size: cover;
    background-position: center;
    opacity: .22;
    filter: saturate(1.08) contrast(1.05);
    transform: scale(1.03);
}

.dtv-news-archive-hero__shade {
    z-index: -1;
    background: radial-gradient(circle at 78% 18%, rgba(225, 6, 0, .23), transparent 30%),
                linear-gradient(90deg, rgba(7, 11, 20, .99) 0%, rgba(7, 11, 20, .80) 58%, rgba(7, 11, 20, .68) 100%),
                linear-gradient(180deg, rgba(7, 11, 20, .15) 0%, #070b14 100%);
}

.dtv-news-archive-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 32px;
    align-items: end;
}

.dtv-news-kicker,
.dtv-news-section-header span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--dtv-news-red);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.dtv-news-kicker::before,
.dtv-news-section-header span::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--dtv-news-red);
    box-shadow: 0 0 0 6px var(--dtv-news-red-soft);
}

.dtv-news-archive-hero h1 {
    margin: 12px 0 0;
    color: #fff;
    font-size: clamp(38px, 6.5vw, 72px);
    line-height: .98;
    letter-spacing: -.045em;
    text-transform: none;
}

.dtv-news-archive-hero p {
    max-width: 760px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .68);
    font-size: 17px;
    line-height: 1.7;
}

.dtv-news-archive-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    gap: 12px;
}

.dtv-news-archive-stats span {
    display: grid;
    gap: 6px;
    padding: 20px 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(14px);
}

.dtv-news-archive-stats strong {
    color: #fff;
    font-size: 38px;
    line-height: 1;
    letter-spacing: -.05em;
}

.dtv-news-archive-stats small {
    color: rgba(255, 255, 255, .62);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.dtv-news-toolbar {
    position: relative;
    z-index: 2;
    margin-top: -24px;
    display: grid;
    grid-template-columns: minmax(240px, 2.2fr) minmax(145px, 1fr) minmax(145px, 1fr) minmax(145px, 1fr) max-content;
    gap: 12px;
    align-items: center;
    padding: 16px;
    border-radius: 24px;
    background: var(--dtv-news-surface-strong);
    border: 1px solid var(--dtv-news-border);
    box-shadow: 0 22px 70px rgba(0, 0, 0, .28);
}

.dtv-news-toolbar__field {
    min-width: 0;
}

.dtv-news-toolbar input,
.dtv-news-toolbar select,
.dtv-news-filter-reset {
    width: 100%;
    min-height: 52px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 18px;
    outline: none;
    background: rgba(255, 255, 255, .07);
    color: #fff;
    font-size: 15px;
}

.dtv-news-toolbar select {
    appearance: none;
    cursor: pointer;
    padding-right: 44px;
    background-image: linear-gradient(45deg, transparent 50%, rgba(255,255,255,.78) 50%), linear-gradient(135deg, rgba(255,255,255,.78) 50%, transparent 50%);
    background-position: calc(100% - 22px) 50%, calc(100% - 16px) 50%;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.dtv-news-filter-reset {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 0;
    white-space: nowrap;
    padding: 0 16px;
    border: 1px solid rgba(225, 6, 0, .36);
    background: rgba(225, 6, 0, .06);
    color: rgba(255, 255, 255, .88);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .075em;
    cursor: pointer;
    transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
}

.dtv-news-filter-reset:hover {
    transform: translateY(-1px);
    border-color: rgba(225, 6, 0, .88);
    background: var(--dtv-news-red);
    color: #fff;
}

.dtv-news-toolbar select option {
    color: #111827;
}

.dtv-news-toolbar input::placeholder {
    color: rgba(255, 255, 255, .48);
}

.dtv-news-toolbar input:focus,
.dtv-news-toolbar select:focus,
.dtv-news-filter-reset:focus {
    border-color: rgba(225, 6, 0, .72);
    box-shadow: 0 0 0 4px rgba(225, 6, 0, .14);
}


@media (max-width: 1180px) {
    .dtv-news-toolbar {
        grid-template-columns: minmax(220px, 1.4fr) repeat(3, minmax(140px, 1fr));
    }

    .dtv-news-filter-reset {
        grid-column: 1 / -1;
        justify-self: end;
    }
}

@media (max-width: 760px) {
    .dtv-news-toolbar {
        grid-template-columns: 1fr;
    }

    .dtv-news-filter-reset {
        justify-self: stretch;
        width: 100%;
    }
}

.dtv-news-featured {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, .85fr);
    gap: 24px;
    align-items: stretch;
    padding-top: 40px;
}

.dtv-news-featured__media {
    position: relative;
    min-height: 360px;
    border-radius: 30px;
    overflow: hidden;
    background: rgba(255,255,255,.06);
    border: 1px solid var(--dtv-news-border);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .22);
}

.dtv-news-featured__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .25s ease, opacity .25s ease;
}

.dtv-news-featured__media:hover img {
    transform: scale(1.035);
    opacity: .86;
}

.dtv-news-featured__play,
.dtv-news-card__play {
    position: absolute;
    inset: auto auto 22px 22px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--dtv-news-red);
    display: grid;
    place-items: center;
    box-shadow: 0 18px 44px rgba(225, 6, 0, .38);
}

.dtv-news-featured__play::before,
.dtv-news-card__play::before {
    content: "";
    width: 0;
    height: 0;
    margin-left: 4px;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 13px solid #fff;
}

.dtv-news-featured__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 34px;
    border-radius: 30px;
    background: var(--dtv-news-surface);
    border: 1px solid var(--dtv-news-border);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .18);
}

.dtv-news-featured__copy h2 {
    margin: 12px 0 0;
    color: #fff;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -.04em;
}

.dtv-news-featured__copy p {
    margin: 18px 0 0;
    color: var(--dtv-news-muted);
    font-size: 15px;
    line-height: 1.7;
}

.dtv-news-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    margin-top: 24px;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    background: var(--dtv-news-red);
    color: #fff !important;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-decoration: none !important;
    box-shadow: 0 14px 34px rgba(225, 6, 0, .28);
}

.dtv-news-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 26px;
    padding-top: 62px;
}

.dtv-news-section-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 22px;
}

.dtv-news-section-header h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(24px, 3.5vw, 38px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -.035em;
    text-transform: none;
}

.dtv-news-section-header--compact h2 {
    font-size: 28px;
}

.dtv-news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.dtv-news-card {
    overflow: hidden;
    border-radius: 26px;
    background: var(--dtv-news-surface);
    border: 1px solid var(--dtv-news-border);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .18);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.dtv-news-card:hover {
    transform: translateY(-3px);
    border-color: rgba(225, 6, 0, .58);
    box-shadow: 0 30px 86px rgba(0, 0, 0, .30);
}

.dtv-news-card__media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, rgba(225, 6, 0, .24), rgba(255, 255, 255, .06));
    overflow: hidden;
}

.dtv-news-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: .72;
    transition: transform .25s ease, opacity .25s ease;
}

.dtv-news-card:hover .dtv-news-card__media img {
    transform: scale(1.045);
    opacity: .86;
}

.dtv-news-card__placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: rgba(255,255,255,.58);
    font-weight: 900;
    letter-spacing: .18em;
}

.dtv-news-card__play {
    width: 42px;
    height: 42px;
    bottom: 16px;
    left: 16px;
}

.dtv-news-card__play::before {
    border-top-width: 7px;
    border-bottom-width: 7px;
    border-left-width: 10px;
}

.dtv-news-card__body {
    padding: 18px 18px 20px;
}

.dtv-news-card__category {
    display: inline-flex;
    color: var(--dtv-news-red);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.dtv-news-card h3 {
    margin: 9px 0 0;
    color: #fff;
    font-size: 18px;
    line-height: 1.16;
    font-weight: 900;
    letter-spacing: -.025em;
}

.dtv-news-card h3 a {
    color: #fff !important;
    text-decoration: none !important;
}

.dtv-news-card h3 a:hover {
    color: var(--dtv-news-red) !important;
}

.dtv-news-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.dtv-news-card__meta span {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .075);
    color: rgba(255, 255, 255, .70);
    font-size: 12px;
    font-weight: 800;
}

.dtv-news-sidebar {
    position: sticky;
    top: 24px;
    align-self: start;
    padding: 24px;
    border-radius: 28px;
    background: var(--dtv-news-surface-strong);
    border: 1px solid var(--dtv-news-border);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .20);
}

.dtv-news-popular-list {
    display: grid;
    gap: 12px;
}

.dtv-news-popular-item {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    color: #fff !important;
    text-decoration: none !important;
    padding: 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(255, 255, 255, .065);
    transition: transform .18s ease, background .18s ease;
}

.dtv-news-popular-item:hover {
    background: rgba(255, 255, 255, .075);
    transform: translateY(-1px);
}

.dtv-news-popular-item b {
    color: var(--dtv-news-red);
    font-size: 22px;
    line-height: 1;
    letter-spacing: -.05em;
}

.dtv-news-popular-item strong {
    display: block;
    color: #fff;
    font-size: 14px;
    line-height: 1.28;
}

.dtv-news-popular-item small {
    display: block;
    margin-top: 6px;
    color: rgba(255, 255, 255, .58);
    font-size: 12px;
}

.dtv-news-empty,
.dtv-news-no-results {
    grid-column: 1 / -1;
    padding: 42px;
    border-radius: 24px;
    background: var(--dtv-news-surface);
    border: 1px solid var(--dtv-news-border);
    color: rgba(255, 255, 255, .72);
    text-align: center;
}

@media (max-width: 1100px) {
    .dtv-news-featured,
    .dtv-news-layout,
    .dtv-news-archive-hero__inner,
    .dtv-news-toolbar {
        grid-template-columns: 1fr;
    }

    .dtv-news-sidebar {
        position: static;
    }

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

    .dtv-news-archive-stats {
        max-width: 360px;
    }
}

@media (max-width: 640px) {
    .dtv-news-container {
        width: min(100% - 28px, 1180px);
    }

    .dtv-news-archive-hero {
        min-height: 340px;
        padding: 76px 0 40px;
    }

    .dtv-news-archive-stats,
    .dtv-news-grid {
        grid-template-columns: 1fr;
    }

    .dtv-news-featured__media {
        min-height: 240px;
    }

    .dtv-news-featured__copy {
        padding: 24px;
    }
}

/* Shows Archive: ekpompes taxonomy portal */
.dtv-shows-archive {
    --dtv-shows-card: rgba(15, 25, 43, .92);
}

.dtv-shows-hero .dtv-news-archive-hero__shade {
    background:
        radial-gradient(circle at 82% 18%, rgba(225, 6, 0, .20), transparent 30%),
        linear-gradient(90deg, rgba(5, 9, 17, .94) 0%, rgba(5, 9, 17, .76) 44%, rgba(5, 9, 17, .48) 72%, rgba(5, 9, 17, .68) 100%);
}

.dtv-shows-featured {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    gap: 0;
    margin-top: -72px;
    position: relative;
    z-index: 3;
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(19, 30, 50, .98), rgba(39, 12, 28, .92));
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .34);
}

.dtv-shows-featured__media {
    position: relative;
    min-height: 360px;
    background: rgba(255, 255, 255, .05);
    overflow: hidden;
}

.dtv-shows-featured__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(5, 9, 17, .28), transparent 58%);
}

.dtv-shows-featured__media img,
.dtv-shows-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

.dtv-shows-featured:hover .dtv-shows-featured__media img,
.dtv-shows-card:hover .dtv-shows-card__media img {
    transform: scale(1.04);
}

.dtv-shows-featured__copy {
    padding: 46px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dtv-shows-featured__copy h2 {
    margin: 12px 0 14px;
    color: #fff;
    font-size: clamp(34px, 4vw, 58px);
    line-height: .96;
    letter-spacing: -.055em;
}

.dtv-shows-featured__copy p {
    color: rgba(255, 255, 255, .72);
    font-size: 16px;
    line-height: 1.65;
    margin: 0 0 22px;
}

.dtv-shows-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.dtv-shows-meta-row span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .10);
    color: rgba(255, 255, 255, .80);
    font-size: 12px;
    font-weight: 800;
}

.dtv-shows-section {
    margin-top: 48px;
    padding-bottom: 80px;
}

.dtv-shows-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.dtv-shows-card {
    overflow: hidden;
    border-radius: 26px;
    background: var(--dtv-shows-card);
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: 0 24px 68px rgba(0, 0, 0, .22);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.dtv-shows-card:hover {
    transform: translateY(-4px);
    border-color: rgba(225, 6, 0, .46);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .34);
}

.dtv-shows-card__media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(225, 6, 0, .22), rgba(20, 31, 52, .95));
}

.dtv-shows-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(7, 12, 20, .56), transparent 62%);
}

.dtv-shows-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .94);
    font-size: 48px;
    font-weight: 950;
    letter-spacing: -.08em;
}

.dtv-shows-card__badge {
    position: absolute;
    left: 14px;
    bottom: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(225, 6, 0, .96);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
}

.dtv-shows-card__body {
    padding: 22px;
}

.dtv-shows-card__body h3 {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.08;
    letter-spacing: -.035em;
}

.dtv-shows-card__body h3 a {
    color: #fff;
    text-decoration: none;
}

.dtv-shows-card__body p {
    min-height: 46px;
    margin: 0 0 18px;
    color: rgba(255, 255, 255, .66);
    font-size: 14px;
    line-height: 1.55;
}

.dtv-shows-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.dtv-shows-card__button,
.dtv-shows-card__latest {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .04em;
}

.dtv-shows-card__button {
    background: var(--dtv-news-red);
    color: #fff;
    box-shadow: 0 12px 30px rgba(225, 6, 0, .30);
}

.dtv-shows-card__latest {
    border: 1px solid rgba(255, 255, 255, .14);
    color: rgba(255, 255, 255, .86);
    background: rgba(255, 255, 255, .06);
}

.dtv-shows-card__button:hover,
.dtv-shows-card__latest:hover {
    color: #fff;
    transform: translateY(-1px);
}

@media (max-width: 1100px) {
    .dtv-shows-featured,
    .dtv-shows-grid {
        grid-template-columns: 1fr;
    }

    .dtv-shows-featured {
        margin-top: 24px;
    }
}

@media (max-width: 760px) {
    .dtv-shows-featured__media {
        min-height: 230px;
    }

    .dtv-shows-featured__copy {
        padding: 28px;
    }

    .dtv-shows-card__actions {
        flex-direction: column;
        align-items: stretch;
    }
}

/* Shows 2.0: streaming-style archive cards and show portal */
.dtv-shows-card__hover {
    position: absolute;
    inset: auto 18px 18px 18px;
    z-index: 4;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(225, 6, 0, .96);
    color: #fff;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .045em;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .22s ease, transform .22s ease;
    box-shadow: 0 18px 42px rgba(225, 6, 0, .34);
}

.dtv-shows-card:hover .dtv-shows-card__hover {
    opacity: 1;
    transform: translateY(0);
}

.dtv-show-portal {
    --dtv-show-hero-height: min(78vh, 720px);
}

.dtv-show-portal-hero {
    position: relative;
    min-height: var(--dtv-show-hero-height);
    display: flex;
    align-items: flex-end;
    padding: 118px 0 72px;
    isolation: isolate;
    overflow: hidden;
}

.dtv-show-portal-hero__bg,
.dtv-show-portal-hero__shade {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.dtv-show-portal-hero__bg {
    background-size: cover;
    background-position: center;
    filter: saturate(1.08) contrast(1.06);
    transform: scale(1.02);
}

.dtv-show-portal-hero__shade {
    z-index: -1;
    background:
        radial-gradient(circle at 78% 16%, rgba(225, 6, 0, .24), transparent 30%),
        linear-gradient(90deg, rgba(5, 9, 17, .96) 0%, rgba(5, 9, 17, .82) 34%, rgba(5, 9, 17, .50) 64%, rgba(5, 9, 17, .72) 100%),
        linear-gradient(180deg, rgba(5, 9, 17, .08) 0%, #070b14 100%);
}

.dtv-show-portal-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
    gap: 44px;
    align-items: end;
}

.dtv-show-portal-hero__copy h1 {
    max-width: 860px;
    margin: 14px 0 0;
    color: #fff;
    font-size: clamp(48px, 8vw, 96px);
    line-height: .9;
    letter-spacing: -.065em;
    text-transform: none;
}

.dtv-show-portal-hero__copy p {
    max-width: 720px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, .72);
    font-size: 18px;
    line-height: 1.75;
}

.dtv-show-portal-logo {
    display: block;
    max-width: 220px;
    max-height: 86px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin: 18px 0 8px;
    filter: drop-shadow(0 18px 42px rgba(0, 0, 0, .36));
}

.dtv-show-portal-meta {
    margin-top: 24px;
    margin-bottom: 0;
}

.dtv-show-portal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.dtv-show-secondary-btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .90);
    text-decoration: none;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .045em;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.dtv-show-secondary-btn:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, .14);
    border-color: rgba(255, 255, 255, .28);
    color: #fff;
}

.dtv-show-portal-preview {
    position: relative;
    display: block;
    min-height: 260px;
    overflow: hidden;
    border-radius: 30px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .32);
    text-decoration: none;
    color: #fff;
}

.dtv-show-portal-preview::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(5, 9, 17, .74), rgba(5, 9, 17, .08) 62%);
}

.dtv-show-portal-preview img,
.dtv-show-portal-preview .dtv-shows-card__placeholder {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .35s ease;
}

.dtv-show-portal-preview:hover img {
    transform: scale(1.04);
}

.dtv-show-portal-preview__label,
.dtv-show-portal-preview__play,
.dtv-show-portal-preview strong {
    position: absolute;
    z-index: 3;
}

.dtv-show-portal-preview__label {
    top: 18px;
    left: 18px;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(225, 6, 0, .96);
    color: #fff;
    font-size: 10px;
    font-weight: 950;
    letter-spacing: .06em;
}

.dtv-show-portal-preview__play {
    left: 24px;
    bottom: 70px;
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #fff;
    color: var(--dtv-news-red);
    box-shadow: 0 16px 38px rgba(0, 0, 0, .30);
}

.dtv-show-portal-preview strong {
    left: 24px;
    right: 24px;
    bottom: 24px;
    font-size: 22px;
    line-height: 1.08;
    letter-spacing: -.035em;
}

.dtv-show-episodes-section {
    margin-top: -24px;
    position: relative;
    z-index: 4;
}

.dtv-show-episodes-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.dtv-show-episode-card {
    overflow: hidden;
    border-radius: 22px;
    background: rgba(15, 25, 43, .92);
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: 0 20px 54px rgba(0, 0, 0, .20);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.dtv-show-episode-card:hover {
    transform: translateY(-4px);
    border-color: rgba(225, 6, 0, .44);
    box-shadow: 0 26px 72px rgba(0, 0, 0, .30);
}

.dtv-show-episode-card__media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(225, 6, 0, .20), rgba(20, 31, 52, .95));
}

.dtv-show-episode-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(7, 12, 20, .58), transparent 64%);
}

.dtv-show-episode-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .32s ease;
}

.dtv-show-episode-card:hover .dtv-show-episode-card__media img {
    transform: scale(1.04);
}

.dtv-show-episode-card__play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, .96);
    color: var(--dtv-news-red);
    transform: translate(-50%, -50%);
    box-shadow: 0 16px 38px rgba(0, 0, 0, .34);
    transition: transform .22s ease, background .22s ease, color .22s ease, box-shadow .22s ease;
}

.dtv-show-episode-card__play svg {
    width: 19px;
    height: 19px;
    display: block;
    margin-left: 3px;
    fill: currentColor;
}

.dtv-show-episode-card:hover .dtv-show-episode-card__play {
    transform: translate(-50%, -50%) scale(1.08);
    background: var(--dtv-news-red);
    color: #fff;
    box-shadow: 0 18px 44px rgba(225, 6, 0, .35);
}

.dtv-show-episode-card__duration {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 3;
    min-height: 24px;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(5, 9, 17, .78);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
}

.dtv-show-episode-card__body {
    padding: 16px;
}

.dtv-show-episode-card__body h3 {
    margin: 0 0 8px;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: -.025em;
}

.dtv-show-episode-card__body h3 a {
    color: #fff;
    text-decoration: none;
}

.dtv-show-episode-card__body span {
    color: rgba(255, 255, 255, .58);
    font-size: 12px;
    font-weight: 800;
}

.dtv-shows-grid--compact {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1100px) {
    .dtv-show-portal-hero__inner,
    .dtv-show-episodes-grid,
    .dtv-shows-grid--compact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dtv-show-portal-hero__copy {
        grid-column: 1 / -1;
    }
}

@media (max-width: 760px) {
    .dtv-show-portal-hero {
        min-height: auto;
        padding: 86px 0 42px;
    }

    .dtv-show-portal-hero__inner,
    .dtv-show-episodes-grid,
    .dtv-shows-grid--compact {
        grid-template-columns: 1fr;
    }

    .dtv-show-portal-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .dtv-show-portal-preview {
        min-height: 220px;
    }
}

/* Frontend 2.0 — Show Portal ACF polish */
.dtv-show-portal {
    --dtv-show-accent: var(--dtv-news-red, #e10600);
}

.dtv-show-portal .dtv-news-btn {
    background: var(--dtv-show-accent);
    box-shadow: 0 18px 42px color-mix(in srgb, var(--dtv-show-accent) 34%, transparent);
}

.dtv-show-play-trailer {
    scroll-behavior: smooth;
}

.dtv-show-info-section,
.dtv-show-trailer-section,
.dtv-show-municipalities-section,
.dtv-show-highlights-section {
    position: relative;
    z-index: 5;
}

.dtv-show-trailer-section {
    margin-top: -22px;
}

.dtv-show-trailer-card,
.dtv-show-info-card {
    border-radius: 30px;
    background: rgba(15, 25, 43, .92);
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: 0 28px 80px rgba(0, 0, 0, .28);
    overflow: hidden;
}

.dtv-show-trailer-embed {
    position: relative;
    aspect-ratio: 16 / 9;
    width: 100%;
    background: #050914;
}

.dtv-show-trailer-embed iframe,
.dtv-show-trailer-embed embed,
.dtv-show-trailer-embed object,
.dtv-show-trailer-embed video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.dtv-show-info-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(280px, .8fr);
    gap: 22px;
}

.dtv-show-info-card {
    padding: 28px;
}

.dtv-show-info-card__label {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--dtv-show-accent);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .09em;
}

.dtv-show-info-card h2 {
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(24px, 3vw, 38px);
    letter-spacing: -.04em;
}

.dtv-show-info-card p {
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-size: 16px;
    line-height: 1.75;
}

.dtv-show-info-card dl {
    margin: 0;
    display: grid;
    gap: 16px;
}

.dtv-show-info-card dt {
    color: rgba(255, 255, 255, .48);
    font-size: 10px;
    font-weight: 950;
    letter-spacing: .08em;
}

.dtv-show-info-card dd {
    margin: 5px 0 0;
    color: #fff;
    font-size: 16px;
    font-weight: 850;
}

.dtv-show-municipalities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.dtv-show-municipality-chip {
    min-height: 74px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px 10px 10px;
    border-radius: 999px;
    background: rgba(15, 25, 43, .92);
    border: 1px solid rgba(255, 255, 255, .10);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 18px 44px rgba(0, 0, 0, .18);
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.dtv-show-municipality-chip:hover {
    transform: translateY(-2px);
    border-color: color-mix(in srgb, var(--dtv-show-accent) 58%, transparent);
    background: rgba(22, 34, 56, .96);
    color: #fff;
}

.dtv-show-municipality-chip img,
.dtv-show-municipality-chip span {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .94);
    object-fit: contain;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #10213a;
    font-size: 16px;
    font-weight: 950;
    flex: 0 0 52px;
}

.dtv-show-municipality-chip strong {
    font-size: 14px;
    font-weight: 900;
    letter-spacing: -.01em;
}

@media (max-width: 900px) {
    .dtv-show-info-grid {
        grid-template-columns: 1fr;
    }
}

/* Shows Archive / Show Portal polish: ACF hero images, clean cards, no overlap */
.dtv-shows-archive .dtv-news-archive-hero {
    min-height: 420px;
    padding: 92px 0 96px;
}

.dtv-shows-featured {
    margin-top: 34px;
    margin-bottom: 58px;
    isolation: isolate;
}

.dtv-shows-featured__media,
.dtv-shows-card__media {
    isolation: isolate;
}

.dtv-shows-featured__media img,
.dtv-shows-card__media img,
.dtv-shows-media__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dtv-shows-featured__placeholder {
    width: 100%;
    height: 100%;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .94);
    font-size: 72px;
    font-weight: 950;
    letter-spacing: -.08em;
    background: linear-gradient(135deg, rgba(225, 6, 0, .20), rgba(20, 31, 52, .95));
}

.dtv-shows-media__logo {
    position: absolute;
    left: 20px;
    top: 20px;
    z-index: 5;
    width: 76px;
    height: 76px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background: rgba(5, 9, 17, .70);
    border: 1px solid rgba(255, 255, 255, .18);
    box-shadow: 0 20px 55px rgba(0, 0, 0, .34);
    backdrop-filter: blur(14px);
    overflow: hidden;
}

.dtv-shows-featured__media .dtv-shows-media__logo {
    width: 96px;
    height: 96px;
    border-radius: 26px;
}

.dtv-shows-media__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    display: block;
}

.dtv-shows-card__actions {
    display: flex;
    align-items: center;
}

.dtv-shows-card__button {
    width: fit-content;
}

.dtv-shows-card__latest {
    display: none !important;
}

.dtv-show-portal-hero {
    min-height: min(74vh, 660px);
    padding-top: 118px;
}

.dtv-show-portal-hero__bg {
    opacity: 1;
    background-size: cover;
    background-position: center center;
}

.dtv-show-portal-hero__shade {
    background:
        radial-gradient(circle at 80% 18%, rgba(225, 6, 0, .20), transparent 30%),
        linear-gradient(90deg, rgba(5, 9, 17, .90) 0%, rgba(5, 9, 17, .68) 38%, rgba(5, 9, 17, .32) 68%, rgba(5, 9, 17, .58) 100%),
        linear-gradient(180deg, rgba(5, 9, 17, .08) 0%, rgba(7, 11, 20, .94) 100%);
}

.dtv-show-portal-logo {
    background: rgba(5, 9, 17, .54);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 18px;
    padding: 12px;
    backdrop-filter: blur(12px);
}

@media (max-width: 1100px) {
    .dtv-shows-featured {
        margin-top: 28px;
    }
}

@media (max-width: 760px) {
    .dtv-shows-archive .dtv-news-archive-hero {
        min-height: 340px;
        padding: 82px 0 52px;
    }

    .dtv-shows-featured {
        margin-top: 24px;
        margin-bottom: 38px;
    }

    .dtv-shows-media__logo {
        width: 62px;
        height: 62px;
        border-radius: 18px;
    }

    .dtv-shows-featured__media .dtv-shows-media__logo {
        width: 76px;
        height: 76px;
        border-radius: 22px;
    }

    .dtv-show-portal-hero {
        min-height: 560px;
        padding-top: 96px;
    }
}

/* Frontend 2.0 — Show Design Pass
   Clean show library cards, clear hero imagery and single CTA. */
.dtv-shows-archive .dtv-news-archive-hero {
    min-height: 390px;
    padding: 88px 0 74px;
}

.dtv-shows-archive .dtv-news-archive-hero__bg {
    opacity: .34;
    background-size: cover;
    background-position: center center;
}

.dtv-shows-archive .dtv-news-archive-hero__shade {
    background:
        radial-gradient(circle at 78% 16%, rgba(225, 6, 0, .20), transparent 30%),
        linear-gradient(90deg, rgba(5, 9, 17, .96) 0%, rgba(5, 9, 17, .78) 48%, rgba(5, 9, 17, .60) 100%),
        linear-gradient(180deg, rgba(5, 9, 17, .10) 0%, #070b14 100%);
}

.dtv-shows-featured {
    margin-top: 36px;
    margin-bottom: 64px;
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, .9fr);
    overflow: hidden;
}

.dtv-shows-featured__media {
    min-height: 390px;
}

.dtv-shows-featured__copy {
    padding: 44px 46px;
}

.dtv-shows-featured__copy h2 {
    font-size: clamp(34px, 4.4vw, 62px);
}

.dtv-shows-grid {
    align-items: stretch;
}

.dtv-shows-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    background: linear-gradient(180deg, rgba(15, 25, 43, .98), rgba(12, 21, 37, .96));
}

.dtv-shows-card__media {
    aspect-ratio: 16 / 9;
    min-height: 230px;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.dtv-shows-card__media::after {
    background: linear-gradient(0deg, rgba(7, 12, 20, .42), rgba(7, 12, 20, .08) 62%);
}

.dtv-shows-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 26px;
}

.dtv-shows-card__body h3 {
    margin-bottom: 12px;
    font-size: 25px;
}

.dtv-shows-card__body p {
    min-height: 0;
    margin-bottom: 22px;
}

.dtv-shows-card__actions {
    margin-top: auto;
}

.dtv-shows-card__button {
    min-height: 42px;
    padding: 0 20px;
    font-size: 12px;
    box-shadow: 0 16px 38px rgba(225, 6, 0, .28);
}

.dtv-shows-card__hover {
    display: none !important;
}

.dtv-shows-card__badge {
    left: 18px;
    bottom: 18px;
    min-height: 30px;
    padding: 0 12px;
    font-size: 11px;
}

.dtv-shows-media__logo {
    width: 72px;
    height: 72px;
    left: 18px;
    top: 18px;
    border-radius: 20px;
    background: rgba(255,255,255,.94);
    border: 1px solid rgba(255,255,255,.72);
    box-shadow: 0 18px 44px rgba(0,0,0,.30);
}

.dtv-shows-media__logo img {
    padding: 8px;
}

.dtv-shows-featured__media .dtv-shows-media__logo {
    width: 82px;
    height: 82px;
    border-radius: 22px;
}

.dtv-show-portal {
    --dtv-show-hero-height: min(76vh, 680px);
}

.dtv-show-portal-hero {
    min-height: var(--dtv-show-hero-height);
    padding: 122px 0 78px;
}

.dtv-show-portal-hero__bg {
    opacity: 1;
    background-size: cover;
    background-position: center center;
    filter: saturate(1.04) contrast(1.03);
}

.dtv-show-portal-hero__shade {
    background:
        radial-gradient(circle at 80% 16%, rgba(225, 6, 0, .18), transparent 30%),
        linear-gradient(90deg, rgba(5, 9, 17, .92) 0%, rgba(5, 9, 17, .68) 38%, rgba(5, 9, 17, .26) 70%, rgba(5, 9, 17, .58) 100%),
        linear-gradient(180deg, rgba(5, 9, 17, .04) 0%, rgba(7, 11, 20, .96) 100%);
}

.dtv-show-portal-logo {
    max-width: 240px;
    max-height: 100px;
    padding: 12px;
    border-radius: 20px;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(255,255,255,.68);
    filter: drop-shadow(0 20px 46px rgba(0, 0, 0, .34));
}

.dtv-show-portal-preview {
    min-height: 300px;
}

.dtv-show-portal-preview img,
.dtv-show-portal-preview .dtv-shows-card__placeholder {
    min-height: 300px;
}

@media (max-width: 1100px) {
    .dtv-shows-featured {
        grid-template-columns: 1fr;
        margin-top: 30px;
    }

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

@media (max-width: 760px) {
    .dtv-shows-archive .dtv-news-archive-hero {
        min-height: 330px;
        padding: 76px 0 46px;
    }

    .dtv-shows-featured__media,
    .dtv-shows-card__media {
        min-height: 210px;
    }

    .dtv-shows-grid {
        grid-template-columns: 1fr;
    }

    .dtv-show-portal {
        --dtv-show-hero-height: auto;
    }

    .dtv-show-portal-hero {
        min-height: 560px;
        padding: 96px 0 52px;
    }
}

/* Show portal polish: keep the primary hero action focused on the show page, not duplicate latest episode CTA. */
.dtv-show-portal .dtv-show-play-latest,
.dtv-show-portal-preview__play {
    display: none !important;
}

.dtv-show-portal .dtv-show-portal-actions .dtv-show-secondary-btn {
    margin-left: 0;
}

.dtv-show-portal-preview strong {
    bottom: 24px;
}
