/*
* 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/
*/
/*
* TEXT TRUNCATE
* An easy way to truncate text with an ellipsis. Requires the element to be block or inline-block.
* Usage: @include text-truncate;
* Source: http://web-design-weekly.com/2013/05/12/handy-sass-mixins/
*/
/*
* DON'T BREAK
* Useful mixing so links don't overrun their container
* Usage: @include dontbreak();
* Source: https://css-tricks.com/snippets/css/prevent-long-urls-from-breaking-out-of-container/
*/
/*
* Dynamic Spacing
* A nice easy way to create a vertical rhythm for section of content
*/
/*
* Accessibility Focus
* Using the focus-visible psuedo class to only show focus styles when the element is focused via the keyboard
*/
.block-team-list .entry {
  margin: 0 0 3vw;
}
.block-team-list .entry:last-child {
  margin: 0;
}
.block-team-list .entry .title {
  display: inline-block;
  margin: 0 10px 0 0;
}
.block-team-list .entry .position {
  display: block;
  font-style: italic;
}
.block-team-list .entry .details {
  display: flex;
  gap: 30px;
  margin: 20px 0 0;
}
.block-team-list .entry .img {
  flex: 0 0 auto;
}
.block-team-list .entry .bio-text p:last-child {
  margin: 0;
}
.block-team-list .entry .social-icon {
  font-size: 24px;
}
.block-team-list:not(:last-child) {
  margin: 0 0 3vw;
}

@media (min-width: 1600px) {
  .block-team-list .entry {
    margin: 0 0 50px;
  }
  .block-team-list .entry .img img {
    width: 200px;
  }
  .block-team-list .entry .social-icon {
    font-size: 26px;
  }
  .block-team-list:not(:last-child) {
    margin: 0 0 50px;
  }
}
@media (max-width: 960px) {
  .block-team-list .entry {
    margin: 0 0 35px;
  }
  .block-team-list .entry .position {
    font-size: 15px;
  }
  .block-team-list .entry .social-icon {
    font-size: 22px;
  }
  .block-team-list:not(:last-child) {
    margin: 0 0 35px;
  }
}
@media (max-width: 640px) {
  .block-team-list .entry .title {
    display: block;
    margin: 0;
  }
  .block-team-list .entry .position {
    font-size: 14px;
  }
  .block-team-list .entry .details {
    flex-direction: column;
    gap: 20px;
    margin: 15px 0 0;
  }
}/*# sourceMappingURL=block-team-list.css.map */