/**
 * Pressemeldung Card Styles
 *
 * Ambience-background card with two label pills (date=attitude, topic=white),
 * a press-release title, and a CTA link at the bottom.
 *
 * Figma node: 863:28944
 */

/* ── Wrapper ──────────────────────────────────────────────────────────────── */

.teaser-card-press {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--spacing-400, 32px);
  padding: var(--spacing-300, 24px);
  background-color: var(--ambience, #ebe6e1);
  border: var(--border-width-regular, 2px) solid var(--ambience, #ebe6e1);
  border-radius: var(--border-radius-m, 4px);
  min-height: 300px;
}

/* ── Labels row ───────────────────────────────────────────────────────────── */

.teaser-card-press__labels {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* ── Text block ───────────────────────────────────────────────────────────── */

.teaser-card-press__text {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-250, 20px);
}

/* ── Title ────────────────────────────────────────────────────────────────── */

.teaser-card-press__title {
  margin: 0;
  font-family: 'Bosch Sans', sans-serif;
  font-feature-settings: 'zero';
  font-weight: 700;
  font-size: var(--text-card-l, 20px);
  line-height: 1.3;
  letter-spacing: -0.012em;
  color: var(--trust, #550a2d);
}
