.slide-clips {
  padding: 0;
  background: #000;
  overflow: hidden;
}

/* Full-bleed 16:9 video. The stage is 16:9 too, so cover == fit. */
.slide-clips .cl-video {
  position: absolute;
  inset: 0;
}
.slide-clips .cl-video iframe,
.slide-clips .cl-video .cl-player,
.slide-clips .cl-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
  object-fit: contain;
  background: #000;
}

/* Bottom band: caption on the left, QR code on the right, over a soft gradient. */
.slide-clips .cl-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10vh 5vw 4vh;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.55) 45%, transparent 100%);
  color: #fff;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3vw;
  pointer-events: none;
}

.slide-clips .cl-caption {
  display: flex;
  flex-direction: column;
  gap: 0.8vh;
  min-width: 0;
}

.slide-clips .cl-qr {
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8vh;
}
.slide-clips .cl-qr-code {
  width: 13vh;
  height: 13vh;
  padding: 0.9vh;
  background: #fff;
  border-radius: 0.6vh;
  box-shadow: 0 0.4vh 1.6vh rgba(0, 0, 0, 0.5);
}
.slide-clips .cl-qr-code svg {
  display: block;
  width: 100%;
  height: 100%;
}
.slide-clips .cl-qr-label {
  font-size: 1vw;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  max-width: 16vh;
  line-height: 1.2;
}

.slide-clips .cl-eyebrow {
  font-size: 1.3vw;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 1vw;
}

.slide-clips .cl-badge {
  font-size: 1vw;
  letter-spacing: 0.12em;
  padding: 0.3vh 0.8vw;
  border-radius: 0.4vw;
  color: #000;
  background: #ffcc00;
}
.slide-clips .cl-badge--sui { background: var(--accent); color: #fff; }
.slide-clips .cl-badge--bern { background: #fff; color: var(--accent); }

.slide-clips .cl-title {
  font-size: 3.4vw;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.slide-clips .cl-title .cl-round {
  margin-left: 1.2vw;
  font-size: 2vw;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.slide-clips .cl-athletes {
  font-size: 2vw;
  font-weight: 500;
}
.slide-clips .cl-cty {
  font-size: 1.2vw;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.2vh 0.5vw;
  border-radius: 0.3vw;
  background: rgba(255, 255, 255, 0.18);
  vertical-align: middle;
}
.slide-clips .cl-cty.is-sui { background: var(--accent); }
.slide-clips .cl-vs { color: rgba(255, 255, 255, 0.5); margin: 0 0.4vw; }

.slide-clips .cl-winner {
  font-size: 1.5vw;
  color: rgba(255, 255, 255, 0.85);
}
.slide-clips .cl-score {
  margin-left: 0.6vw;
  font-variant-numeric: tabular-nums;
  color: rgba(255, 255, 255, 0.7);
}

.slide-clips .cl-event {
  font-size: 1.3vw;
  color: var(--muted);
  letter-spacing: 0.04em;
}
