/* ========================================
   Videos page — strip padding / hero whitespace
   (loaded only on /videos/ via front matter)
   ======================================== */

/* The shared .hero is full-viewport-height elsewhere;
   here it just holds the title, so collapse it.
   Top offset only clears the fixed 71px navbar. */
.hero {
    min-height: 0;
    padding: 88px 0 12px;
}

/* Remove the container side gutters */
.container {
    padding: 0;
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0 8px;
    }
    .container {
        padding: 0;
    }
}
