.event-event-info-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 48px;
  padding-bottom: 48px;
  background: #fff;
}

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

.event-info-container {
  width: 100%;
  max-width: 1300px;
}

.event-info-date-location-container {
  margin-bottom: 48px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}

.event-info-details-hidden {
  display: none !important;
}

.event-info-date,
.event-info-location,
.event-info-details-content {
  width: 100%;
  max-width: 420px;
}

.event-info-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 60px;
  margin-bottom: 12px;
  color: #000;
  width: 100%;
}

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

.event-info-date-content,
.event-info-location-content,
.event-info-details-content {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}

.event-info-img {
   display: flex;
   justify-content: center;
   align-items: center;
   width: 90px;
   height: 90px;
   min-width: 90px;
   min-height: 90px;
   border-radius: 50%;
}

.event-info-text p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size 14px;
  line-height: 20px;
  margin: 0;
  color: #000;
}

.event-event-info-dark-mode .event-info-text p {
  color: #fff;
}

.event-info-text p:first-child {
  font-family: "Lora", serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
}

.event-info-details-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

@media screen and (max-width: 1018px) {
  .event-event-info-section {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  
  .event-info-date-location-container {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .event-info-details-container {
    justify-content: flex-start;
  }
}

@media screen and (max-width: 768px) {
  .event-info-title {
    font-size: 28px;
    line-height: 35px;
  }
  
  .event-info-text p:first-child {
    font-size: 20px;
    line-height: 25px;
  }
}

