/* V75: seven-day competition videos */
.gallery-album-cover.video-only{
  display:grid;
  place-items:center;
  background:
    radial-gradient(circle at 28% 28%,rgba(73,225,238,.28),transparent 26%),
    linear-gradient(135deg,#20284a,#3b2346 64%,#15192f);
}
.gallery-video-cover-icon{
  display:grid;
  width:78px;
  height:78px;
  place-items:center;
  padding-left:5px;
  border:2px solid rgba(255,255,255,.82);
  border-radius:50%;
  background:rgba(255,91,59,.9);
  color:#fff;
  font-size:1.8rem;
  box-shadow:8px 8px 0 rgba(5,8,20,.5);
}
.gallery-video-section{
  margin:22px 0 26px;
  padding:18px;
  border:1px solid rgba(255,211,79,.36);
  border-radius:18px;
  background:linear-gradient(135deg,rgba(255,211,79,.07),rgba(255,91,59,.04));
}
.gallery-media-heading{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:16px;
  margin-bottom:14px;
}
.gallery-media-heading h3{margin:0;font-size:clamp(1.25rem,3vw,1.7rem)}
.gallery-media-heading>p{max-width:28rem;margin:0;color:var(--muted);font-size:.78rem;text-align:right}
.gallery-video-grid{display:grid;gap:14px}
.gallery-video-card{
  display:grid;
  grid-template-columns:minmax(0,1.3fr) minmax(220px,.7fr);
  min-width:0;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.13);
  border-radius:15px;
  background:rgba(7,10,24,.72);
}
.gallery-video-card video{display:block;width:100%;height:100%;min-height:220px;max-height:430px;background:#050611;object-fit:contain}
.gallery-video-copy{display:grid;align-content:space-between;gap:18px;padding:18px}
.gallery-video-copy h3{margin:7px 0 4px;font-size:1.2rem}
.gallery-video-copy p{margin:0;color:var(--muted);font-size:.76rem;line-height:1.5}
.gallery-video-copy .btn{width:100%;text-align:center;text-decoration:none}
.gallery-video-expiry{display:inline-flex;padding:5px 8px;border-radius:999px;background:rgba(255,211,79,.14);color:var(--yellow);font-size:.68rem;font-weight:900}

@media(max-width:680px){
  .gallery-video-section{margin-inline:0;padding:13px 9px}
  .gallery-media-heading{display:grid}.gallery-media-heading>p{text-align:left}
  .gallery-video-card{grid-template-columns:minmax(0,1fr)}
  .gallery-video-card video{min-height:0;aspect-ratio:16/9;max-height:none}
  .gallery-video-copy{padding:13px;gap:13px}
  .gallery-video-copy .btn{min-height:48px}
}
@media(prefers-reduced-motion:reduce){.gallery-video-cover-icon{box-shadow:4px 4px 0 rgba(5,8,20,.5)}}
