.event-section {
  padding-left: 90px;
  padding-right: 90px;
}

.event-hero-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 144px;
}

.event-hero-section-background {
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
}

.event-hero-dark-mode {
  background-color: #000;
}

.event-hero-container {
  width: 100%;
  max-width: 1300px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 130px;
}

.event-hero-text-container {
  padding-bottom: 84px;
}

.event-hero-text-container .event-hero-title {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 50px;
  line-height: 60px;
  margin-bottom: 20px;
  color: #000;
}

.event-hero-dark-mode .event-hero-title {
  color: #fff;
}

.event-hero-text-container .event-hero-subtitle {
  font-family: "Lora", serif;
  font-weight: 700;
  font-size: 42px;
  line-height: 50px;
  margin-bottom: 48px;
  color: #000;
}

.event-hero-dark-mode .event-hero-subtitle {
  color: #fff;
}

.event-hero-text-container .event-hero-paragraph,
.event-hero-text-container .event-hero-paragraph p,
.event-hero-text-container .event-hero-paragraph span,
.event-hero-text-container .event-hero-paragraph span strong,
.event-hero-text-container .event-hero-paragraph span em,
.event-hero-text-container .event-hero-paragraph a {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: 20px;
  font-size: 16px;
  color: #000;
}

.event-hero-text-container strong,
.event-hero-text-container strong > em,
.event-hero-text-container strong > span,
.event-hero-text-container strong > a {
  font-weight: 700 !important;
}

.event-hero-text-container .event-hero-paragraph a {
  text-decoration: underline;
  display: unset;
  overflow: unset;
  position: unset;
}

.event-hero-text-container .event-hero-paragraph span bold {
  font-weight: bold;
}

.event-hero-dark-mode .event-hero-paragraph,
.event-hero-dark-mode .event-hero-paragraph p,
.event-hero-dark-mode .event-hero-paragraph span,
.event-hero-dark-mode .event-hero-paragraph span strong,
.event-hero-dark-mode .event-hero-paragraph span em,
.event-hero-dark-mode .event-hero-paragraph a{
  color: #fff;
}

.event-hero-details-container {
  width: 100%;
  max-width: 270px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  background: #fff;
}

.event-hero-details-container .event-hero-promoted-container {
  background: #000;
  width: 100%;
  padding: 6px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
}

.event-hero-details-container .event-hero-promoted-container.promoted-hidden {
  visibility: hidden;
}

.event-hero-promoted-container .event-hero-promoted-text {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 16px;
}

.event-hero-calendar-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 90px;
  min-width: 90px;
  min-height: 90px;
  border-radius: 50%;
  margin-bottom: 20px;
  margin-right: 20px;
}

.event-hero-date-location-container {
  margin-right: 20px;
}

.event-hero-date-location-container .event-hero-date,
.event-hero-date-location-container .event-hero-location {
  font-family: "Poppins", sans-serif;
  font-size: 26px;
  line-height: 35px;
  text-align: right;
}

.event-hero-date-location-container .event-hero-date {
  font-weight: 700;
}

.event-hero-date-location-container .event-hero-location {
  margin-top: 0;
  font-weight: 300;
}

.event_dark_mode .event-hero-section-background{
  background-color: #000;
}

@media screen and (max-width: 1440px) {
  .event-section {
    padding-left: 70px;
    padding-right: 70px;
  }
}

@media screen and (max-width: 1018px) {
  .event-hero-section {
    padding-top: 70px;
  }
  
  .event-hero-container {
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 0;
  }
}

@media screen and (max-width: 768px) {
  .event-hero-container {
    align-items: center;
  }
  
  .event-hero-text-container .event-hero-title {
    font-size: 38px;
    line-height: 50px;
    margin-bottom: 12px;
  }
  
  .event-hero-text-container .event-hero-subtitle {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 24px;
  }
  
  .event-hero-text-container {
    padding-bottom: 24px;
  }
}

@media screen and (max-width: 425px) {
  .event-section {
    padding-left: 20px;
    padding-right: 20px;
}

