/* weitermachen_fan.css — "Weitermachen mit" Empfehlungsbereich */

.wm-section {
  padding: 8px 0 56px;
}

/* ── Celebration-Header ────────────────────────────────────── */

.wm-celebration {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 20px 18px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.wm-celebration-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e8bd4f, #f0ca6a);
  box-shadow: 0 6px 20px rgba(232, 189, 79, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #2b1705;
}

.wm-celebration-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.wm-celebration-title {
  font-size: 1rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.2;
}

.wm-celebration-sub {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(244, 207, 99, 0.65);
  letter-spacing: 0.03em;
}

/* ── Header-Trennlinie ─────────────────────────────────────── */

.wm-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px 18px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.wm-header-line {
  flex: 1;
  height: 1px;
  background: rgba(244, 207, 99, 0.2);
}

.wm-header-label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 207, 99, 0.55);
  white-space: nowrap;
}

/* ── Karten-Liste ──────────────────────────────────────────── */

.wm-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 16px;
}

/* ── Einzelne Karte ────────────────────────────────────────── */

.wm-card {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(34, 19, 10, 0.92);
  border: 1.5px solid rgba(244, 207, 99, 0.18);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.38);
  cursor: pointer;
  text-align: left;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.38s ease,
    transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.wm-card:hover {
  border-color: rgba(244, 207, 99, 0.44);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.52);
  transform: translateY(-2px);
}

.wm-card:active {
  transform: scale(0.98) translateY(0);
  transition-duration: 0.08s;
}

/* ── Nummer-Kreis ──────────────────────────────────────────── */

.wm-card-dot {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: linear-gradient(145deg, #2e1d0a, #1a1005);
  border: 1.5px solid rgba(244, 207, 99, 0.32);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  font-weight: 800;
  color: #f4cf63;
}

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

.wm-card-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.wm-card-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wm-card-cat {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(244, 207, 99, 0.55);
}

/* ── Pfeil ─────────────────────────────────────────────────── */

.wm-card-arrow {
  flex-shrink: 0;
  font-size: 1.3rem;
  font-weight: 300;
  color: rgba(244, 207, 99, 0.35);
  line-height: 1;
  transition: color 0.18s ease, transform 0.18s ease;
}

.wm-card:hover .wm-card-arrow {
  color: rgba(244, 207, 99, 0.7);
  transform: translateX(3px);
}

/* ── Sichtfeld-Animation (.wm-animate via IntersectionObserver) */

.wm-section.wm-animate .wm-celebration {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}

.wm-section.wm-animate .wm-header {
  opacity: 1;
  transition-delay: 0.2s;
}

.wm-section.wm-animate .wm-card:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.38s;
}

.wm-section.wm-animate .wm-card:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.56s;
}

.wm-section.wm-animate .wm-card:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.74s;
}

/* Statisch — wird nicht mehr genutzt, Fallback falls kein IntersectionObserver */
.wm-section.wm-static .wm-celebration,
.wm-section.wm-static .wm-header,
.wm-section.wm-static .wm-card {
  opacity: 1;
  transform: none;
}
