/* Reel-tegel in de portfolio-teaser (Realisations), naast de bestaande afbeelding-teaser */
.realisations--teaser .item--reel {
  display: flex;
  align-items: center;
  justify-content: center;
}
.realisations--teaser .reel-frame {
  position: relative;
  display: block;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 9 / 16;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  background: repeating-linear-gradient(45deg, #f3edeb, #f3edeb 12px, #ece4e1 12px, #ece4e1 24px);
  text-decoration: none;
}
.realisations--teaser .reel-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.realisations--teaser .reel-play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #ed1c24;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.realisations--teaser .reel-frame:hover .reel-play-badge {
  opacity: 0;
}
