.tft-managed-videos {
    --tft-ink: #0e1726;
    --tft-ink-soft: #46536b;
    --tft-line: #dde3ec;
    --tft-term: #0c1117;
    --tft-term-line: #1c2530;
    width: 100%;
    margin: 1rem 0 3rem;
    font-family: 'IBM Plex Sans', system-ui, sans-serif;
}

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

.tft-managed-videos__header {
    margin-bottom: 1rem;
}

.tft-managed-videos__header h2 {
    margin: 0 0 0.55rem !important;
    color: var(--tft-ink) !important;
    font-family: 'Archivo', sans-serif !important;
    font-size: clamp(1.4rem, 2.4vw, 1.8rem) !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    letter-spacing: -0.015em !important;
    text-transform: none !important;
}

.tft-managed-videos__header p {
    max-width: 68ch;
    margin: 0 !important;
    color: var(--tft-ink-soft) !important;
    font-size: 0.95rem;
    line-height: 1.65;
}

.tft-managed-videos__list {
    display: grid;
    gap: 1.25rem;
}

.tft-managed-video {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(250px, 0.75fr);
    align-items: stretch;
    gap: clamp(0.65rem, 1.2vw, 0.9rem);
    padding: clamp(0.65rem, 1.2vw, 0.9rem);
    overflow: hidden;
    border: 1px solid var(--tft-line);
    border-radius: 12px;
    background: var(--tft-term);
    box-shadow: 0 4px 16px rgba(14, 23, 38, 0.06);
}

.tft-managed-video video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 1px solid var(--tft-term-line);
    margin: 0;
    background: var(--tft-term);
    object-fit: cover;
    border-radius: 8px;
}

.tft-managed-video__copy {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-self: stretch;
    padding: clamp(1.1rem, 2.2vw, 1.65rem);
    border: 1px solid var(--tft-term-line);
    border-radius: 8px;
    background: radial-gradient(circle at 100% 0%, rgba(32, 80, 245, 0.2), transparent 50%), var(--tft-term);
}

.tft-managed-video__copy h3 {
    margin: 0 0 0.65rem !important;
    color: #f2f6fb !important;
    font-family: 'Archivo', sans-serif !important;
    font-size: clamp(1.2rem, 2vw, 1.55rem) !important;
    line-height: 1.3 !important;
    text-transform: none !important;
}

.tft-managed-video__copy h3::before,
.tft-managed-video__copy h3::after {
    display: none !important;
    content: none !important;
}

.tft-managed-video__copy p {
    margin: 0 !important;
    color: #aebccd !important;
    font-size: 0.9rem;
    line-height: 1.65;
}

@media (max-width: 760px) {
    .tft-managed-video {
        grid-template-columns: 1fr;
    }

    .tft-managed-video__copy {
        border: 1px solid var(--tft-term-line);
    }
}
