/*--------------------------------------------------------------
# Download-Grid-Fix – Download-Bereich (#antrag)
# Erzwingt gleich breite Download-Karten unabhängig vom
# Bootstrap-Grid. Genutzt in: mitglieder.html
--------------------------------------------------------------*/

/* Erzwingt für alle Download-Karten dieselbe Bild-Proportion */
#antrag .member-img {
  aspect-ratio: 679 / 964;
  overflow: hidden;
}

#antrag .member-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Erzwingt 4 gleich breite Spalten, unabhängig vom Bootstrap-Grid */
#antrag .row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

#antrag .row > div {
  width: 100%;
  max-width: 100%;
  flex: none;
}

@media (max-width: 991px) {
  #antrag .row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575px) {
  #antrag .row { grid-template-columns: 1fr; }
}
