/* SLIDE 08 — Golden Rush: 6 newspaper clippings dropping onto a stack */

.golden-rush{
  position:relative;
  width:100%;
  height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  padding:var(--pill-reserve) clamp(24px,3vw,48px) clamp(16px,2.5vh,28px) 80px; /* TASK-R06: was clamp(40px,5vh,56px) — enforce I-1 */
  box-sizing:border-box;
  overflow:hidden;
}
.golden-rush__head{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:clamp(10px,1.5vh,18px);
  flex-shrink:0;
  margin-bottom:clamp(14px,2vh,24px);
}
.golden-rush__title{
  text-align:center;
  max-width:min(820px,90vw);
  margin-top:clamp(8px,1.2vh,16px);
  margin-bottom:clamp(8px,1.2vh,16px);
}
.golden-rush__stack{
  position:relative;
  flex:1;
  width:clamp(340px,32%,440px);
  max-height:clamp(420px,62vh,560px);
  aspect-ratio:5/6;
}

/* The clipping itself — newsprint look */
.golden-rush-card{
  position:absolute;
  inset:0;
  background:#f4ede0; /* warm newsprint */
  background-image:
    radial-gradient(rgba(0,0,0,0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,0.02), rgba(0,0,0,0));
  background-size:3px 3px, 100% 100%;
  border-radius:3px;
  padding:clamp(14px,1.6vw,22px);
  box-sizing:border-box;
  box-shadow:
    0 12px 32px rgba(0,0,0,0.45),
    0 3px 8px rgba(0,0,0,0.25),
    inset 0 0 0 1px rgba(0,0,0,0.06);
  display:flex;
  flex-direction:column;
  gap:clamp(8px,1vh,12px);
  /* Initial position — off-screen above, tumbled */
  transform:translateY(-180vh) rotate(15deg);
  opacity:0;
  transition:
    transform 1.2s cubic-bezier(0.34, 1.1, 0.5, 1),
    opacity 0.35s ease-out;
  will-change:transform,opacity;
  pointer-events:none;
}
.golden-rush-card--landed{
  transform:translateY(0) rotate(var(--final-rot,0deg));
  opacity:1;
}

/* Stack layering — later cards on top */
.golden-rush-card[data-i="0"]{ z-index:1; }
.golden-rush-card[data-i="1"]{ z-index:2; }
.golden-rush-card[data-i="2"]{ z-index:3; }
.golden-rush-card[data-i="3"]{ z-index:4; }
.golden-rush-card[data-i="4"]{ z-index:5; }
.golden-rush-card[data-i="5"]{ z-index:6; }

.golden-rush-card__image{
  width:100%;
  height:clamp(140px,22%,180px);
  object-fit:cover;
  border-radius:2px;
  flex-shrink:0;
  filter:saturate(0.9) contrast(0.96);
}

.golden-rush-card__masthead{
  font-family:'Times New Roman', Times, serif;
  font-weight:700;
  font-size:clamp(12px,0.95vw,14px);
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:#1a1a1a;
  border-top:2px solid #1a1a1a;
  border-bottom:1px solid #1a1a1a;
  padding:5px 0;
  text-align:center;
  flex-shrink:0;
}

.golden-rush-card__headline{
  margin:0;
  font-family:'Times New Roman', Times, serif;
  font-weight:700;
  font-size:clamp(17px,1.45vw,22px);
  line-height:1.18;
  color:#0d0d0d;
  letter-spacing:-0.01em;
}

.golden-rush-card__meta{
  font-family:'Times New Roman', Times, serif;
  font-size:clamp(10px,0.78vw,12px);
  color:#5a5a5a;
  text-transform:uppercase;
  letter-spacing:0.08em;
  font-style:italic;
  flex-shrink:0;
}

.golden-rush-card__lede{
  margin:0;
  font-family:Georgia, 'Times New Roman', serif;
  font-size:clamp(12px,0.95vw,14px);
  line-height:1.45;
  color:#262626;
  flex:1;
  min-height:0;
  overflow:hidden;
}
