.slider-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--slider-nav-gap, 16px);
  height: 32px;
  margin: 0;
  padding: 0;
}
.slider-nav--end {
  justify-content: flex-end;
}

.slider-nav__button {
  pointer-events: auto;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--c-white);
  color: var(--c-black);
  width: 32px;
  height: 32px;
  padding: 8px;
  margin: 0;
  border: none;
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  transition: background-color 350ms var(--cb), transform 350ms var(--cb), opacity 0.2s;
}
.slider-nav__button:hover:not(:disabled):not(.swiper-button-disabled) {
  background-color: var(--c-primary);
  transform: translateY(-1px);
}
.slider-nav__button:disabled, .slider-nav__button.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.slider-nav__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.slider-nav__button--prev .slider-nav__icon {
  transform: rotate(180deg);
}

.btw-list__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}
.btw-list__tags-label {
  margin-right: 4px;
}
.btw-list__tag.tag {
  cursor: pointer;
  background-color: transparent;
  transition: background-color 350ms var(--cb), border-color 350ms var(--cb), color 350ms var(--cb);
}
.btw-list__tag.tag:hover {
  background-color: var(--c-primary);
  border-color: var(--c-primary);
  color: var(--c-white);
}
.btw-list__tag.tag.btw-list__tag--active {
  background-color: var(--c-primary);
  border-color: var(--c-primary);
  color: var(--c-white);
}
.btw-list__slider-wrap {
  position: relative;
  width: 100%;
  overflow: visible;
  padding-top: 48px;
}
@media only screen and (max-width: 1024px) {
  .btw-list__slider-wrap {
    width: calc(100vw - 48px);
    padding-top: 100px;
  }
}
.btw-list__nav {
  margin-top: 24px;
}
@media only screen and (max-width: 1024px) {
  .btw-list__nav {
    margin-top: 16px;
  }
}

.btw-list__stack {
  --btw-card-h: calc(880px * 9 / 16);
  position: relative;
  width: 100%;
  max-width: 880px;
  margin-inline: auto;
  height: calc(40px * 2 + var(--btw-card-h));
  overflow: hidden;
  outline: none;
  margin-bottom: 32px;
}
@media only screen and (max-width: 1024px) {
  .btw-list__stack {
    --btw-card-h: calc((100vw - 48px) * 9 / 16);
    margin-bottom: 24px;
  }
}

.btw-list__stack-item {
  position: absolute;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1), filter 1.1s cubic-bezier(0.22, 1, 0.36, 1), clip-path 1.1s cubic-bezier(0.22, 1, 0.36, 1), top 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: 50% 50%;
}
.btw-list__stack-item .btw-list-card__inner {
  transform-origin: top center;
  transition: transform 1.15s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 1.15s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24), 0 4px 12px rgba(0, 0, 0, 0.1);
}
.btw-list__stack-item--peek2 {
  top: 0;
  z-index: 1;
  clip-path: inset(0 0 calc(100% - 40px) 0);
  pointer-events: none;
  filter: brightness(0.84) saturate(0.93);
}
.btw-list__stack-item--peek2 .btw-list-card__inner {
  transform: scale(0.9);
  transform-origin: top center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2), 0 2px 8px rgba(0, 0, 0, 0.08);
}
.btw-list__stack-item--peek1 {
  top: 40px;
  z-index: 2;
  clip-path: inset(0 0 calc(100% - 40px) 0);
  pointer-events: none;
  filter: brightness(0.9) saturate(0.96);
}
.btw-list__stack-item--peek1 .btw-list-card__inner {
  transform: scale(0.94);
  transform-origin: top center;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24), 0 4px 12px rgba(0, 0, 0, 0.1);
}
.btw-list__stack-item--active {
  top: calc(40px * 2);
  z-index: 3;
  clip-path: none;
  pointer-events: auto;
  filter: none;
}
.btw-list__stack-item--active .btw-list-card__inner {
  transform: scale(1);
  transform-origin: center center;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.32), 0 8px 20px rgba(0, 0, 0, 0.16);
}
.btw-list__stack-item--hidden {
  top: 0;
  z-index: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .btw-list__stack-item {
    transition-duration: 0.01ms;
  }
  .btw-list__stack-item .btw-list-card__inner {
    transition-duration: 0.01ms;
  }
}
.btw-list-card {
  height: auto;
}
.btw-list-card__inner {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: #1a1a1a;
  box-sizing: border-box;
}
.btw-list-card__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.btw-list-card__media .video-area {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.btw-list-card__media .video-area__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.btw-list-card__media .btw-list-card__teaser-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.btw-list-card__placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #1a1a1a;
}
.btw-list-card__title {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: auto;
  margin: 0;
  color: var(--c-white);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  max-width: 70%;
  text-align: left;
}
@media only screen and (max-width: 1024px) {
  .btw-list-card__title {
    bottom: 24px;
    left: 24px;
  }
}

.btw-list__stack-item--peek1 .btw-list-card__title,
.btw-list__stack-item--peek2 .btw-list-card__title {
  opacity: 0.65;
}

.btw-list__stack-item--active .btw-list-card__title {
  opacity: 1;
}

/*# sourceMappingURL=block_btw_list.css.map */
