/* #region "../src/elements/contributors-list/contributors-list.scss" */
/*
- type: css
*/
/*******************************
 * 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
 ******************************/
.contributors-list {
  --cols-xs: 12;
  --cols-s: 6;
  --cols-md: 4;
  --cols-lg: 3;
  row-gap: calc(2 * var(--layout-gap));
}
.contributors-list .contributor-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: inherit;
}
:root.no-focus-visible .contributors-list .contributor-item:focus {
  outline: 2px solid var(--focus-color, var(--black));
  outline-offset: var(--focus-offset, 3px);
}

.contributors-list .contributor-item:focus:not(:focus-visible) {
  outline: none;
}
.contributors-list .contributor-item:focus-visible {
  outline: 2px solid var(--focus-color, var(--black));
  outline-offset: var(--focus-offset, 3px);
}
.contributors-list .contributor-item:hover .contributor-title {
  text-decoration: underline;
  text-underline-offset: 0.15em;
  text-decoration-thickness: var(--border-width);
}
.contributors-list .contributor-item img {
  border-radius: 50%;
}
.contributors-list .contributor-item .contributor-title {
  margin-top: /* grow(4, 11) */ clamp(0.25rem, 0.1041666667rem + 0.6481481481vw, 0.6875rem);
  margin-bottom: /* grow(0, 3) */ clamp(0rem, -0.0625rem + 0.2777777778vw, 0.1875rem);
}
.contributors-list .contributor-item .contributor-description {
  text-wrap: balance;
  text-align: center;
  max-width: 300px;
}
/* #endregion "../src/elements/contributors-list/contributors-list.scss" */

head{--webpack--css-wpce--contributors-list:&\.\.\/src\/elements\/contributors-list\/contributors-list\.scss;}
/*# sourceMappingURL=css-wpce--contributors-list.css.map*/