/**
 * Breakpoints
 */
/**
 * Typography
 */
/**
 * Grid
 */
/**
 * Colors
 */
/**
 * Spacing
 */
/**
* Font Sizes
*/
/**
 * Components
 */
/**
 * Animations
 */
/*
 * Media query to respond to a minimum size (mobile first)
 */
/*
 * Media query to respond to a maximum size
 */
/*
 * Output font size in px/rem
 */
/*
 * Placeholder mixin for <input>
 */
/**
 * Clearfix
 */
.section--team-grid {
  padding: var(--section-vertical-padding) 0;
}
.section--team-grid .section--team-grid__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 65px;
  justify-content: center;
}
.section--team-grid .section--team-grid__item {
  flex-basis: calc(33.33% - 43.3333px);
}
.section--team-grid .section--team-grid__item .section--team-grid__item__image {
  width: 100%;
  aspect-ratio: 320/256;
  -o-object-fit: cover;
     object-fit: cover;
}
.section--team-grid .section--teamgrid__title {
  display: flex;
  gap: 19.2px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.section--team-grid .section--teamgrid__title h2 {
  margin-bottom: 0;
}
.section--team-grid .section--teamgrid__bio {
  display: none;
}
.section--team-grid .section--teamgrid__bio > div {
  padding-top: 19.2px;
}
.section--team-grid .section--teamgrid__actions {
  display: flex;
  gap: 15px;
}
.section--team-grid .bio-button {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 11px;
  font-size: 0.6875rem;
  line-height: 1em;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.section--team-grid h4 {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .section--team-grid .section--team-grid__grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }
  .section--team-grid .section--team-grid__item {
    flex-basis: calc(50% - 21.666px);
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .section--team-grid .section--team-grid__item {
    flex-basis: 100%;
    margin-bottom: 0;
  }
}
