/* ─── THEME CARDS: NAVIGATION & HALTUNG ────────────────────────────────────── */

.cards-section {
  background: var(--c-paper);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
@media (max-width: 900px) {
  .cards-grid { grid-template-columns: 1fr; }
}
@media (min-width: 641px) and (max-width: 900px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Einzelne Karte */
.theme-card {
  background: var(--c-paper);
  border: 1.5px solid oklch(0.72 0.07 270 / 0.2);
  border-radius: var(--r-lg);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 200ms var(--ease-std),
              box-shadow 200ms var(--ease-std),
              transform 200ms var(--ease-std);
  cursor: default;
}
.theme-card:hover {
  border-color: var(--c-lavender);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

/* Icon */
.card-icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--c-mist);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.card-icon-wrap svg,
.card-icon-wrap img {
  width: 28px;
  height: 28px;
  color: var(--c-indigo);
}

/* Tag */
.card-tag {
  font-family: var(--font-primary);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-gold);
}

/* Titel */
.card-title {
  font-family: var(--font-primary);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--c-night);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

/* Text */
.card-text {
  font-family: var(--font-secondary);
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.65;
  color: oklch(0.38 0.12 265);
  flex: 1;
}

/* Link am Kartenende */
.card-link {
  font-family: var(--font-primary);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--c-horizon);
  text-decoration: none;
  padding-top: 12px;
  border-top: 1px solid oklch(0.72 0.07 270 / 0.15);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 180ms;
}
.card-link:hover {
  color: var(--c-gold);
}

/* ─── PULL-QUOTE ────────────────────────────────────────────────────────────── */

.pull-quote {
  margin-top: var(--space-xl);
  padding: var(--space-lg) var(--space-xl);
  background: var(--c-mist);
  border-radius: var(--r-lg);
  border-left: 4px solid var(--c-gold);
  max-width: var(--max-w-text);
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 640px) {
  .pull-quote { padding: var(--space-md); }
}

.pull-quote blockquote {
  font-family: var(--font-primary);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--c-night);
  margin-bottom: var(--space-sm);
}

.pull-quote cite {
  font-family: var(--font-primary);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  color: var(--c-horizon);
}
