.video-page {
    max-width: 900px;
    margin: 0 auto;
}

.video-page__back {
    display: inline-block;
    margin-bottom: 16px;
    font-weight: 800;
    color: var(--purple);
    text-decoration: none;
}

.video-page__back:hover {
    text-decoration: underline;
}

.video-player-wrap {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #000;
    margin-bottom: 24px;
}

.video-embed {
    position: relative;
    padding-top: 56.25%;
}

.video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-page__info h1 {
    margin: 0 0 12px;
    font-size: clamp(1.35rem, 4vw, 1.85rem);
    font-weight: 900;
    line-height: 1.25;
}

.video-page__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 16px;
}

.video-page__desc {
    font-size: 16px;
    line-height: 1.55;
    font-weight: 600;
    color: rgba(61, 32, 102, 0.85);
}
