.events > div {
  max-width: 900px;
  margin: 0 auto;
}
.events > div .block-title {
  font-size: 40px;
  margin-bottom: 80px;
  line-height: 60px;
}
.events .event-list {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.events .event-list .secondaries {
  display: flex;
  justify-content: start;
  flex-direction: column;
  gap: 50px;
}
.events .event-list .more-link-wrapper {
  display: flex;
  justify-content: end;
}

.event {
  text-decoration: none;
  color: initial;
}
.event .content {
  display: flex;
  flex: 300px 1;
  flex-direction: row-reverse;
  gap: 20px;
}
.event .content .presentation {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.event .content .presentation .title {
  margin: 0;
  display: flex;
  gap: 20px;
  align-items: center;
}
.event .content .presentation .title::after {
  content: "";
  display: block;
  height: 30px;
  width: 30px;
  background-image: url(../images/pictos/chevron-right.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.event .content .presentation .package-price {
  display: flex;
  justify-content: center;
  gap: 10px;
  color: #4e539d;
}
.event .content .presentation .package-price .title {
  font-weight: bold;
}
.event .content .presentation .package-price .title::before {
  content: "";
  display: block;
  height: 40px;
  width: 50px;
  background-image: url(../images/taxi.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.event .content .date-range {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.event .content .date-range .dates, .event .content .date-range .times {
  margin: 0;
}
.event .content .date-range .dates {
  margin-top: 12px;
}

@media screen and (max-width: 425px) {
  .event .content {
    flex-direction: column;
  }
}
.cover-wrapper {
  position: relative;
}
.cover-wrapper video,
.cover-wrapper iframe {
  width: 100%;
  height: 60vh;
  min-height: 500px;
}
.cover-wrapper .layer {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position-x: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 10;
  cursor: pointer;
}
.cover-wrapper .layer::before {
  content: "";
  position: absolute;
  top: 0;
  left: -1px;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: rgba(0, 0, 0, 0.3);
}
.cover-wrapper .play-icon {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 36px;
  height: 36px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../images/pictos/play.svg);
  z-index: 20;
}
.cover-wrapper.active {
  background-image: none;
}
.cover-wrapper.active .layer,
.cover-wrapper.active .play-icon {
  display: none;
}

/*# sourceMappingURL=event.css.map */
