.c-reel {
  display: flex;
  flex-direction: column;
  color: #343434;
  text-align: center;
}
.c-reel:hover {
  opacity: 1;
}
.c-reel:hover .c-reel__image-container img {
  transform: scale(1.05);
}
.c-reel__image-container {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 12px;
  overflow: hidden;
  background-color: #f0e9df;
}
.c-reel__image-container picture,
.c-reel__image-container img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.35s ease;
}
.c-reel__play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 52px;
  height: 52px;
  margin: -26px 0 0 -26px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  pointer-events: none;
}
.c-reel__play::after {
  content: "";
  position: absolute;
  left: 21px;
  top: 16px;
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent #fff;
}
.c-reel__title {
  margin: 12px 0 0;
  font-size: 0.9375em;
  line-height: 1.35;
  font-weight: 600;
}
