/* ==========================================================================
   LIGABO – Über LIGABO / About LIGABO
   Wird nach styles.css geladen.
   ========================================================================== */

/* Abschnitte dieser Seite: 96px vertikal (statt .section-pad = 104px) */
.about-pad { padding-top: 96px; padding-bottom: 96px; }

/* Hero */
.about-hero {
  padding-top: 96px;
  padding-bottom: 88px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 56px 72px;
  align-items: center;
}
.about-hero__text {
  flex: 1 1 480px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.about-hero__title {
  margin: 0;
  font-size: clamp(38px, 5.4vw, 64px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
.about-hero__intro,
.about-hero__sub {
  margin: 0;
  max-width: 640px;
  color: var(--text);
  text-wrap: pretty;
}
.about-hero__intro { font-size: 19px; line-height: 1.6; }
.about-hero__sub { font-size: 17px; line-height: 1.65; }

.about-portrait {
  flex: 0 1 260px;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
/* Großer Porträt-Platzhalter; ein echtes Foto (img in .avatar) behält die Maße */
.avatar--lg {
  width: min(240px, 70vw);
  height: auto;
  aspect-ratio: 1;
  font-size: 128px;
}
.about-portrait figcaption { display: flex; flex-direction: column; gap: 4px; }
.about-portrait__name { font-size: 22px; font-weight: 800; }
.about-portrait__role { font-size: 15px; color: var(--text); }

/* Erfahrung aus unterschiedlichen Perspektiven */
.perspectives { display: flex; flex-direction: column; gap: 48px; }
.perspective-grid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  column-gap: 32px;
  border-top: 2px solid var(--navy);
}
.perspective {
  padding: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-bottom: 1px solid var(--line);
}
.perspective__title { margin: 0; font-size: 19px; font-weight: 700; line-height: 1.3; }
.perspective__text { margin: 0; font-size: 16px; line-height: 1.6; color: var(--text); }

/* Fokus */
.about-focus {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: 48px 72px;
  align-items: end;
}
.about-focus > .stack { gap: 16px; }
.tag-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.tag-list li {
  font-size: 16px;
  font-weight: 700;
  padding: 12px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

/* Berufliche Stationen */
.stations { display: flex; flex-direction: column; gap: 32px; }
.stations .section-head { max-width: none; }
.station-list {
  list-style: none;
  margin: 0;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 18px;
  row-gap: 6px;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.45;
}
/* Trennpunkt rein dekorativ (leerer Alternativtext) */
.station-list li + li::before {
  content: "·";
  content: "·" / "";
  color: var(--orange);
  margin-right: 18px;
}
.stations .lead { max-width: 760px; }

/* Warum LIGABO? */
.why {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: 40px 72px;
  align-items: start;
}
.why > .stack { gap: 20px; }
.why__title {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.accent-bar { width: 56px; height: 4px; background: var(--orange); }
.why__body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 4px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
}
.why__body p { margin: 0; text-wrap: pretty; }
.why__body .why__claim {
  font-size: 19px;
  line-height: 1.55;
  font-weight: 700;
  color: var(--navy);
}

/* Abschluss-CTA auf Navy */
.about-cta {
  padding-top: 88px;
  padding-bottom: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px 56px;
  flex-wrap: wrap;
}
.about-cta__text { flex: 1 1 480px; display: flex; flex-direction: column; gap: 14px; }
.about-cta__title {
  margin: 0;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.about-cta .lead { max-width: 640px; }
