.reel-card {
  position: relative;
  display: flex;
  min-height: 0;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 9 / 16;
  background:
    radial-gradient(circle at 50% 45%, rgb(255 255 255 / 9%), transparent 22%),
    linear-gradient(180deg, var(--gradient-start, #0d0520), var(--gradient-end, #2a0845));
  color: #fff;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.reel-card-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.reel-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.reel-card > a {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  color: inherit;
}

.reel-card::after {
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(180deg, transparent, rgb(0 0 0 / 84%));
  content: "";
}

.reel-card .media-play {
  position: absolute;
  top: 43%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.reel-card-info {
  position: relative;
  z-index: 2;
  align-self: flex-end;
  width: 100%;
  padding: 18px 16px;
}

.reel-card-info strong,
.reel-card-info small {
  display: block;
}

.reel-card-info strong {
  font-size: 13px;
}

.reel-card-info small {
  color: rgb(255 255 255 / 75%);
  font-size: 11px;
}

.reel-card.is-tall {
  min-height: 0;
  border-radius: 10px;
  aspect-ratio: 9 / 16;
}

@media (max-width: 767px) {
  .reel-card,
  .reel-card.is-tall {
    min-height: 0;
  }
}
