/*
* Global button styling
*/
/*
* Breakpoint debugging
*/
/*
* MEDIA QUERIES
* Breakpoints for responsive sites
*/
/*
* SASS Parent append
* Useful if you want to add an append to the parent without writing it out again
* Usage: @include parent-append(":hover")
* Source: https://codepen.io/imkremen/pen/RMVBvq
*/
/*
* Skew
* Useful mixing to create skewed edges
* Usage: @include angle-edge(bottomright, 3deg, topleft, 3deg, #fff);
* Source: http://www.hongkiat.com/blog/skewed-edges-css/
*/
.block-interactive-testimonials .block-testimonials {
  display: flex;
  gap: var(--wp--preset--spacing--small);
  padding: 0;
}
@media (max-width: 782px) {
  .block-interactive-testimonials .block-testimonials {
    flex-direction: column;
  }
}
.block-interactive-testimonials .block-testimonials .testimonial {
  display: flex;
  flex-shrink: 1;
  width: 100%;
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  transform: none;
  transition: all 750ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: width;
  transition-delay: 200ms;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--wp--preset--color--white);
  backface-visibility: initial;
  background-size: cover;
  background-position: var(--bg-pos, center top);
  background-repeat: no-repeat;
}
.block-interactive-testimonials .block-testimonials .testimonial:focus-visible {
  outline-offset: 0;
}
.block-interactive-testimonials .block-testimonials .testimonial::before {
  content: "";
  inset: 0;
  position: absolute;
  background: var(--wp--preset--color--white);
  opacity: 0.5;
  z-index: 2;
  transition: 200ms ease;
}
.block-interactive-testimonials .block-testimonials .testimonial img {
  position: absolute;
  inset: 0;
  height: 120%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: var(--bg-pos, center center);
     object-position: var(--bg-pos, center center);
}
.block-interactive-testimonials .block-testimonials .testimonial-quote {
  opacity: 0;
  visibility: hidden;
  transition: 200ms ease;
  transition-delay: 0ms;
  border: 0;
  padding: 0;
  padding: var(--wp--preset--spacing--large) var(--wp--preset--spacing--medium) var(--wp--preset--spacing--medium);
  margin: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
}
.block-interactive-testimonials .block-testimonials .testimonial-quote::before {
  content: none;
}
@media (max-width: 782px) {
  .block-interactive-testimonials .block-testimonials .testimonial-quote {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
  }
}
.block-interactive-testimonials .block-testimonials .testimonial-quote p {
  font-size: 2.4rem;
  font-family: var(--wp--preset--font-family--secondary);
  border-left: 2px solid currentColor;
  padding-left: var(--wp--preset--spacing--normal);
  text-wrap: balance;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.block-interactive-testimonials .block-testimonials .testimonial-quote cite {
  font-style: normal;
  font-size: var(--wp--preset--font-size--normal);
}
.block-interactive-testimonials .block-testimonials .testimonial-quote cite::before {
  content: "-";
  margin-right: 2px;
}
@media (min-width: 783px) {
  .block-interactive-testimonials .block-testimonials .testimonial {
    height: 500px;
    background-size: auto 130%;
  }
  .block-interactive-testimonials .block-testimonials .testimonial.active {
    width: 400%;
  }
}
@media (max-width: 782px) {
  .block-interactive-testimonials .block-testimonials .testimonial {
    height: 200px;
  }
  .block-interactive-testimonials .block-testimonials .testimonial.active {
    width: 100%;
    height: 500px;
  }
}
.block-interactive-testimonials .block-testimonials .testimonial.active {
  transition-delay: 0ms;
}
.block-interactive-testimonials .block-testimonials .testimonial.active::before {
  opacity: 0;
}
.block-interactive-testimonials .block-testimonials .testimonial.active .testimonial-quote {
  opacity: 1;
  visibility: visible;
  transition-delay: 800ms;
}/*# sourceMappingURL=block-interactive-testimonials.css.map */