/* --------------------------------------------------------------------------
   17. Startseite
   --------------------------------------------------------------------------
   Kein Kachel-Raster: Begrüßung, zwei große Kennzahlen und zwei Einstiegs-
   zeilen, die nur durch Haarlinien getrennt sind. */
.startseite-hero {
  padding: 4px 0 40px;
}

.startseite-hero__eyebrow {
  font-size: 15px;
  color: var(--wood-text-muted);
}

.startseite-hero__name {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-top: 6px;
}

.startseite-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 72px;
  margin: 0 0 48px;
}

.startseite-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.startseite-stat__wert {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--wood-text);
  font-variant-numeric: tabular-nums;
}

.startseite-stat__label {
  font-size: 13.5px;
  color: var(--wood-text-soft);
}

.startseite-kacheln {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--leather-edge);
}

.startseite-kachel {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  column-gap: 24px;
  align-items: center;
  width: 100%;
  text-align: left;
  padding: 28px 14px;
  background: none;
  border-bottom: 1px solid var(--leather-edge-soft);
  cursor: pointer;
  transition: background 0.12s ease;
}

.startseite-kachel:hover {
  background: rgba(130, 170, 190, 0.06);
}

.startseite-kachel__icon {
  grid-column: 1;
  grid-row: 1 / span 2;
  display: flex;
  color: var(--wood-text-soft);
  transition: color 0.12s ease;
}

.startseite-kachel:hover .startseite-kachel__icon {
  color: var(--brass-bright);
}

.startseite-kachel h3 {
  grid-column: 2;
  grid-row: 1;
  margin: 0 0 4px;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.startseite-kachel p {
  grid-column: 2;
  grid-row: 2;
  font-size: 14.5px;
  color: var(--wood-text-muted);
  line-height: 1.5;
}

.startseite-kachel::after {
  content: "\2192";
  grid-column: 3;
  grid-row: 1 / span 2;
  font-size: 20px;
  color: var(--wood-text-placeholder);
  transition: color 0.12s ease, transform 0.12s ease;
}

.startseite-kachel:hover::after {
  color: var(--brass-bright);
  transform: translateX(4px);
}
