/*
* 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
*/
/*
* Center Images with absolute positioning
*/
/*
* Constellation blue image overlay
*/
/*
* Constellation corner layout
*/
/*
* Edge mixin
*/
.block-team-grid .team-grid {
  position: relative;
  margin-right: -30px;
}
.block-team-grid .team-grid.team-fade .team-member:not(.open) .member-image {
  opacity: 0.5;
}
.block-team-grid .team-member {
  position: relative;
  transition: 350ms ease-in-out;
  width: calc(25% - 35px);
  margin: 0 30px 30px 0;
  display: inline-block;
  vertical-align: top;
}
@media (max-width: 1024px) {
  .block-team-grid .team-member {
    width: calc(33.3333333333% - 35px);
  }
}
@media (max-width: 768px) {
  .block-team-grid .team-member {
    width: calc(50% - 35px);
  }
}
.block-team-grid .team-member.open .member-image .image img {
  filter: grayscale(0);
}
.block-team-grid .team-member.open .member-image .image:before {
  opacity: 0;
}
.block-team-grid:not(.disable-toggle) .member-image {
  transition: 350ms ease-in-out;
}
@media (min-width: 1025px) {
  .block-team-grid:not(.disable-toggle) .member-image:hover {
    cursor: pointer;
    opacity: 1 !important;
  }
  .block-team-grid:not(.disable-toggle) .member-image:hover .image img {
    filter: grayscale(100%);
  }
  .block-team-grid:not(.disable-toggle) .member-image:hover .image:before {
    opacity: 1;
  }
}
.block-team-grid .image {
  overflow: hidden;
  position: relative;
  aspect-ratio: 1/1;
}
.block-team-grid .image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.block-team-grid .image img {
  filter: grayscale(100%);
  z-index: 1;
  transition: 350ms ease-in-out;
}
.block-team-grid .image:before {
  pointer-events: none;
  content: "";
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  background: #00aec7;
  transition: 350ms ease-in-out;
  mix-blend-mode: multiply;
}
.block-team-grid .image img {
  filter: grayscale(0);
}
.block-team-grid .image:before {
  opacity: 0;
}
.block-team-grid .member-details {
  min-height: 135px;
  padding: 2rem 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-all;
  word-break: break-word;
  hyphens: auto;
}
@media (max-width: 768px) {
  .block-team-grid .member-details {
    min-height: 110px;
  }
}
.block-team-grid .member-details .name {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: #00263e;
  hyphens: none;
}
.block-team-grid .member-details .position {
  line-height: 1.2;
  color: #00aec7;
  font-size: 1.6rem;
  margin: 0;
}
.block-team-grid .member-bio {
  position: relative;
  z-index: 4;
  display: none;
  pointer-events: none;
  float: left;
  background: #fff;
  padding-bottom: 3.5rem;
  padding-right: 30px;
}
.block-team-grid .member-bio.active-tab {
  display: block;
  pointer-events: all;
  height: auto;
}
.block-team-grid .member-bio .bio {
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-all;
  word-break: break-word;
  hyphens: auto;
}
.block-team-grid .member-bio .bio > * + * {
  margin-top: 2.8rem;
  margin-bottom: 0;
}

.has-bg-blue .block-team-grid .member-details .name {
  color: #fff;
}
.has-bg-blue .block-team-grid .member-details .position {
  color: #8bd3e6;
}
