@font-face {
  font-family: 'RobotoCondensed';
  src: url('../fonts/RobotoCondensed-VariableFont_wght.ttf') format('truetype');
  font-weight: 400;
  /* Ersetzen Sie 400 durch das korrekte Gewicht Ihrer Schriftart */
  font-style: normal;
  font-display: swap;
  /* Sorgt dafür, dass der Text sichtbar bleibt, während die Schriftart geladen wird */
}

body {
  font-family: "RobotoCondensed", sans-serif !important;
  font-size: 14pt;
  margin: 3em;
  /* 1. Aktiviert die automatische Silbentrennung */
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
}

/* Beispiel für Ihre CSS-Datei, falls Sie kein reines Tailwind verwenden */
.search-highlight {
  background-color: #fce8a6;
  /* Ein dezentes Gelb */
  font-weight: bold;
  padding: 1px 3px;
  border-radius: 3px;
}

/* lc: Left-aligned, Content wraps Right (float left) */
.lc {
  float: left;
  margin: 0 8px 8px 0;
  /* Oben Rechts Unten Links */
  border-radius: 12px;
}

/* rc: Right-aligned, Content wraps Left (float right) */
.rc {
  float: right;
  margin: 0 0 8px 8px;
  /* Oben Rechts Unten Links */
  border-radius: 12px;
}

/* cbc: Centered, Clear Both (breaks current flow) */
.cbc {
  clear: both;
  /* Beendet das Umfließen von Text */
  display: block;
  /* Stellt sicher, dass das Element als Block behandelt wird */
  margin: 16px auto;
  /* Etwas mehr vertikaler Abstand (16px) und zentriert (auto) */
  border-radius: 12px;
}

/* Timeline-Swiper */
.timeline-slider {
  width: 100%;
  height: 400px;
  padding: 50px 0;
  overflow: hidden;
  position: relative;
}

.swiper-wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ccc;
  transform: translateY(-50%);
  z-index: 1;
}

.timeline-item {
  width: 300px;
  text-align: center;
  position: relative;
  z-index: 2;
}

article img {
	border-radius: 8px;
}

/* Styling für die aktive Swiper-Pagination im Haupt-Stylesheet */
.swiper-pagination-bullet-active {
  /* Setzt die Hintergrundfarbe auf den gewünschten Amber-Farbton */
  background: #78350F !important;
  /* Tailwind amber-900 Hex-Wert */
  opacity: 1 !important;
}

/* Optional: Damit die Pfeile auch sichtbar sind, falls Tailwind sie überschreibt */
.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  /* Muss absolut sein */
  z-index: 10;
  /* Muss hoch sein */
  cursor: pointer;
}

/* Auf kleinen Bildschirmen (Standard) die Pfeile etwas nach außen schieben */
@media (max-width: 1023px) {
  .swiper-button-prev {
    left: 5px !important;
  }

  .swiper-button-next {
    right: 5px !important;
  }
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    margin: 1rem 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}