/* Hilfsklassen für Abstände und Layout */
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }


h2 {
  position: relative;
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 24px; /* Größe der Überschrift */
  margin: 40px 0; /* Abstand nach oben und unten */
}

h2::before {
  content: "";
  display: inline-block;
  width: 40px;      /* Breite des linken Blocks */
  height: 20px;     /* Höhe des linken Blocks */
  background-color: #7a5af8a1;
  clip-path: polygon(0 0, 80% 0, 100% 100%, 20% 100%);
  margin-right: 10px; /* Abstand zwischen Block und Überschrift */
}

h2::after {
  content: "";
  flex: 1;           /* Linie nimmt den verbleibenden Platz ein */
  height: 4px;      /* Höhe der Trennlinie */
  background-color: #7a5af8a1;

  margin-left: 10px; /* Abstand zwischen Überschrift und Linie */

}

h3 {
  font-size: 18px; /* Etwas kleiner als h2 */
  margin: 30px 0; /* Abstand nach oben und unten */
}

/* Hilfsklassen mit u- Präfix (vermeidet Konflikte) */

/* Textausrichtung */
.u-text-left { text-align: left !important; }
.u-text-center { text-align: center !important; }
.u-text-right { text-align: right !important; }

/* Schriftstärke */
.u-fw-400 { font-weight: 400 !important; }
.u-fw-500 { font-weight: 500 !important; }
.u-fw-600 { font-weight: 600 !important; }
.u-fw-700 { font-weight: 700 !important; }

/* Textfarbe */
.u-text-muted { color: #a0a0a0 !important; }
.u-text-light { color: #e6e6e6 !important; }
.u-text-accent { color: #7a5af8a1 !important; }

/* Anzeigeverhalten */
.u-block { display: block !important; }
.u-inline { display: inline !important; }
.u-inline-block { display: inline-block !important; }
.u-flex { display: flex !important; }
.u-grid { display: grid !important; }

/* Flex-Hilfsmittel */
.u-flex-wrap { flex-wrap: wrap !important; }
.u-items-start { align-items: flex-start !important; }
.u-items-center { align-items: center !important; }
.u-items-end { align-items: flex-end !important; }
.u-justify-start { justify-content: flex-start !important; }
.u-justify-center { justify-content: center !important; }
.u-justify-end { justify-content: flex-end !important; }
.u-justify-between { justify-content: space-between !important; }
.u-justify-around { justify-content: space-around !important; }
.u-justify-evenly { justify-content: space-evenly !important; }

/* Abstände zwischen Flex-/Grid-Elementen */
.u-gap-1 { gap: 0.25rem !important; }
.u-gap-2 { gap: 0.5rem !important; }
.u-gap-3 { gap: 1rem !important; }
.u-gap-4 { gap: 1.5rem !important; }
.u-gap-5 { gap: 2rem !important; }

/* Außenabstände */
.u-m-0 { margin: 0 !important; }
.u-mt-1 { margin-top: 0.25rem !important; }
.u-mt-2 { margin-top: 0.5rem !important; }
.u-mt-3 { margin-top: 1rem !important; }
.u-mt-4 { margin-top: 1.5rem !important; }
.u-mt-5 { margin-top: 2rem !important; }
.u-mb-1 { margin-bottom: 0.25rem !important; }
.u-mb-2 { margin-bottom: 0.5rem !important; }
.u-mb-3 { margin-bottom: 1rem !important; }
.u-mb-4 { margin-bottom: 1.5rem !important; }
.u-mb-5 { margin-bottom: 2rem !important; }
.u-mx-auto { margin-left: auto !important; margin-right: auto !important; }

/* Innenabstände */
.u-p-0 { padding: 0 !important; }
.u-pt-1 { padding-top: 0.25rem !important; }
.u-pt-2 { padding-top: 0.5rem !important; }
.u-pt-3 { padding-top: 1rem !important; }
.u-pt-4 { padding-top: 1.5rem !important; }
.u-pt-5 { padding-top: 2rem !important; }
.u-pb-1 { padding-bottom: 0.25rem !important; }
.u-pb-2 { padding-bottom: 0.5rem !important; }
.u-pb-3 { padding-bottom: 1rem !important; }
.u-pb-4 { padding-bottom: 1.5rem !important; }
.u-pb-5 { padding-bottom: 2rem !important; }
.u-px-1 { padding-left: 0.25rem !important; padding-right: 0.25rem !important; }
.u-px-2 { padding-left: 0.5rem !important; padding-right: 0.5rem !important; }
.u-px-3 { padding-left: 1rem !important; padding-right: 1rem !important; }
.u-py-1 { padding-top: 0.25rem !important; padding-bottom: 0.25rem !important; }
.u-py-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
.u-py-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }

/* Größenangaben */
.u-w-100 { width: 100% !important; }
.u-h-100 { height: 100% !important; }
.u-max-w-100 { max-width: 100% !important; }

/* Sonstiges */
.u-hidden { display: none !important; }

