.videos-hero {
  padding: 6rem 2rem 4rem;
  text-align: center;
  margin-top: 0;
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../../assets/teri-drums-enhanced.jpg");
  background-size: cover;
  background-position: center 50%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}

.videos-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(48, 92, 222, 0.1),
    rgba(26, 35, 126, 0.9)
  );
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .videos-hero {
    padding: 5rem 1.5rem 3rem;
    min-height: 35vh;
    background-attachment: scroll;
  }
}

@media (max-width: 900px) {
  .videos-hero {
    padding: 5rem 1.5rem 3rem;
    min-height: 35vh;
    background-attachment: scroll;
  }
}

@media (max-width: 768px) {
  .videos-hero {
    padding: 5rem 1.5rem 3rem;
    min-height: 40vh;
    background-attachment: scroll;
  }
}

@media (max-width: 480px) {
  .videos-hero {
    padding: 4rem 1rem 2.5rem;
    min-height: 30vh;
    background-attachment: scroll;
    background-position: center center;
  }
}
