/*!*************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/blocks/overview-split/style.scss ***!
  \*************************************************************************************************************************************************************************************************************************************************************/
/**
 * Breakpoints.
 *
 * Sass cannot read the `--breakpoint-*` custom properties out of the Tailwind
 * theme at compile time, so this map mirrors them by hand. Keep the two in step:
 * `src/global/tailwind/design-system.css` is the source of truth, and the names
 * and values here are deliberately identical to it so there is one vocabulary
 * across utilities and SCSS.
 *
 * Values are the breakpoint's *min-width*, matching Tailwind. The mixin
 * subtracts a pixel when it needs a max-width query.
 */
/**
 * Breakpoint query.
 *
 * The map stores each breakpoint's min-width, the same way Tailwind's
 * `--breakpoint-*` variables do, so `$mobileFirst: true` uses the value as-is
 * and the max-width case stops a pixel short of it. That means
 * `breakpoint("sm")` and `breakpoint("sm", true)` never both match a width.
 */
/*********************
* BREAKPOINTS
*
* Names match the Tailwind scale in design-system.css:
* xxs 320, xs 375, sml 479, smlr 568, sm 768, md 992,
* lg 1025, wd 1200, lp 1400, bigLp 1600, xl 1930.
*
* @example
* below the breakpoint (max-width)
* @include breakpoint('sm') {
*	@content;
* }
*
* from the breakpoint up (min-width), matching the `sm:` utility prefix
* @include breakpoint('sm', true) {
*	@content;
*}
*********************/
/**
* Mixin to declare Font-face
*
*/
/**
 * Overview Split. Tailwind lays the section out; only the play/pause icon swap
 * needs a rule, because it is a state the utilities cannot express.
 */
.block-overview-split {
  /* Only one of the two glyphs shows; the button flips them on play state.
     aria-pressed doubles as the state hook, so no extra class is needed. */
}
.block-overview-split__icon--play {
  display: none;
}
.block-overview-split__toggle[aria-pressed=false] .block-overview-split__icon--pause {
  display: none;
}
.block-overview-split__toggle[aria-pressed=false] .block-overview-split__icon--play {
  display: block;
}
.block-overview-split .text-holder.stack-content {
  gap: 24px;
}
.block-overview-split .text-holder.stack-content .text-holder__text {
  display: flex;
  flex-direction: column;
  gap: 24px !important;
}
.block-overview-split .text-holder.stack-content .text-holder__text hr {
  display: none;
}

@media screen and (min-width: 768px) {
  .block-overview-split .media-holder:has(img) {
    aspect-ratio: 3/2;
  }
}
@media screen and (min-width: 1025px) {
  .block-overview-split .media-holder:has(img) {
    height: initial;
    aspect-ratio: initial;
  }
}

body.single-solution .block-overview-split .media-holder {
  height: initial;
}
@media screen and (min-width: 768px) {
  body.single-solution .block-overview-split .media-holder img {
    aspect-ratio: 3/2.71;
    border-radius: var(--radius-3xl);
    height: auto;
    width: initial;
  }
}

/*# sourceMappingURL=style-index.css.map*/