.tob-video-hub,
.tob-video-watch,
.tob-video-incomplete {
    --tob-red: #d1301e;
    --tob-yellow: #ffe040;
    --tob-text: #2d3138;
    --tob-muted: #667085;
    --tob-border: #d8d8d8;
    --tob-light: #f5f7f9;
    color: var(--tob-text);
}

.tob-video-hub__grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tob-video-hub__empty {
    align-items: center;
    background: var(--tob-light);
    border-left: 4px solid var(--tob-red);
    display: grid;
    gap: 24px;
    grid-template-columns: 84px minmax(0, 1fr);
    padding: 28px;
}

.tob-video-hub__empty h3,
.tob-video-hub__empty p {
    margin-bottom: 12px;
}

.tob-video-hub__signal {
    align-items: center;
    background: var(--tob-red);
    border-radius: 50%;
    color: #fff;
    display: flex;
    font-size: 28px;
    height: 72px;
    justify-content: center;
    padding-left: 4px;
    width: 72px;
}

.tob-video-card {
    background: #fff;
    border: 1px solid var(--tob-border);
    border-radius: 4px;
    height: 100%;
    overflow: hidden;
}

.tob-video-card__link {
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
}

.tob-video-card__media {
    aspect-ratio: 16 / 9;
    background: var(--tob-text);
    overflow: hidden;
    position: relative;
}

.tob-video-card__media img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.tob-video-card__play {
    align-items: center;
    background: var(--tob-red);
    border: 2px solid #fff;
    border-radius: 50%;
    color: #fff;
    display: flex;
    font-size: 18px;
    height: 52px;
    justify-content: center;
    left: 50%;
    padding-left: 3px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: transform .2s ease;
    width: 52px;
}

.tob-video-card__link:hover .tob-video-card__play,
.tob-video-card__link:focus-visible .tob-video-card__play {
    transform: translate(-50%, -50%) scale(1.08);
}

.tob-video-card__duration {
    background: rgba(45, 49, 56, .92);
    bottom: 10px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 7px;
    position: absolute;
    right: 10px;
}

.tob-video-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px;
}

.tob-video-card__eyebrow,
.tob-video-watch__eyebrow {
    color: var(--tob-red);
    font-size: 13px;
    font-weight: 800;
    margin: 0 0 8px;
    text-transform: uppercase;
}

.tob-video-card__body h3 {
    color: var(--tob-red);
    font-size: 24px;
    line-height: 1.15;
    margin-bottom: 12px;
}

.tob-video-card__body p {
    color: var(--tob-muted);
}

.tob-video-card__body time {
    color: var(--tob-muted);
    font-size: 13px;
    margin: auto 0 16px;
}

.tob-video-card__body .button {
    margin: 0;
    text-align: center;
    width: 100%;
}

.tob-video-watch {
    margin: 0 auto;
    max-width: 1180px;
    padding: 34px 24px 64px;
}

.tob-video-watch__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin-bottom: 32px;
}

.tob-video-watch__nav a {
    color: var(--tob-text);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: var(--tob-yellow);
    text-decoration-thickness: 3px;
    text-underline-offset: 4px;
}

.tob-video-watch__header {
    max-width: 850px;
}

.tob-video-watch__header h1 {
    color: var(--tob-red);
    font-size: 60px;
    line-height: 1.05;
    margin-bottom: 18px;
}

.tob-video-watch__lead {
    color: var(--tob-muted);
    font-size: 20px;
    line-height: 1.55;
}

.tob-video-watch__meta {
    align-items: center;
    color: var(--tob-muted);
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
}

.tob-video-watch__player {
    aspect-ratio: 16 / 9;
    background: var(--tob-text);
    margin: 0 0 42px;
    overflow: hidden;
    width: 100%;
}

.tob-video-watch__player iframe,
.tob-video-watch__player > div {
    border: 0;
    height: 100%;
    width: 100%;
}

.tob-video-watch__content {
    max-width: 850px;
}

.tob-video-watch__content h2,
.tob-video-watch__actions h2 {
    color: var(--tob-text);
    margin-bottom: 14px;
}

.tob-video-watch__actions {
    align-items: center;
    background: var(--tob-light);
    border-left: 4px solid var(--tob-red);
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, 1fr) auto;
    margin-top: 48px;
    padding: 28px;
}

.tob-video-watch__actions p:last-child {
    margin-bottom: 0;
}

.tob-video-watch__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tob-video-incomplete {
    background: #fff8d6;
    border-left: 4px solid var(--tob-yellow);
    margin: 30px auto;
    max-width: 900px;
    padding: 24px;
}

@media (max-width: 849px) {
    .tob-video-hub__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tob-video-watch__actions {
        grid-template-columns: 1fr;
    }

    .tob-video-watch__header h1 {
        font-size: 44px;
    }
}

@media (max-width: 549px) {
    .tob-video-hub__grid,
    .tob-video-hub__empty {
        grid-template-columns: 1fr;
    }

    .tob-video-hub__empty {
        padding: 22px;
    }

    .tob-video-watch {
        padding: 24px 16px 48px;
    }

    .tob-video-watch__lead {
        font-size: 17px;
    }

    .tob-video-watch__header h1 {
        font-size: 34px;
    }

    .tob-video-watch__actions {
        padding: 22px;
    }

    .tob-video-watch__buttons .button {
        margin: 0;
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tob-video-card__play {
        transition: none;
    }
}
