


.storyPush {
  --storyPush-padding-top: 9.8314606742vh;
  --storyPush-padding-bottom: 7.7247191011vh;
  --storyPush-title-margin-bottom: 2.2471910112vh;
  --storyPush-story-height: 42.6rem;
  --storyPush-story-width: 23.4rem;
  --storyPush-story-caption-margin: 2rem 1.55rem 0 1.55rem;
  --player-btn-size: 3rem;
  --swiper-pagination-bullet-width: auto;
  --swiper-pagination-bullet-height: 0.12rem;
  --swiper-pagination-bullet-horizontal-gap: 0.5rem;
  --swiper-pagination-bullet-inactive-color: rgba(255,255,255,0.5);
  --swiper-pagination-color: rgba(255,255,255,1);
  --swiper-pagination-bullet-inactive-opacity: 1;
  position: relative;
  width: 100%;
  padding-top: var(--storyPush-padding-top);
  padding-bottom: var(--storyPush-padding-bottom);
  background-color: var(--storyPush-bg-color, transparent);
  display: flex;
  flex-direction: column;
  transition: background-color 0.3s ease;
}
.storyPush__title {
  flex-shrink: 0;
  font-family: "DIN 1451 Std";
  font-size: 6.5rem;
  font-weight: 400;
  line-height: 6.2rem;
  letter-spacing: 0em;
  text-align: center;
  margin-bottom: var(--storyPush-title-margin-bottom);
}
.storyPush__stories {
  width: 100%;
  flex-grow: 1;
}
.storyPush__stories .swiper-slide {
  width: var(--storyPush-story-width);
}
.storyPush__stories__story {
  height: 100%;
  display: block;
  text-decoration: none;
}
.storyPush__stories__story__figure {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.storyPush__stories__story__figure__media {
  height: var(--storyPush-story-height);
  width: var(--storyPush-story-width);
  flex-shrink: 1;
  position: relative;
  overflow: hidden;
}
.storyPush__stories__story__figure__media video, .storyPush__stories__story__figure__media img {
  transform-origin: top;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
}
.storyPush__stories__story__figure__media__trigger {
  position: absolute;
  z-index: 1;
  top: calc(50% - var(--player-btn-size) * 0.5);
  left: calc(50% - var(--player-btn-size) * 0.5);
  --size: var(--player-btn-size);
}
.storyPush__stories__story__figure__figcaption {
  flex-shrink: 0;
  font-family: "DIN OT";
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0em;
  text-align: center;
  margin: var(--storyPush-story-caption-margin);
}
@media screen and (min-width: 1024px) {
  .storyPush {
    --storyPush-padding-top: 8.4656084656vh;
    --storyPush-padding-bottom: 12.6984126984vh;
    --storyPush-title-margin-bottom: 9.2063492063vh;
    --storyPush-story-height: 49.4rem;
    --storyPush-story-width: 28rem;
    --storyPush-story-caption-margin: 2rem 3.5rem 0 3.5rem;
    transition-delay: 0.2s;
  }
}