/* DASC MOB DESIGN — page styles: videos
   Shared components (page-hero light theme) live in assets/css/main.css. */

/* Two per row on desktop, one on phones. The 16/9 frame keeps rows even
   no matter what size/ratio the source videos are. */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
}
.video-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    background: var(--bg-mid);
    border: 1px solid var(--border);
    overflow: hidden;
}
.video-frame iframe,
.video-frame video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    object-fit: contain; /* different-sized sources letterbox cleanly */
    background: #000;
}
.video-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    margin: 14px 0 4px;
}
.video-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}
@media (max-width: 700px) {
    .videos-grid { grid-template-columns: 1fr; gap: 28px; }
}
