/* =============================================================
   SPORTPROFIL-TEASER auf der Startseite

   Dunkler Block zwischen zwei hellen Sektionen, in der Farbe der
   Tueftler-Familie. Er fuehrt auf /de/sportprofil und nimmt das
   Netzdiagramm als Vorschau mit, weil es sofort zeigt, worum es geht.
   ============================================================= */

.profile-teaser {
  background: #302F63;
  color: #fff;
  padding: 96px 0;
}

.profile-teaser__inner {
  display: grid;
  gap: 40px;
  align-items: center;
}

@media (min-width: 860px) {
  .profile-teaser__inner {
    grid-template-columns: 1fr 380px;
    gap: 64px;
  }
}

.profile-teaser__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 18px;
}

.profile-teaser__headline {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin-bottom: 20px;
  text-wrap: balance;
}

.profile-teaser__text {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 34em;
  margin-bottom: 28px;
}

.profile-teaser__families {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.profile-teaser__family {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.85);
}

.profile-teaser__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 30px;
  border-radius: 999px;
  background: #fff;
  color: #302F63;
  font-size: 1rem;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.profile-teaser__cta:hover {
  opacity: 0.88;
}

.profile-teaser__meta {
  margin-top: 16px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
}

.profile-teaser__chart {
  justify-self: center;
  width: min(340px, 100%);
}

.profile-teaser__chart svg {
  width: 100%;
  height: auto;
  display: block;
}
