body {
  font-family: Arial, sans-serif;
  background: inherit; /* Use the site's background instead of forcing */
  margin: 0;
  overflow-x: hidden; /* Still good to prevent horizontal shift */
}

/* Reuse this for full-width solo videos */
.promo-video-wrapper {
  max-width: 700px;
  margin: 2rem auto;
  padding: 1rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0);
  background: transparent; /* Add background here if needed */
}

.promo-video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  background: #000;
  border: none;
  border-radius: 16px;
}

/* This supports the stacked multi-video layout */
.video-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.video-block {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  background: transparent;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0);
  padding: 1rem;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.video-wrapper video {
  width: 320px;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.video-text {
  flex: 1;
  min-width: 200px;
}

.video-text h3 {
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
}

.video-text p {
  font-size: 1rem;
  color: #333;
}

/* Global control hiding for all videos */
video::-webkit-media-controls-mute-button,
video::-webkit-media-controls-volume-slider,
video::-webkit-media-controls-fullscreen-button {
  display: none !important;
}

video::-webkit-media-controls-timeline {
  display: none !important;
}

/* 📱 Mobile Responsive Stacking */
@media (max-width: 768px) {
  .video-block {
    flex-direction: column;
    padding: 1rem;
    text-align: center;
  }

  .video-wrapper video {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .video-text {
    padding-top: 1rem;
  }

  .video-text h3 {
    font-size: 1.3rem;
  }

  .video-text p {
    font-size: 0.95rem;
  }

}