/* Modern Event Details Page Styles */
.eem-event-details-container {
  max-width: 600px;
  margin: 48px auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  padding: 36px 32px 32px 32px;
  font-family: 'Segoe UI', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.eem-event-details-image {
  width: 100%;
  max-width: 420px;
  height: 260px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  margin-bottom: 28px;
  background: #f0f0f0;
}
.eem-event-details-title {
  font-size: 2.1em;
  color: #1a237e !important;
  font-weight: 700;
  margin-bottom: 18px;
  text-align: center;
}
.eem-event-details-meta {
  width: 100%;
  margin-bottom: 18px;
  text-align: center;
  color: #222 !important;
}
.eem-event-details-meta span {
  display: inline-block;
  margin: 0 12px;
  color: #1976d2 !important;
  font-weight: 600;
  font-size: 1.08em;
}
.eem-event-details-description {
  color: #222 !important;
  font-size: 1.13em;
  margin-top: 10px;
  text-align: center;
  line-height: 1.6;
  word-break: break-word;
}
@media (max-width: 700px) {
  .eem-event-details-container {
    padding: 18px 4vw 18px 4vw;
    max-width: 98vw;
  }
  .eem-event-details-image {
    height: 160px;
    max-width: 98vw;
  }
  .eem-event-details-title {
    font-size: 1.3em;
  }
} 