.gallery {
  grid-auto-flow: dense;
}

.gallery-extra {
  display: none;
}

.gallery.expanded .gallery-extra {
  display: block;
}

.gallery-video {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #160910;
  min-height: 210px;
}

.gallery-video.wide {
  grid-column: span 2;
}

.gallery-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-video span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(19, 4, 12, 0.78);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  pointer-events: none;
}

.gallery-actions {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.gallery-toggle {
  min-width: 260px;
}

.gallery.expanded + .gallery-actions .gallery-toggle {
  border-color: var(--pink);
}

@media (max-width: 640px) {
  .gallery-video {
    min-height: 170px;
  }
}
