/* ============================================================
   BLOG CARD GRID — shared source for DE (/blog/) and EN (/en/blog/)
   Single source of truth: edit here, both overviews stay in sync.
   Relies on the design tokens (--space-*, --brand-*, --neutral-*,
   --font-*, --transition) defined in each page's :root.
   Rules are self-contained (no dependency on a global h2 reset)
   so the grid renders identically on both pages.
   ============================================================ */

.post-list { padding: var(--space-xl) 0 var(--space-2xl); }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
@media (max-width: 960px) { .card-grid { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; } }

.post-card { display: flex; flex-direction: column; height: 100%;
  border: 1px solid var(--neutral-line); padding: var(--space-md);
  transition: border-color var(--transition), transform var(--transition); }
.post-card:hover { border-color: var(--brand-olive-mid); transform: translateY(-2px); }
.post-card .card-kicker { font-family: var(--font-body); font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--brand-olive-mid); margin-bottom: var(--space-sm); }
.post-card h2 { font-family: var(--font-serif); font-weight: 400; color: var(--neutral-ink);
  font-size: clamp(22px, 2.4vw, 28px); line-height: 1.12; letter-spacing: -0.018em;
  margin: 0 0 var(--space-sm); text-wrap: balance; }
.post-card:hover h2 { color: var(--brand-olive-deep); }
.post-card .teaser { font-size: 16px; line-height: 1.6; color: #1c2433; }
.post-card .card-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 14px;
  margin-top: var(--space-md); padding-top: var(--space-sm); border-top: 1px solid var(--neutral-line);
  font-size: 13px; font-weight: 600; color: var(--neutral-muted); }
.post-card .card-meta .dot { width: 4px; height: 4px; background: var(--brand-olive); border-radius: 50%; }
.post-card .read-more { margin-top: var(--space-sm); font-size: 14px; font-weight: 700; color: var(--brand-olive-deep);
  display: inline-flex; align-items: center; gap: 8px; }
.post-card .read-more .arrow { transition: transform 200ms ease; }
.post-card:hover .read-more .arrow { transform: translateX(4px); }
