@charset "UTF-8";
/**
 * Veranstaltungsübersicht – Frontend-Styles
 * Nutzt theme.json-Farben (primary, secondary), dezent und seriös.
 *
 * @package CMF_Veranstaltungsmanagement
 */
.cmf-veranst-uebersicht-error {
  padding: 1.5rem;
  text-align: center;
  border-radius: 0;
  background: var(--wp--preset--color--background, #ffffff);
  border: 1px solid #eeeeee;
  color: var(--wp--preset--color--foreground, #3f3f3f);
}

.cmf-veranst-uebersicht {
  font-family: inherit;
  color: var(--wp--preset--color--foreground, #3f3f3f);
  line-height: 1.6;
}
.cmf-veranst-uebersicht .cmf-veranst-keine {
  padding: 1.5rem;
  text-align: center;
  border-radius: 0;
  background: var(--wp--preset--color--background, #ffffff);
  border: 1px solid #eeeeee;
  color: var(--wp--preset--color--secondary, #8d8c8c);
}
.cmf-veranst-uebersicht a.cmf-veranst-eintrag {
  display: block;
  padding: 1.25rem 1.5rem;
  margin-bottom: 0.75rem;
  background: var(--wp--preset--color--background, #ffffff);
  border: 1px solid #eeeeee;
  border-radius: 0;
  box-shadow: none;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.cmf-veranst-uebersicht a.cmf-veranst-eintrag:last-child {
  margin-bottom: 0;
}
.cmf-veranst-uebersicht a.cmf-veranst-eintrag:hover {
  border-color: var(--wp--preset--color--primary, #3f3f3f);
}
.cmf-veranst-uebersicht a.cmf-veranst-eintrag:visited {
  color: inherit;
}
.cmf-veranst-uebersicht .cmf-veranst-datum-ort {
  font-size: 0.875rem;
  color: var(--wp--preset--color--secondary, #8d8c8c);
  margin-bottom: 0.35rem;
  letter-spacing: 0.02em;
}
.cmf-veranst-uebersicht .cmf-veranst-tag {
  display: inline-block;
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  margin-left: 0.5rem;
  background: var(--wp--preset--color--primary, #3f3f3f);
  color: var(--wp--preset--color--background, #ffffff);
  border-radius: 0;
  vertical-align: middle;
}
.cmf-veranst-uebersicht .cmf-veranst-titel {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--wp--preset--color--foreground, #3f3f3f);
}
.cmf-veranst-uebersicht .cmf-veranst-kurz {
  font-size: 0.9375rem;
  color: var(--wp--preset--color--secondary, #8d8c8c);
  margin-top: 0.5rem;
  line-height: 1.5;
}
.cmf-veranst-uebersicht .cmf-veranst-kategorien {
  margin-top: 0.75rem;
}
.cmf-veranst-uebersicht .cmf-veranst-kategorien ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.cmf-veranst-uebersicht .cmf-veranst-kategorien li {
  display: inline-block;
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  background: var(--wp--preset--color--background, #ffffff);
  color: var(--wp--preset--color--secondary, #8d8c8c);
  border-radius: 0;
  border: 1px solid #eeeeee;
}

@media (max-width: 640px) {
  .cmf-veranst-uebersicht .cmf-veranst-eintrag {
    padding: 1rem 1.25rem;
  }
  .cmf-veranst-uebersicht .cmf-veranst-titel {
    font-size: 1rem;
  }
}