/* styles.css
   Zweck: zentrale Import-Datei. Lädt Basis-Variablen und die modulare CSS-Struktur.
   Reihenfolge: base -> layout -> components -> pages
*/
@import url('base.css');
@import url('layout.css');
@import url('components.css');
@import url('pages.css');

.team-flex {
  display: flex;
  align-items: flex-start;
  gap: 2em;
  margin-top: 1em;
}
.team-flex img {
  flex-shrink: 0;
}
.team-text {
  flex: 1;
}
@media (max-width: 700px) {
  .team-flex {
    flex-direction: column;
    gap: 1em;
  }
}

.team-photo {
  max-width: 320px;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

@media (max-width: 700px) {
  .team-photo {
    max-width: 100%;
  }
}

/* Ende von styles.css */