/* bush.css - styles for the Bush video section */

#bush {
  background: #f8f9fa;
}

#bush .bush-video-wrapper {
  width: 100%;
  max-width: 500px; /* requested width */
  margin: 0 auto;
  overflow: hidden;
}

#bush .bush-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Smaller screens: reduce the max width so it fits nicely */
@media (max-width: 768px) {
  #bush .bush-video-wrapper {
    max-width: 420px;
  }
}

@media (max-width: 576px) {
  #bush .bush-video-wrapper {
    max-width: 320px;
  }
}