body {
  margin-top: 40px;
}

/* Flyers Section */
.flyers-section {
  padding: 3rem 1rem;
}

/* Grid Layout */
.flyer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

/* Flyer Container */
.flyer-item {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4; /* poster-style ratio */
  overflow: hidden;
  border-radius: 8px;
  background: #000;
}

/* Image Handling */
.flyer-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* handles portrait & landscape */
  transition: transform 0.3s ease;
}

/* Hover Effect */
.flyer-item:hover img {
  transform: scale(1.05);
}

/* ================================
   2019 Video Section
   ================================ */

.video-section {
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.facebook-video-wrapper {
  max-width: 720px;     /* controls overall size */
  margin: 0 auto;       /* centers the video */
  padding: 0 1rem;      /* prevents edge clipping on mobile */
}

/* Optional: slightly taller ratio for Facebook videos */
.facebook-video-wrapper .facebook-responsive {
  padding-bottom: 56.25%; /* 16:9 */
}
