/*
Event Details Cards Shortcode Styles 
*/
.ep-event-details-cards-wrapper {
  display: flex;
  font-family: "Wix Madefor Display", sans-serif !important;
  align-items: stretch;
  justify-content: start;
  gap: 20px;
  margin: 30px 0;
  padding: 0;
  flex-wrap: nowrap;
}

.ep-event-detail-card {
  background-color: transparent;
  border-radius: 20px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.12);
  /* Added vertical padding for better spacing */
  padding: 0px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center !important;
  /* align-items: center; */
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  /* flex: 1 1 240px; */
  min-width: 220px;
}

.ep-event-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.ep-card-value {
  font-size: 15px;
  color: #26022e;
  font-weight: bold;
  margin: 0;
}

@media (max-width: 820px) {
  .ep-event-details-cards-wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }

  .ep-event-detail-card {
    width: calc(50% - 10px);
  }
}

@media (max-width: 600px) {
  .ep-event-detail-card {
    width: 100%;
  }
}

.ep-presented-by-section {
  margin-top: 30px;
  margin-bottom: 20px;
}

.ep-presented-by-label {
  font-size: 14px;
  color: #888;
  margin: 0;
  font-weight: 400;
}

.ep-presented-by-name {
  font-size: 1.6em;
  /* Larger, more prominent */
  color: #26022e;
  /* Dark purple */
  margin: 5px 0 0 0;
  font-weight: 700;
  /* Bold */
  text-transform: uppercase;
  /* All caps */
  letter-spacing: 0.5px;
}

/* --- Event Description --- */
.ep-event-description {
  margin-top: 20px;
  margin-bottom: 30px;
  max-width: 600px;
  /* Constrain width for readability */
}

.ep-event-description p {
  font-size: 16px;
  line-height: 1.6;
  color: #4a4a4a;
  margin: 0;
}

/* --- Event Highlights Section --- */
.ep-event-highlights-section {
  margin-top: 40px;
  /* margin-bottom: 50px; */
}

.ep-event-highlights-title {
  font-size: 3em;
  /* Prominent title */
  color: #26022e;
  font-weight: 400;
  margin-bottom: 30px;
  text-align: left;
  /* Align to left as in Figma */
  position: relative;
  padding-bottom: 10px;
  /* Space for underline effect */
}

/* Underline effect for highlights title */
.ep-event-highlights-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  /* Shorter underline */
  height: 4px;
  /* Thicker underline */
  background-color: #8a2be2;
  /* Purple color */
  border-radius: 2px;
}

.ep-event-highlights-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  /* Stack highlights vertically */
  gap: 25px;
  /* Space between each highlight item */
}

.ep-highlight-item {
  padding-bottom: 5px;
  /* Padding at bottom for separator */
  border-bottom: 1px solid #d8d8d8;
  /* Light separator line */
}

.ep-highlight-item:last-child {
  border-bottom: none;
  /* No border for the last item */
  padding-bottom: 0;
}

.ep-highlight-item-title {
  font-size: 1.8em;
  /* Larger, bold title */
  color: #59076c;
  font-weight: 600;
  margin: 0 0 8px 0;
}

.ep-highlight-item-description {
  font-size: 15px;
  line-height: 1.5;
  color: #59076c;
  margin: 0;
}

/* --- Title Sponsor Section --- */
.ep-title-sponsor-section {
  margin-top: 10px;
  text-align: left;
  /* Align to left */
}

.ep-title-sponsor-heading {
  font-size: 3em;
  /* Prominent heading */
  color: #26022e;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  /* Space for underline effect */
}

/* Underline effect for sponsor title */
.ep-title-sponsor-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  /* Shorter underline */
  height: 4px;
  /* Thicker underline */
  background-color: #8a2be2;
  /* Purple color */
  border-radius: 2px;
}

.ep-title-sponsor-logo {
  margin-top: 20px;
}

.ep-title-sponsor-logo img {
  max-width: 200px;
  /* Constrain logo size as in Figma */
  height: auto;
  display: block;
  /* Remove extra space below image */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .ep-presented-by-name {
    font-size: 1.4em;
  }

  .ep-event-highlights-title {
    font-size: 2em;
    margin-bottom: 25px;
  }

  .ep-highlight-item-title {
    font-size: 1.2em;
  }

  .ep-title-sponsor-heading {
    font-size: 1.6em;
  }
}
@media (max-width: 600px) {
  .ep-event-details-cards-wrapper {
    margin-bottom: -35px !important;
  }
}
@media (max-width: 480px) {
  .ep-event-highlights-section {
    margin-top: 0 !important;
  }
  /* .ep-event-details-cards-wrapper {
    margin: 0 0 !important;
  } */
  .ep-presented-by-name {
    font-size: 1.2em;
  }

  .ep-event-description p {
    font-size: 15px;
  }

  .ep-event-highlights-title {
    font-size: 2em;
    margin-bottom: 20px;
  }

  .ep-highlight-item-title {
    font-size: 1.1em;
  }

  .ep-highlight-item-description {
    font-size: 14px;
  }

  .ep-title-sponsor-heading {
    font-size: 1.4em;
  }

  .ep-title-sponsor-logo img {
    max-width: 150px;
  }
}
