/* VERANSTALLTUNGEN */


/* Container */
.veranstaltungen {
}

/* Sections */
.veranstaltungen-section.vergangene {
}
.veranstaltungen-section h2 {
}
.intro-text {
}
.intro-text strong {
  color: #e61c75;
}
/* Jahresmarker */
.jahresmarker {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 4px solid #e61c75;
}

.jahr {
  font-size: 1.5rem;
  font-weight: bold;
  color: #e61c75;
}

.deko {
  font-size: 1.8rem;
  color: #d7a94a;
}

/* Terminliste */
/* Terminliste */
.termin-liste {
  list-style: none;
  padding: 0 !important;
  margin: 0 !important;
  background-color: background-color: rgba(255,255,255,.4);
  border: 1px solid #d7a94a;
  border-radius: 12px;
  padding: 0 !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.termin-item {
  display: grid;
  grid-template-columns: 80px 2fr 3fr 1fr 1fr 50px;
  gap: 12px;
  padding: 12px;
  border-bottom: 1px solid #f0f0f0;
  align-items: start;
}

.termin-item:last-child {
  border-bottom: none;
}

.termin-item:hover {
  background-color: #fff1d4;
  transition: all 0.2s ease;
}

.termin-spalte {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.termin-datum {
  font-weight: bold;
  color: #e61c75;
  font-size: 0.9rem;
  flex-shrink: 0;
  min-width: 80px;
}

.termin-titel {
  color: #333;
  line-height: 1.5;
  font-weight: 500;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.termin-beschreibung {
  color: #000;
  font-size: 0.85rem;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.termin-ort {
  color: #000;
  font-size: 0.9rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.termin-link {
  color: #0073aa;
  font-size: 0.85rem;
  word-break: break-all;
  overflow-wrap: break-word;
}

.termin-link a {
  color: #0073aa;
  text-decoration: none;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.termin-link a:hover {
  text-decoration: underline;
}

.termin-bild {
  min-width: 50px;
  max-width: 50px;
  text-align: center;
}



/* Responsive - erst ab kleinen Bildschirmen untereinander */
@media (max-width: 768px) {
  .termin-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

