#GW_team {
  width: 100%;
  max-width: 1200px;
}

/* ═══════════════════════════════════════
   EINZELNE TEAM-KARTE
═══════════════════════════════════════ */
.GW_team_card {
  background: var(--f002);
  border: solid 1px var(--f004);
  border-top: none;
  padding: 30px 30px 30px 30px;
  overflow: hidden;
  position: relative;
}

/* Trenner zwischen Karten */
.GW_team_card + .GW_team_card {
  border-top: solid 1px var(--f004);
}

/* Goldener Akzent-Strich links */
.GW_team_card::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--f007), var(--f003));
}

/* ── NAME ── */
.GW_team_name {
  font: italic 800 32px var(--font-january);
  color: var(--f001);
  text-align: center;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

/* ── SUBTITLE ── */
.GW_team_sub {
  font: bold 10px var(--font-zalando);
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--f007);
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: solid 1px var(--f004);
}

/* ── ABOUT ROW ── */
.GW_team_about {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 24px;
  align-items: start;
}

/* ── BILD ── */
.GW_team_pic {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 100%;
  border: solid 2px var(--f007);
  padding: 4px;
  background: var(--f002);
  overflow: hidden;
}
.GW_team_pic div {
  width: 100%;
  height: 100%;
  border-radius: 100%;
	  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  object-fit: cover;
  display: block;
  filter: grayscale(0.3);
  transition: 0.7s all;
}
.GW_team_pic div:hover {
  filter: grayscale(0);
  transform: scale(1.04);
}

/*.GW_team_pic {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 100%;
  border: solid 2px var(--f007);
  padding: 4px;
  background: var(--f002);
  overflow: hidden;
}

.GW_team_pic div {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(0.3);
  transition: 0.7s all;
}

.GW_team_pic div:hover {
  filter: grayscale(0);
  transform: scale(1.04);
}*/

/* ── TEXT ── */
.GW_team_text {
  border: solid 1px var(--f004);
  border-left: solid 3px var(--f007);
  padding: 14px 16px;
  max-height: 160px;
  overflow-y: auto;
  font: 12px var(--font-zalando);
  line-height: 20px;
  color: var(--f001);
  text-align: justify;
}
.GW_team_text::-webkit-scrollbar { width: 6px; }
.GW_team_text::-webkit-scrollbar-track { background: var(--f008); }
.GW_team_text::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--f007), var(--f003));
  border-radius: 10px;
}
.GW_team_text b { color: var(--f007); }

/* ── FACTS / SHORTS ── */
.GW_team_facts {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 180px;
}
.GW_team_fact {
  border: solid 1px var(--f004);
  padding: 7px 14px;
  font: bold 9px var(--font-zalando);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--f001);
  white-space: nowrap;
  background: var(--f008);
  transition: 0.7s all;
}
.GW_team_fact:hover {
  background: var(--f007);
  color: var(--f002);
  border-color: var(--f007);
}
/* Erste Fact-Box = Heading */
.GW_team_fact:first-child {
  background: var(--f007);
  color: var(--f002);
  border-color: var(--f007);
  pointer-events: none;
}