.stream-block {
  margin-inline: calc(var(--wdg-gap-block) * -1);
  margin-block: var(--wdg-gap-larger);
  padding-inline: 0;
  max-width: none;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
@media (max-width: 47.9375em) {
  .stream-block {
    padding-inline: var(--wdg-gap-block);
    --wdg-stream-carousel-gutter: var(--wdg-gap-xsmall);
  }
}
.stream-block {
  --wdg-stream-carousel-max-width: var(--wdg-width-wide);
  --wdg-stream-carousel-viewable: 3;
  --wdg-stream-carousel-gutter: calc(var(--wdg-gap-xsmall) * 2.5);
  --wdg-stream-carousel-slide-width: calc(
    var(--wdg-stream-carousel-max-width) / var(--wdg-stream-carousel-viewable) - var(
        --wdg-stream-carousel-gutter
      ) *
      (
        (var(--wdg-stream-carousel-viewable) - 1) /
          var(--wdg-stream-carousel-viewable)
      )
  );
  --wdg-stream-carousel-margin: calc(
    (100vw - var(--wdg-stream-carousel-max-width)) / 2
  );
  --wdg-stream-carousel-max-width: var(--wdg-width-wide);
}
.stream-slide {
  display: flex;
  flex-direction: column;
  gap: var(--wdg-gap-xsmall);
  width: var(--wdg-stream-carousel-slide-width);
  min-width: var(--wdg-stream-carousel-slide-width);
  max-width: var(--wdg-stream-carousel-slide-width);
  box-sizing: border-box;
  flex-shrink: 0;
}
.stream-slide a:hover .stream-image {
  transform: scale(1.05);
}
@media (max-width: 47.9375em) {
  .stream-slide {
    --wdg-stream-carousel-viewable: 1;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
  }
}
.stream-controls {
  display: flex;
  align-items: center;
  justify-content: center;
}
.stream-nav {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  gap: var(--wdg-gap-xsmall);
}
@media (min-width: 48em) {
  .stream-nav {
    position: absolute;
    top: 35%;
    left: var(--wdg-gap-large);
    right: var(--wdg-gap-large);
    transform: translate(10px, 10px);
    z-index: 10;
  }
}
.stream-button {
  background: var(--wdg-color-secondary);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  align-items: center;
  border: none;
  border-radius: 50%;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  padding: 0;
  pointer-events: auto;
  position: relative;
  z-index: 11;
}
.stream-button svg use {
  fill: transparent;
}
@media (max-width: 47.9375em) {
  .stream-button {
    width: 55px;
    height: 55px;
  }
}
.stream-button:hover, .stream-button:focus {
  background: var(--wdg-color-primary);
  color: var(--wdg-color-white);
}
.stream-button:hover svg path, .stream-button:focus svg path {
  stroke: var(--wdg-color-white);
}
.stream-button:disabled {
  opacity: 0.6;
}
.stream-prev svg {
  transform: rotate(180deg);
  color: white;
}
.stream-next svg {
  color: white;
}
.stream-container {
  overflow: hidden;
}
.stream-track {
  display: flex;
  gap: var(--wdg-stream-carousel-gutter);
}
@media (min-width: 48em) {
  .stream-track {
    padding-inline: max(var(--wdg-gap-small), var(--wdg-resource-carousel-margin));
  }
}
.stream-track {
  scroll-padding-inline: max(var(--wdg-gap-small), var(----wdg-resource-carousel-margin));
  --wdg-resource-carousel-margin: calc(
    (100vw - var(--wdg-resource-carousel-max-width)) / 2
  );
  --wdg-resource-carousel-max-width: var(--wdg-width-wide);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  flex-wrap: nowrap;
}
.stream-media {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin: 0;
  border-radius: 6px;
  max-height: 400px;
  aspect-ratio: 1/1;
}
.stream-image {
  border-radius: 6px;
  aspect-ratio: 1/1;
  transform: scale(1);
  transition: ease all 0.4s;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.stream-description {
  font-size: var(--wdg-font-size-h5);
  letter-spacing: -0.015em;
  font-weight: 500;
}
.stream-description p {
  margin-top: 0;
}
/*# sourceMappingURL=stream.css.map */
