/* Fehlerhervorhebung für Pflichtfelder – identisch für alle Formulare */
.wem-field-error input,
.wem-field-error select,
.wem-field-error textarea,
input.wem-field-error,
select.wem-field-error,
textarea.wem-field-error {
  border-color: #b32d2e !important;
  box-shadow: 0 0 0 3px rgba(179, 45, 46, 0.15);
  background-color: #fff8f8;
}

/* Optionale Hervorhebung für Checkbox-Container */
.wem-field-error {
  border-radius: 3px;
}

/* Meldungsboxen im Formular */
.wem-submit-message,
.wem-msg {
  margin-top: 6px;
}


/* -------------------------------
 * Eventliste (Elementor-Widget)
 * ------------------------------- */
.wem-event-list {
  margin: 0;
  padding: 0;
}

.wem-event-list__item {
  margin: 0 0 24px;
}

.wem-event-list__inner {
  position: relative;
  display: flex;
  gap: 24px;
  padding: 16px 24px 40px;
  background: #ffffff;
  border-left: 4px solid #1f73be;
}

/* blauer Balken am unteren Rand */
.wem-event-list__inner::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 40px;
  background: #1f73be;
  z-index: 0;
}

/* linke Datumsspalte */
.wem-event-list__date {
  min-width: 70px;
  text-align: center;
  font-weight: 600;
}

.wem-event-list__date-month {
  font-size: 14px;
}

.wem-event-list__date-day {
  font-size: 32px;
  line-height: 1.1;
}

.wem-event-list__date-year {
  font-size: 14px;
}

/* Inhalte rechts */
.wem-event-list__content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.wem-event-list__title {
  margin: 0 0 4px;
}

.wem-event-list__locations {
  margin-bottom: 4px;
}

.wem-event-list__deadline {
  color: #c00;
  font-weight: 600;
  margin-bottom: 4px;
}

.wem-event-list__range {
  color: #ffffff;
  font-weight: 600;
  margin-top: 8px;
}

/* Responsive: untereinander auf schmalen Bildschirmen */
@media (max-width: 767px) {
  .wem-event-list__inner {
    flex-direction: row;
    padding: 12px 16px 36px;
  }
}
