/* ============================================================
   ABOUT — „Das ist talents."
   ============================================================ */

.about {
  /* Die Countdown-Box ragt in diese Sektion hinein — der
     Überstand wird auf das Standard-Padding aufgeschlagen,
     damit unter der Box wieder 120px Luft stehen. */
  padding-top: calc(var(--section-py) + var(--countdown-overlap));
  padding-bottom: var(--section-py);
  background: var(--surface);
}

.about__title {
  margin-bottom: 32px;
  font-size: var(--fs-display);
  line-height: 1;
  font-weight: var(--fw-bold);
  color: var(--ink);
}

/* ---------- Zwei Spalten: Text + Bild ---------- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr var(--about-media);
  column-gap: 80px;
  align-items: start;
}

/* Sub-Headline: im Design bewusst in der Text-Schrift (Source
   Sans 3 Bold) gesetzt — nicht in Poppins wie die großen
   Display-Headlines. */
.about__heading {
  margin-bottom: 24px;
  font-family: var(--font-body);
  font-size: var(--fs-h3);
  line-height: 1;
  font-weight: var(--fw-bold);
  color: var(--ink);
}

.about__text {
  max-width: 445px;
  margin-bottom: 32px;
  font-size: var(--fs-body);
  font-weight: var(--fw-medium);
  line-height: var(--lh-body);
  color: var(--ink-soft);
}

/* `relative` trägt die KI-Kennzeichnung unten rechts im Bild. */
.about__media {
  position: relative;
  margin: 0;
}

/* `cover` wirkt hier nur als Sicherung: die Datei bringt genau
   589 × 368 mit, das Seitenverhältnis stimmt also ohnehin. Ein
   nachgelieferter Zuschnitt würde beschnitten statt verzerrt. */
.about__media picture img {
  width: 100%;
  height: auto;
  aspect-ratio: 589 / 368;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ---------- Aufzählung 1. 2. 3. ---------- */
.usp {
  margin-top: 8px;
}

/* Die letzte Spalte ist so breit wie die Bildspalte oben — dadurch
   beginnt der Fließtext exakt an der linken Bildkante. */
.usp__item {
  display: grid;
  grid-template-columns: 84px 427px var(--about-media);
  column-gap: 80px;
  align-items: center;
  padding-block: 24px;
  border-bottom: 1px solid var(--line);
}

/* Die Ziffern sind unterschiedlich breit — zentriert in einer
   festen Spalte starten alle Headlines exakt untereinander. */
.usp__num {
  font-family: var(--font-display);
  font-size: var(--fs-num);
  font-style: italic;
  font-weight: var(--fw-semibold);
  line-height: 1;
  color: var(--brand);
  text-align: center;
  white-space: nowrap;
}

.usp__title {
  font-size: var(--fs-h4);
  line-height: var(--lh-h4);
  font-weight: var(--fw-semibold);
  color: var(--ink);
}

.usp__text {
  max-width: 520px;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--ink-soft);
}

/* ---------- Endlos-Slider ---------- */
.about__marquee {
  margin-top: 24px;
}
