.section-event-detail-title {
  position: relative;
  height: 325px;
}
.section-event-detail-title__back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  filter: grayscale(100%);
  z-index: 0;
}

.section-event-detail-title__back::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(0deg, rgb(32, 32, 32) 10%, #1e1e1ec6 97%);
}
.section-event-detail-title__container {
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-end;
  z-index: 1;
}
.section-event-detail-title__title {
  display: inline-block;
  color: white;
  font-size: 22px;
}

@media (min-width: 576px) {
  .section-event-detail-title {
    height: 450px;
  }
}

@media (min-width: 768px) {
  .section-event-detail-title {
    height: 550px;
  }
}

@media (min-width: 1024px) {
  .section-event-detail-title {
    height: 650px;
  }
}

@media (min-width: 1240px) {
  .section-event-detail-title {
    height: 800px;
  }
  .section-event-detail-title__back {
    position: relative;
    background-size: cover;
    width: 1440px;
    margin: 0 auto;
  }
  .section-event-detail-title__back::before {
    content: "";
    position: absolute;
    z-index: 0;
    inset: 0;
    background: radial-gradient(
      circle at center top,

      rgba(30, 30, 30, 0.78) 30%,
      rgb(32, 32, 32) 65%
    );
  }
}
