
/* Coastline team layout + image sizing */
@media (min-width: 761px){
  .team-grid{
    display:grid !important;
    grid-template-columns:repeat(2,minmax(0,430px)) !important;
    justify-content:center !important;
    align-items:start !important;
    gap:46px 56px !important;
  }
  .team-grid .team-member{
    width:100% !important;
    max-width:430px !important;
    justify-self:center !important;
  }
  .team-grid .team-photo{
    width:100% !important;
    max-height:430px !important;
    overflow:hidden !important;
  }
}
@media (max-width:760px){
  .team-grid{
    display:grid !important;
    grid-template-columns:1fr !important;
  }
  .team-grid .team-member{
    width:100% !important;
    max-width:340px !important;
    margin-left:auto !important;
    margin-right:auto !important;
  }
  .team-grid .team-photo{
    width:100% !important;
    max-height:380px !important;
    overflow:hidden !important;
  }
}
