/* Startseiten-Abschnitt „Für wen" — zwei Zielgruppen-Karten.
   Kopf (Eyebrow/Titel) und Fläche kommen aus impark-sektionen.css; dieser
   Abschnitt hat KEINEN Fließtext unter dem Titel. Fläche = Creme.
   Der Titel bricht laut Vorlage vierzeilig um und braucht dafür mehr Breite
   als der Standard-Kopf. */

.impark-fw .impark-sec__head { max-width: 640px; }

.impark-fw__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  max-width: 850px;
  margin: 62px auto 0;
}

.impark-fw__card {
  background: var(--ipk-blue-bg, #e5effc);
  border-radius: 16px;
  padding: 32px 20px 43px;
  text-align: start;
}

.impark-fw__eyebrow {
  display: block;
  margin: 0 0 14px;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--ipk-blue, #2b7ee2);
}

/* Kartentitel steht in der Textfarbe, NICHT in Blau (so die Vorlage). */
.impark-fw__title {
  margin: 0 0 14px;
  font-family: inherit;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.3;
  letter-spacing: 0;
  color: var(--ipk-ink, #414141);
}

.impark-fw__text {
  margin: 0;
  font-size: .79rem;
  line-height: 1.46;
  color: var(--ipk-muted, #646464);
}

/* Button mittig unter dem Text. */
.impark-fw__actions {
  margin-top: 28px;
  text-align: center;
}

.impark-fw__btn {
  display: inline-block;
  padding: .85em 2.6em;
  border: 0;
  border-radius: 8px;
  background: var(--ipk-blue, #2b7ee2);
  color: var(--ipk-white, #fff);
  font-family: inherit;
  font-size: .875rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
}

.impark-fw__btn:hover,
.impark-fw__btn:focus {
  background: var(--ipk-blue-deep, #1f63c0);
  color: var(--ipk-white, #fff);
}

@media (max-width: 900px) {
  .impark-fw__cards { grid-template-columns: 1fr; gap: 24px; margin-top: 40px; max-width: none; }
}
