.container .rbl-stories > .container {
  padding-left: 0;
  padding-right: 0;
  max-width: none;
}

.single-post .rbl-stories {
  margin-top: 0;
  padding-top: 0;
}

.rbl-stories {
  padding: 60px 0;
}
.rbl-stories__title {
  font-size: 32px;
  font-weight: 600;
  color: #000;
  margin: 0 0 24px;
}
.rbl-stories__viewport {
  position: relative;
}
.rbl-stories__rail {
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.rbl-stories__rail::-webkit-scrollbar {
  display: none;
}
.rbl-stories__item {
  flex: 0 0 auto;
  scroll-snap-align: start;
}
.rbl-stories__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  padding: 0;
  transform: translateY(-50%);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 50%;
  background: #3b3c3e;
  color: #fff;
  cursor: pointer;
  transition: opacity 0.2s ease, background 0.2s ease;
}
.rbl-stories__arrow svg {
  width: 32px;
  height: 32px;
}
.rbl-stories__arrow:hover {
  background: #000;
}
.rbl-stories__arrow[hidden], .rbl-stories__arrow[disabled] {
  display: none;
}
.rbl-stories__arrow--prev {
  left: -32px;
}
.rbl-stories__arrow--prev svg {
  transform: rotate(180deg);
}
.rbl-stories__arrow--next {
  right: -32px;
}

.rbl-story-card {
  position: relative;
  display: block;
  width: 220px;
  height: 323px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 20px;
  background: #e9eaec;
  cursor: pointer;
}
.rbl-story-card__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rbl-story-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 130px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000 100%);
  pointer-events: none;
}
.rbl-story-card__caption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.25;
  text-align: left;
  color: #fff;
}
.rbl-story-card:hover .rbl-story-card__media {
  transform: scale(1.04);
}
.rbl-story-card__media {
  transition: transform 0.4s ease;
}

.rbl-stories-viewer {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.8);
}
.rbl-stories-viewer[hidden] {
  display: none;
}
.rbl-stories-viewer__stage {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: auto;
  max-width: 100%;
  aspect-ratio: var(--story-ratio, 589/865);
}
.rbl-stories-viewer__progress {
  position: absolute;
  top: 16px;
  right: 16px;
  left: 16px;
  z-index: 3;
  display: flex;
  gap: 5px;
}
.rbl-stories-viewer__segment {
  position: relative;
  flex: 1 1 0;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
}
.rbl-stories-viewer__segment-fill {
  position: absolute;
  inset: 0;
  width: 0;
  border-radius: 999px;
  background: #fff;
}
.rbl-stories-viewer__frame {
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
  overflow: hidden;
  border-radius: 20px;
  background: #000;
}
.rbl-stories-viewer__frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rbl-stories-viewer__frame video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rbl-stories-viewer__frame::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 130px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000 100%);
  pointer-events: none;
}
.rbl-stories-viewer .rbl-stories-viewer__caption {
  position: absolute;
  right: 31px;
  bottom: 32px;
  left: 31px;
  z-index: 1;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  color: #fff !important;
}
.rbl-stories-viewer__cta {
  position: absolute;
  bottom: 32px;
  right: 31px;
  z-index: 2;
  padding: 10px 20px;
  border-radius: 999px;
  background: #fff;
  font-size: 15px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
}
.rbl-stories-viewer__arrow {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 50%;
  background: #b7bac0;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, opacity 0.2s ease;
}
.rbl-stories-viewer__arrow svg {
  width: 32px;
  height: 32px;
}
.rbl-stories-viewer__arrow:hover {
  background: #fff;
  color: #000;
}
.rbl-stories-viewer__arrow[aria-disabled=true] {
  opacity: 0.35;
  cursor: default;
}
.rbl-stories-viewer__arrow[aria-disabled=true]:hover {
  background: #b7bac0;
  color: #fff;
}
.rbl-stories-viewer__arrow--prev svg {
  transform: rotate(180deg);
}
.rbl-stories-viewer__sound {
  position: absolute;
  top: 36px;
  left: 16px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  cursor: pointer;
}
.rbl-stories-viewer__sound[hidden] {
  display: none;
}
.rbl-stories-viewer__sound svg {
  width: 22px;
  height: 22px;
}
.rbl-stories-viewer__sound:hover {
  background: rgba(0, 0, 0, 0.7);
}
.rbl-stories-viewer__icon-sound {
  display: none;
}
.rbl-stories-viewer:not(.is-muted) .rbl-stories-viewer__sound .rbl-stories-viewer__icon-muted {
  display: none;
}
.rbl-stories-viewer:not(.is-muted) .rbl-stories-viewer__sound .rbl-stories-viewer__icon-sound {
  display: block;
}
.rbl-stories-viewer.is-paused .rbl-stories-viewer__frame img,
.rbl-stories-viewer.is-paused .rbl-stories-viewer__frame video {
  opacity: 0.75;
}
.rbl-stories-viewer__frame {
  cursor: pointer;
}
.rbl-stories-viewer__close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  cursor: pointer;
}
.rbl-stories-viewer__close svg {
  width: 24px;
  height: 24px;
}
.rbl-stories-viewer__close:hover {
  background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 1024px) {
  .rbl-stories__arrow--prev {
    left: 8px;
  }
  .rbl-stories__arrow--next {
    right: 8px;
  }
}
@media (max-width: 767px) {
  .rbl-stories {
    padding: 40px 0;
  }
  .rbl-stories__title {
    font-size: 24px;
  }
  .rbl-stories__arrow {
    display: none;
  }
  .rbl-stories__rail {
    gap: 10px;
  }
  .stories-bleed .rbl-stories__rail {
    margin-right: -20px;
    margin-left: -20px;
    padding-right: 20px;
    padding-left: 20px;
    scroll-padding-left: 20px;
  }
  .rbl-story-card {
    width: 38vw;
    max-width: 160px;
    height: auto;
    aspect-ratio: 150/220;
  }
  .rbl-story-card__caption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    font-size: 14px;
  }
  .rbl-stories-viewer {
    gap: 0;
    padding: 0;
  }
  .rbl-stories-viewer__stage {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
  }
  .rbl-stories-viewer__progress {
    top: 12px;
    right: 12px;
    left: 12px;
  }
  .rbl-stories-viewer__frame {
    flex: 1 1 auto;
    height: 100%;
    border-radius: 0;
  }
  .rbl-stories-viewer__caption {
    right: 20px;
    bottom: 24px;
    left: 20px;
    font-size: 18px;
  }
  .rbl-stories-viewer__cta {
    right: 20px;
    bottom: 76px;
  }
  .rbl-stories-viewer__arrow {
    display: none;
  }
  .rbl-stories-viewer__sound {
    top: 28px;
    left: 12px;
  }
}

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