
/*!******************************************************!*\
  !*** ../src/elements/logo-marquee/logo-marquee.scss ***!
  \******************************************************/
/*******************************
 * Buttons
 ******************************/
/*
 * Applies the complete set of button styles with all desired style variations.
 * This mixin is normally applied to form buttons or links with
 * the desired button classes eg. .button.style-xxx.
 */
/*
 * Contains styles that all of the buttons have in common.
 * Some button styles might opt out or override some of these styles.
 * One benefit of this approach is that all of the buttons will be consistently
 * configurable with the CSS variables defined below.
 */
/*******************************
 * Button Styles
 *
 * Styles should define the way the buttons look. Depending on the project,
 * you may need to optimize each style based on the section / element that
 * a button is used in. For that purpose you can use the predefined CSS
 * variables to easily overwrite the desired colors based on your need.
 ******************************/
/*******************************
 * Inputs
 ******************************/
.logo-marquee-wrapper {
  padding-block: /* grow(48, 56) */ clamp(3rem, 2.8636363636rem + 0.6060606061vw, 3.5rem);
}
.logo-marquee-wrapper .logo-marquee:is(body:not(.no-js) *) {
  margin-inline: calc(-1 * var(--content-margin));
}
.logo-marquee-wrapper .logo-marquee {
  --marquee-gutter: /* grow(65, 90) */ clamp(4.0625rem, 3.6363636364rem + 1.8939393939vw, 5.625rem);
}
:where(.logo-marquee-wrapper .logo-marquee) :where([x-marquee]) {
  display: flex;
  column-gap: var(--marquee-gutter);
}
:where(.logo-marquee-wrapper .logo-marquee) :where([x-marquee] > *) {
  flex-shrink: 0;
}

@media (prefers-reduced-motion: reduce) {
  .logo-marquee-wrapper .logo-marquee [x-marquee] {
    display: flex;
    column-gap: var(--marquee-gutter);
    row-gap: calc(0.5 * var(--marquee-gutter));
    flex-wrap: wrap;
  }
}
.logo-marquee-wrapper .logo-marquee:is(body.no-js *) [x-marquee] {
  display: flex;
  column-gap: var(--marquee-gutter);
  row-gap: calc(0.5 * var(--marquee-gutter));
  flex-wrap: wrap;
}

/*# sourceMappingURL=css-wpce--logo-marquee.css.map*/