.mta-tv-page {
    background: #f6f7f9;
    color: #101820;
}

.mta-tv-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.mta-tv-hero {
    background: #101820;
    color: #ffffff;
    border-bottom: 5px solid #e10600;
}

.mta-tv-hero .mta-tv-shell {
    display: grid;
    grid-template-columns: minmax(0, .78fr) minmax(320px, 1.22fr);
    gap: 32px;
    align-items: center;
    padding: 48px 0;
}

.mta-tv-label,
.mta-tv-kicker {
    color: #e10600;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.mta-tv-hero h1 {
    margin: 10px 0 14px;
    color: #ffffff;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1;
    font-weight: 950;
}

.mta-tv-hero p {
    max-width: 560px;
    margin: 0 0 24px;
    color: #d9e1ea;
    font-size: 18px;
    line-height: 1.55;
}

.mta-tv-subscribe {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 18px;
    color: #ffffff;
    background: #e10600;
    font-weight: 900;
    text-decoration: none;
}

.mta-tv-subscribe:hover {
    color: #ffffff;
    background: #b80500;
}

.mta-tv-player {
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #05080c;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .32);
}

.mta-tv-player iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.mta-tv-empty {
    display: grid;
    place-items: center;
    height: 100%;
    padding: 24px;
    text-align: center;
}

.mta-tv-feed {
    padding: 34px 0 56px;
}

.mta-tv-section-head {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    margin-bottom: 18px;
    border-bottom: 2px solid #dfe5ee;
}

.mta-tv-section-head h2 {
    margin: 0;
    padding-bottom: 12px;
    font-size: 24px;
    font-weight: 950;
}

.mta-tv-section-head a {
    color: #e10600;
    font-weight: 900;
    text-decoration: none;
}

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

.mta-tv-card {
    background: #ffffff;
    border: 1px solid #dfe5ee;
}

.mta-tv-card a {
    display: grid;
    color: inherit;
    text-decoration: none;
}

.mta-tv-thumb {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #101820;
}

.mta-tv-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .2s ease;
}

.mta-tv-card a:hover img {
    transform: scale(1.04);
}

.mta-tv-play {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #e10600;
    transform: translate(-50%, -50%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .28);
}

.mta-tv-play::before {
    content: "";
    position: absolute;
    left: 22px;
    top: 17px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #ffffff;
}

.mta-tv-card-body {
    display: block;
    padding: 15px;
}

.mta-tv-card h2 {
    margin: 6px 0 8px;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 950;
}

.mta-tv-card p {
    margin: 0 0 12px;
    color: #425466;
    font-size: 14px;
    line-height: 1.45;
}

.mta-tv-card time {
    color: #6b7280;
    font-size: 12px;
    font-weight: 800;
}

.mta-tv-card-featured {
    grid-column: span 2;
}

.mta-tv-card-featured h2 {
    font-size: 24px;
}

.mta-tv-setup-note {
    padding: 24px;
    background: #ffffff;
    border: 1px solid #dfe5ee;
}

.mta-tv-setup-note p {
    margin: 0 0 10px;
}

.mta-tv-setup-note p:last-child {
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .mta-tv-hero .mta-tv-shell {
        grid-template-columns: 1fr;
        padding: 34px 0;
    }

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

@media (max-width: 640px) {
    .mta-tv-shell {
        width: min(100% - 24px, 1180px);
    }

    .mta-tv-hero h1 {
        font-size: 34px;
    }

    .mta-tv-hero p {
        font-size: 16px;
    }

    .mta-tv-grid {
        grid-template-columns: 1fr;
    }

    .mta-tv-card-featured {
        grid-column: auto;
    }

    .mta-tv-section-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }
}
