.video-page {
    width: min(100% - 2rem, var(--content-width));
    margin: 0 auto;
    padding: clamp(2.5rem, 6vw, 4.5rem) 0;
}

.video-section {
    margin-bottom: 2rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: var(--color-surface);
    box-shadow: var(--shadow-soft);
    padding: clamp(1.25rem, 3vw, 2rem);
}

.video-section h2 {
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--color-brand);
    padding-left: 1rem;
    color: var(--color-brand-dark);
    font-size: clamp(1.35rem, 3vw, 1.85rem);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
    gap: 1.5rem;
}

.video-item {
    display: flex;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: #f8fafc;
}

.video-item h3 {
    margin: 0;
    padding: 1rem;
    color: var(--color-text);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
}

.video-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000000;
    aspect-ratio: 16 / 9;
}

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

.video-fallback {
    margin: 0;
    padding: 0.85rem 1rem 1rem;
    font-size: 0.95rem;
}

.video-fallback a {
    font-weight: 700;
}

.video-item:focus-within {
    outline: 3px solid var(--color-accent);
    outline-offset: 4px;
}

@media (max-width: 560px) {
    .video-page {
        width: min(100% - 1rem, var(--content-width));
        padding-top: 2rem;
    }

    .video-section {
        padding: 1rem;
    }

    .video-section h2 {
        padding-left: 0.75rem;
    }

    .video-item h3 {
        padding: 0.85rem;
        font-size: 1rem;
    }
}

@media print {
    .video-section {
        break-inside: avoid;
        box-shadow: none;
    }

    .video-container {
        display: none;
    }
}
