/* ── Fiasko Termine – Basis-Styles ── */

#pills-all,
#pills-all-mobile {
  display: block !important;
  visibility: visible !important;
  width: 100%;
  min-height: 20px;
}

.fiasko-dates {
  display: block;
  width: 100%;
}

/* Desktop: Datum+Titel links, Ort rechts – nebeneinander */
.fiasko-date-item {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

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

.fiasko-date-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1 1 auto;
  min-width: 0;
}

.fiasko-date-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex: 0 0 auto;
  text-align: right;
}

.fiasko-date-date {
  font-size: 0.85em;
  opacity: 0.7;
}

.fiasko-date-title {
  font-size: 1em;
  font-weight: 600;
}

.fiasko-date-place {
  font-size: 0.85em;
  opacity: 0.75;
  white-space: nowrap;
}

.fiasko-date-link {
  display: inline-block;
  padding: 5px 14px;
  border: 1px solid currentColor;
  border-radius: 3px;
  font-size: 0.8em;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.fiasko-date-link:hover {
  opacity: 0.7;
}

/* Tablet + Mobile: alles untereinander */
@media (max-width: 800px) {
  .fiasko-date-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .fiasko-date-right {
    align-items: flex-start;
    text-align: left;
  }

  .fiasko-date-place {
    white-space: normal;
  }
}
