/* ============================================================
   Impact Recap Story — full-screen Wrapped-style carousel.
   Brand artifact: always navy/gold (independent of app theme).
   ============================================================ */

.recap-story {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  background: radial-gradient(circle at 50% 28%, #1b2747, #0B1120 68%);
  opacity: 0;
  transition: opacity 0.25s var(--ease-out, ease);
}
.recap-story.is-visible { opacity: 1; }

.recap-story__progress {
  display: flex;
  gap: 4px;
  padding: calc(14px + env(safe-area-inset-top)) 16px 8px;
}
.recap-story__seg {
  flex: 1;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.22);
  transition: background 0.2s ease;
}
.recap-story__seg.is-on { background: #E0B752; }

.recap-story__close {
  position: absolute;
  top: calc(16px + env(safe-area-inset-top));
  right: 16px;
  z-index: 3;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #F4F1EA;
  font-size: 17px;
  cursor: pointer;
}

.recap-story__card {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

/* Cards */
.rs {
  width: 100%;
  max-width: 480px;
  text-align: center;
  color: #F4F1EA;
  animation: rsIn 0.4s var(--ease-out, ease);
}
@keyframes rsIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

.rs__kicker {
  font-size: 14px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: #E0B752; margin-bottom: 18px;
}
.rs__big {
  font-family: 'Newsreader', Georgia, serif;
  font-size: clamp(96px, 30vw, 184px); font-weight: 600; line-height: 1;
}
.rs__biglabel { font-size: 20px; color: #A6B0C4; margin-top: 10px; }
.rs__h { font-size: 24px; font-weight: 700; margin-bottom: 26px; }

.rs-pills { display: flex; flex-direction: column; gap: 12px; align-items: center; }
.rs-pill {
  padding: 11px 22px; border-radius: 999px; font-size: 18px; font-weight: 600; color: #0B1120;
}

.rs--split { display: flex; gap: 20px; }
.rs-split__col { flex: 1; }
.rs-split__n { font-family: 'Newsreader', Georgia, serif; font-size: clamp(56px, 18vw, 84px); font-weight: 700; color: #E0B752; line-height: 1; }
.rs-split__l { font-size: 15px; color: #A6B0C4; margin-top: 10px; }

.rs__verse { font-family: 'Newsreader', Georgia, serif; font-style: italic; font-size: 34px; color: #E0B752; }
.rs__reflection-byline { margin-top: 18px; font-size: 15px; color: #A6B0C4; }

.rs__closer-title { font-family: 'Newsreader', Georgia, serif; font-size: 36px; font-weight: 600; line-height: 1.25; margin-bottom: 16px; }
.rs__closer-sub { font-size: 18px; color: #A6B0C4; margin-bottom: 32px; }
.rs__share {
  padding: 16px 44px; font: inherit; font-size: 17px; font-weight: 600;
  color: #0B1120; background: #D4A843; border: none; border-radius: 999px; cursor: pointer;
}
