  /* eigene 1/5-Spalte definieren */
  .col-5th {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .image-text-teaser__headline {
    min-height: 70px;
  }

  /* Responsive Anpassungen */
  @media (max-width: 992px) { /* md - Tablets */
    .col-5th {
      flex: 0 0 33.3333%;
      max-width: 33.3333%;
    }
  }

  @media (max-width: 576px) { /* sm - Smartphones */
    .col-5th {
      flex: 0 0 50%;
      max-width: 50%;
    }
  }
  
  /*#speakersContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.speaker-image {
  border-radius: 50%;
  overflow: hidden;
  width: 96px;
  height: 96px;
  display: inline-block;
}

.speaker-image img {
  width: 100%;
  height: auto;
}

.speaker-name {
  font-weight: 600;
  font-size: 16px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin-bottom: 0.25rem;
}

.speaker-title {
  color: var(--portalThemeColor10);
  margin-bottom: 0.5rem;
}

.speaker-content {
  text-align: center;
  margin-bottom: 2rem;
}

.speaker-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6rem;
}

.speaker-item {
  text-align: center;
  margin: 1rem;
}

.view-more-btn {
  padding: 0.5rem 1rem;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1rem;
  margin: 1rem;
  cursor: pointer;
  background: none;
  border: 1px solid var(--portalThemeColor1);
  color: var(--portalThemeColor9);
  cursor: pointer;
  width: 130px;
  height: fit-content;
  border-radius: 4px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  font-weight: 500;
  padding: 10px;
}

.speaker-item.hidden {
  display: none;
}

#toggleSpeakersBtn {
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1rem;
  margin: 1rem;
  cursor: pointer;
  background: none;
  border: 1px solid var(--portalThemeColor1);
  color: var(--portalThemeColor9);
  cursor: pointer;
  width: 104px;
  height: fit-content;
  border-radius: 4px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  font-weight: 600;
  padding: 9px;
}
*/