/* ============================================================
   ÇEVİKOĞLU LOJİSTİK — gallery.css
   Galeri sayfası video ızgarası (foto galeri main.css'te).
   ============================================================ */
.video-grid{display:grid; grid-template-columns:1fr; gap:var(--space-lg);}
@media(min-width:600px){.video-grid{grid-template-columns:repeat(2,1fr);}}
@media(min-width:992px){.video-grid{grid-template-columns:repeat(3,1fr);}}

.video-card{margin:0;}
.video-card video{width:100%; aspect-ratio:16/9; object-fit:cover; border-radius:var(--radius-md); background:#000; box-shadow:var(--shadow-sm); display:block;}
.video-card__title{margin-top:var(--space-sm); font-family:var(--font-heading); font-weight:600; font-size:.95rem; color:var(--color-heading);}
