.videos {
    padding-top: 30px;
}

/* Container grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    padding: 2rem 0;
}

/* Each video as a “gallery object” */
.video-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    padding: 1rem;
    border: 1px solid #f8f8f8;
    box-shadow: 0 1px 2px rgba(0,0,0,0.015);
    border-radius: 5px;
    /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2); */
}

/* Maintain 16:9 aspect ratio for iframes */
.video-frame {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    overflow: hidden;
}
.video-frame iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
}

/* Caption in classic gallery label style */
.video-caption {
    margin-top: 1rem;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    width: 100%;
    text-align: center;
}
