
/*!****************************************!*\
  !*** ../src/elements/logos/logos.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
 ******************************/
.logos {
  container-type: inline-size;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: var(--layout-gap);
  list-style: none;
  padding: 0;
  margin-block: /* grow(30, 50) */ clamp(1.875rem, 1.3392857143rem + 2.380952381vw, 3.125rem);
}
.logos-item {
  --card-padding-x: 1.5rem;
  --card-padding-y: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: auto;
  max-width: 100%;
}
@container (min-width: 320px) {
  .logos-item {
    min-width: 300px;
  }
}
.logos-item a {
  display: block;
  transition: transform 200ms;
}
.logos-item a:hover {
  transform: scale(1.1);
}

/*# sourceMappingURL=css-wpce--logos.css.map*/