.filmstrip-wrap { width: 100%; overflow: hidden; }
.filmstrip-swiper .swiper-wrapper { transition-timing-function: linear; }
.filmstrip-swiper .swiper-slide { width: 100% !important; }

.filmstrip-tile{
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 0;
}

.filmstrip-tile img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.filmstrip-hotspot{
  position: absolute;
  display: block;
  z-index: 10;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.filmstrip-hotspot:focus {
  outline: 0px solid #000;
  outline-offset: 2px;
}

/* Tooltip (sichtbar) */
.filmstrip-hotspot::after{
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translate(-50%, -10px);
  white-space: nowrap;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(0,0,0,0.85);
  color: #fff;
  font-size: 13px;
  line-height: 1.2;
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s ease, transform .15s ease;
  z-index: 999;
  max-width: 360px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.filmstrip-hotspot::before{
  content: "";
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translate(-50%, 2px);
  border: 6px solid transparent;
  border-top-color: rgba(0,0,0,0.85);
  opacity: 0;
  transition: opacity .15s ease, transform .15s ease;
  pointer-events: none;
  z-index: 999;
}

.filmstrip-hotspot:hover::after,
.filmstrip-hotspot:focus::after{
  opacity: 1;
  transform: translate(-50%, -14px);
}

.filmstrip-hotspot:hover::before,
.filmstrip-hotspot:focus::before{
  opacity: 1;
  transform: translate(-50%, 0px);
}
