/*
* Global button styling
*/
/*
* Breakpoint debugging
*/
/*
* MEDIA QUERIES
* Breakpoints for responsive sites
*/
/*
* SASS Parent append
* Useful if you want to add an append to the parent without writing it out again
* Usage: @include parent-append(":hover")
* Source: https://codepen.io/imkremen/pen/RMVBvq
*/
/*
* Skew
* Useful mixing to create skewed edges
* Usage: @include angle-edge(bottomright, 3deg, topleft, 3deg, #fff);
* Source: http://www.hongkiat.com/blog/skewed-edges-css/
*/
.block-team-grid .team-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-gap: var(--wp--preset--spacing--medium);
  align-items: start;
}
.block-team-grid .team-grid .team-member {
  background: #f8f8f8;
  color: #121212;
  height: 100%;
}
.block-team-grid .team-grid .team-member .member-body .member-info .bio-button svg path {
  stroke: var(--wp--preset--color--white);
}
.block-team-grid .team-grid .team-member:hover {
  background: #121212;
  color: var(--wp--preset--color--white);
}
.block-team-grid .team-grid .team-member:hover .linkedin {
  color: var(--wp--preset--color--white);
}
.block-team-grid .team-grid .team-member:hover .member-body .member-info .bio-button svg path {
  stroke: #121212;
}
@media (max-width: 1024px) {
  .block-team-grid .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 782px) {
  .block-team-grid .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .block-team-grid .team-grid {
    grid-template-columns: 1fr;
  }
}/*# sourceMappingURL=block-team-grid.css.map */