.team-image {
  width: 75%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
}

.content-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem;
  font-family: Arial, sans-serif;
  color: #333;
}

.text-center {
  text-align: center;
}

.spacer-small {
  height: 1rem; /* Vorher: 2rem */
}

.button-group .btn {
  display: inline-block;
  margin: 0.25rem 0.5rem;
  padding: 0.5rem 1.2rem;
  background-color: #104789;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  font-size: 0.95rem;
}

.button-group .btn:hover,
.button-group .btn:focus {
  background-color: #0056b3;
  outline: none;
}

.image-wrapper {
  margin-top: 1.2rem; /* Vorher: 2rem */
}

.responsive-img {
  max-width: 100%;
  height: auto;
}

.rounded-corners {
  border-radius: 10px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  padding: 2rem;
}

.team-card {
  text-align: center;
}

.team-card img {
  width: 100%;
  aspect-ratio: 16 / 9;         /* Erzwingt Querformat */
  object-fit: cover;
  border-radius: 1rem;
  display: block;
}

/* Link-Stil */
.team-card a {
  font-weight: bold;
  font-size: 1.1rem;
  text-decoration: none;
  color: #222;
  display: inline-block;
  margin-top: 0.75rem;
}

.team-card a:hover,
.team-card a:focus {
  color: #0056b3;
  outline: none;
  text-decoration: underline;
}

/* Responsive: Optional, da aspect-ratio skaliert automatisch */
@media (max-width: 600px) {
  .team-card img {
    aspect-ratio: 4 / 3; /* Leicht anderes Seitenverhältnis auf kleinen Geräten, falls gewünscht */
  }
}

.article-header h1[itemprop="headline"] {
  text-align: center !important;
  margin: 0 auto !important;
  display: block;
}

/* Bildzentrierung mit fixer Breite */
.team-image2 {
  display: block;
  margin: 0 auto 1.5em auto; /* Weniger Abstand unter dem Bild */
  max-width: 100%;
  width: 600px;
  height: auto;
}

.team-image2 img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

/* Tabellen-Wrapper für zentrierte Ausrichtung */
.team-table-wrapper {
  display: flex;
  justify-content: center;
}

/* Standard-Teamtabelle */
.team-table {
  border-collapse: collapse;
  width: 100%;
  max-width: 800px;
  text-align: left;
  font-family: Arial, sans-serif;
}

.team-table td {
  border: 1px solid #ccc;
  padding: 8px;
}

.team-table td:first-child {
  font-weight: bold;
}

/* Flyer-Wrapper analog zur Tabelle */
.team-flyer-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 1.5em; /* Gleicher Abstand wie unter Bild */
}

/* Flyer-Bild */
.team-flyer img {
  max-width: 500px;
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Anpassung für Button-Listen im Grid mit 2-4 Buttons pro Reihe */
.button-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: calc(3 * 220px + 2 * 1rem); /* Etwas breiter, damit Text reinpasst */

  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 Spalten */
  gap: 0.8rem 1rem;
}

.button-list .btn {
  display: block;
  width: 100%;
  min-width: 220px;           /* Mindestens so breit, damit Text nicht umbrechen muss */
  white-space: nowrap;        /* Kein Umbruch im Button-Text */
  padding: 0.6rem 1.2rem;
  background-color: #104789;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  box-sizing: border-box;
  transition: background-color 0.3s ease;
  cursor: pointer;
  user-select: none;
  border: none;
}

.button-list .btn:hover,
.button-list .btn:focus {
  background-color: #0056b3;
  outline: none;
}

/* NEU: Responsive Anpassung für kleine Bildschirme */
@media (max-width: 600px) {
  .button-list {
    grid-template-columns: 1fr; /* nur eine Spalte */
    max-width: 100%; /* volle Breite */
  }

  .button-list .btn {
    min-width: auto;  /* keine Mindestbreite */
    white-space: normal; /* Button-Text darf umbrechen */
    font-size: 1.1rem; /* evtl. etwas größere Schrift */
  }
}
<style>
.turnierordnung {
  padding: 1rem;
  font-size: 1rem;
  line-height: 1.6;
}
.turnierordnung ol {
  margin-left: 1.5rem;
}
.turnierordnung li {
  margin-bottom: 0.75rem;
}
.turnierordnung .text-end {
  text-align: right;
}
</style>