/* Mannschaften-Listen */
.mannschaften-liste { display: grid; gap: 16px; }
.mannschaft-card {  border-radius: 10px; padding: 14px;  box-shadow:0 1px 2px rgba(0,0,0,.03); }
.mannschaft-card img { border-radius: 8px; max-width: 100%; height: auto; }

/* Details-Tabelle */
.mannschaft-details-table { border-collapse: collapse; }
.mannschaft-details-table th { background: black; text-align: left; padding: .4rem .6rem; border: 1px solid #ddd; }
.mannschaft-details-table a {color: #fff000; text-decoration: none;}
.mannschaft-details-table td { padding: .4rem .6rem; border: 1px solid #ddd; }


.foto-legende {max-width:800px; margin:0 auto; padding:0.5em 1em 1em 1em; box-sizing: border-box; background-color: #ddd; margin-top:-10px;}


.col_collapsible {
  cursor: pointer;
  width: 100%;
  position: relative;
  padding-left: 2rem;
}
.col_collapsible:after {
  content: '\2630';
  font-weight: bold;
  position:absolute;
  left:0;
  color:grey;
}
.col_collapsible.active:after {
  content: "×";
  color: grey;
}
.col_content {
  padding: .3rem .6rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height .2s ease-out;
  
}
.col_stats { display:flex; gap:1rem; font-size:.85em; }
.table-row.highlight { background: rgba(255,255,0,.2); }



.hero-mannschaft {
  min-height: 40vh; /* Höhe anpassen */
  display:flex;
  align-items:center;
  justify-content:center;
}
.hero-mannschaft img.wp-block-cover__image-background {
  filter: brightness(0.8);
}
.hero-mannschaft figure img {
  max-width:150px;
}
