@charset "UTF-8";
/**
 * Clamps, aka truncates, multi-line text. Note that non-webkit browsers will
 * not see the ellipsis ¯\_(ツ)_/¯
 * @param {Value}          $font-size     - Font size of the text
 * @param {Unitless Value} $line-height   - Line height of the text;
 * @param {Number}         $lines-to-show - Number of lines to show
 * @example scss
 * p {
 *    @include line-clamp($font-size: 16px, $line-height: 1.5, $lines-to-show: 3);
 * }
 */
.tabbed-carousel-wrapper {
  /* ========== MOBILE-FIRST: behave like Accordion ========== */
}
.tabbed-carousel-wrapper .tabbed-carousel {
  position: relative;
}
.tabbed-carousel-wrapper .wp-block-acf-tab {
  overflow: hidden;
  margin-block-start: 0;
  transition: all 400ms;
  border-bottom: 1px solid var(--wp--preset--color--contrast);
}
.tabbed-carousel-wrapper .wp-block-acf-tab:last-child {
  border-bottom: none;
}
.tabbed-carousel-wrapper .wp-block-acf-tab {
  /* Active state mirrors .accordion-item-visible */
}
.tabbed-carousel-wrapper .wp-block-acf-tab.active > .tab-label:after {
  transform: scale(1, -1);
}
.tabbed-carousel-wrapper .wp-block-acf-tab.active > .tab-content {
  max-height: 75em;
  padding: var(--wp--preset--spacing--medium);
  /* same expansion as accordion */
}
.tabbed-carousel-wrapper .wp-block-acf-tab {
  /* Label mirrors .accordion-item-label */
}
.tabbed-carousel-wrapper .wp-block-acf-tab > .tab-label {
  width: 100%;
  background-color: transparent;
  border: none;
  padding: var(--wp--preset--spacing--medium) 0;
  padding-right: 3.5em;
  text-align: start;
  font-size: var(--wp--preset--font-size--regular);
  font-style: normal;
  position: relative;
  color: var(--wp--preset--color--contrast);
  cursor: pointer;
  transition: all 250ms;
  /* Chevron matches Accordion SVG (stroke + flip on open) */
}
.tabbed-carousel-wrapper .wp-block-acf-tab > .tab-label:after {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 34.309 19.275'%3E%3Cpath d='M0,32.187,16.094,16.094,0,0' transform='translate(33.248 1.061) rotate(90)' fill='none' stroke='%2300304A' stroke-miterlimit='10' stroke-width='3'/%3E%3C/svg%3E");
  height: 1.25em;
  width: 1.25em;
  display: block;
  position: absolute;
  right: 0;
  top: var(--wp--preset--spacing--medium);
  transition: all 250ms;
  text-align: center;
}
.tabbed-carousel-wrapper .wp-block-acf-tab {
  /* Content mirrors .accordion-item-content */
}
.tabbed-carousel-wrapper .wp-block-acf-tab > .tab-content {
  max-height: 0;
  overflow: hidden;
  transition: all 400ms;
  background-color: var(--wp--preset--color--base);
  padding: 0 var(--wp--preset--spacing--medium);
}
.tabbed-carousel-wrapper {
  /* Keep your extra spacing on plain content sections */
}
.tabbed-carousel-wrapper .tab__content {
  padding-bottom: 2rem;
}
.tabbed-carousel-wrapper {
  /* Slide controller untouched */
}
.tabbed-carousel-wrapper .slide-controller {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 0 0 calc(45% - var(--wp--preset--spacing--medium) / 2);
}
.tabbed-carousel-wrapper .slide-controller button {
  width: 100%;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--wp--preset--color--contrast);
  padding: var(--wp--preset--spacing--medium) 0;
  text-align: start;
  font-size: var(--wp--preset--font-size--regular);
  font-style: normal;
  position: relative;
  color: var(--wp--preset--color--contrast);
  cursor: pointer;
  transition: all 250ms;
}
.tabbed-carousel-wrapper .slide-controller button:before {
  content: "";
  background-color: var(--wp--preset--color--purple);
  height: 1em;
  width: 0;
  display: block;
  position: absolute;
  left: 0;
  top: var(--wp--preset--spacing--medium);
  transition: all 250ms;
}
.tabbed-carousel-wrapper .slide-controller button {
  /* Chevron matches Accordion SVG (stroke + flip on open) */
}
.tabbed-carousel-wrapper .slide-controller button:after {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 34.309 19.275'%3E%3Cpath d='M0,32.187,16.094,16.094,0,0' transform='translate(33.248 1.061) rotate(90)' fill='none' stroke='%2300304A' stroke-miterlimit='10' stroke-width='3'/%3E%3C/svg%3E");
  height: 1.25em;
  width: 1.25em;
  display: block;
  position: absolute;
  right: 0;
  top: var(--wp--preset--spacing--medium);
  transition: all 250ms;
  text-align: center;
  transform: rotate(-90deg);
}
.tabbed-carousel-wrapper .slide-controller button:first-of-type {
  padding-top: 0;
}
.tabbed-carousel-wrapper .slide-controller button:first-of-type::before {
  top: 0;
}
.tabbed-carousel-wrapper .slide-controller button:first-of-type::after {
  top: 0;
}
.tabbed-carousel-wrapper .slide-controller button:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.tabbed-carousel-wrapper .slide-controller button.active::before {
  width: 1em;
}
.tabbed-carousel-wrapper .slide-controller button.active > span {
  transform: translateX(1.5em);
}
.tabbed-carousel-wrapper .slide-controller button:hover, .tabbed-carousel-wrapper .slide-controller button:focus, .tabbed-carousel-wrapper .slide-controller button:focus-within {
  text-indent: 0.25em;
}
.tabbed-carousel-wrapper .slide-controller button > span {
  display: block;
  width: 100%;
  max-width: calc(100% - 3.5em - 1.5em);
  transition: all 250ms;
}
.tabbed-carousel-wrapper {
  /* Editor preview parity for collapsed content (like accordion preview rule) */
}
.tabbed-carousel-wrapper .acf-block-preview.tab-content,
.tabbed-carousel-wrapper .block-editor-block-list__block.tab-content {
  max-height: initial !important;
}
.tabbed-carousel-wrapper {
  /* ========== Tablet +  OVERRIDES (unchanged behaviour) ========== */
}
@media (min-width: 768px) {
  .tabbed-carousel-wrapper {
    display: flex;
    justify-content: space-between;
    gap: var(--wp--preset--spacing--medium);
    position: relative;
    padding: var(--wp--preset--spacing--large);
    background-color: var(--wp--preset--color--base);
  }
  .tabbed-carousel-wrapper .tabbed-carousel {
    flex: 1 0 0;
  }
  .tabbed-carousel-wrapper .wp-block-acf-tab {
    border-bottom: none;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
  }
  .tabbed-carousel-wrapper .wp-block-acf-tab.active > .tab-label {
    /* Hide label on desktop; keep for clarity */
    display: none;
  }
  .tabbed-carousel-wrapper .wp-block-acf-tab.active > .tab-content {
    max-height: initial;
    z-index: 1;
    padding: 0;
  }
  .tabbed-carousel-wrapper .wp-block-acf-tab.active > .tab-content > * {
    opacity: 1;
  }
  .tabbed-carousel-wrapper .wp-block-acf-tab.active > .tab-content .tab__image .wp-block-image {
    top: 0;
  }
  .tabbed-carousel-wrapper .wp-block-acf-tab > .tab-label {
    display: none;
    /* tabs are controlled by external controller on desktop */
  }
  .tabbed-carousel-wrapper .wp-block-acf-tab > .tab-content {
    position: relative;
    max-height: initial;
    overflow: initial;
    z-index: 0;
    background-color: transparent;
    padding: 0 !important;
  }
  .tabbed-carousel-wrapper .wp-block-acf-tab > .tab-content > * {
    opacity: 0;
    transition: all 250ms;
  }
  .tabbed-carousel-wrapper .wp-block-acf-tab > .tab-content > *:first-child {
    margin-top: 0 !important;
  }
  .tabbed-carousel-wrapper .wp-block-acf-tab > .tab-content .tab__image {
    position: relative;
  }
  .tabbed-carousel-wrapper .wp-block-acf-tab > .tab-content .tab__image:after {
    display: block;
    content: "";
    width: 100%;
    height: 0;
    padding-bottom: 100%;
  }
  .tabbed-carousel-wrapper .wp-block-acf-tab > .tab-content .tab__image .wp-block-image {
    width: calc(100% + var(--wp--style--root--padding-right));
    height: 0;
    padding-bottom: calc(100% + var(--wp--style--root--padding-right));
    position: absolute;
    top: 25%;
    transition: all 350ms;
  }
  .tabbed-carousel-wrapper .wp-block-acf-tab > .tab-content .tab__image .wp-block-image img,
  .tabbed-carousel-wrapper .wp-block-acf-tab > .tab-content .tab__image .wp-block-image picture {
    min-width: 100%;
  }
}

.wp-block-acf-tabbed-content.has-background {
  border-radius: 0.5em;
  overflow: hidden;
}
.wp-block-acf-tabbed-content.has-background .tabbed-carousel-wrapper .wp-block-acf-tab > .tab-label {
  padding-left: var(--wp--preset--spacing--medium);
  color: inherit;
}
.wp-block-acf-tabbed-content.has-background .tabbed-carousel-wrapper .wp-block-acf-tab > .tab-label::after {
  right: var(--wp--preset--spacing--small);
}
.wp-block-acf-tabbed-content.has-background .tabbed-carousel-wrapper .wp-block-acf-tab > .tab-content {
  background-color: transparent;
}
@media (min-width: 768px) {
  .wp-block-acf-tabbed-content.has-background .tabbed-carousel-wrapper {
    background-color: transparent;
  }
  .wp-block-acf-tabbed-content.has-background .tabbed-carousel-wrapper .slide-controller button {
    color: inherit;
  }
}/*# sourceMappingURL=style.css.map */
