.made_team_grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}

.team_member {
  cursor: pointer;
}

.team_member img {
  border-radius: 0 0 60px 0;
  overflow: hidden;
  background: rgba(208, 210, 211, .2);
  object-fit: contain;
  object-position: center;
  outline: solid 1.5px rgba(0,0,0,0);
  outline-offset: -1px;
  transition: outline .15s ease;
  max-height: 448px;
  width: 100%;
  height: 100%;
}

.team_member:hover img {
  outline: solid 1.5px var(--brand-grey);
}

.team_member_bio {
  display: none;
}

.team_member_name {
  font-size: 25px !important;
  margin: 13px 0;
  margin-bottom: 13px !important;
}

.team_member_title {
  font-size: 20px !important;
}

.team_member_popup.closed {
  display: none;
}

.team_member_popup {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 1001;
}

.team_popup_overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(208, 210, 211, .6);
    backdrop-filter: blur(5px);
}

.team_popup_box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  /* max-width: 800px; */
  padding: 60px;
  background: #fff;
  border-radius: 0 0 50px 0;
  max-height: 90%;
  overflow-y: auto;
}

.team_popup_content {
  display: flex;
  gap: 80px;
}

.team_popup_name {
  font-size: 25px !important;
  margin: 0 0 13px !important;
}

.team_popup_title {
  font-size: 25px;
}

.team_popup_bio {
  font-size: 22px;
  font-weight 400;
  margin-top: 23px;
  line-height: 1.3;
}

.team_popup_bio > * {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.team_member_popup img {
  border-radius: 0 0 60px 0;
  overflow: hidden;
  background: rgba(208, 210, 211, .2);
  object-fit: contain;
  object-position: center;
  min-height: 350px;
  min-width: 417px;
}

.team_member_popup h2 {
  margin-bottom: 13px;
}

.team_member_popup p {
  margin-bottom: 13px;
  font-size: 18px !important;
}

.team_member_popup a {
  color: #000;
  text-decoration: none;
}

.team_member_popup a:hover {
  text-decoration: underline;
}

.team_popup_close,
.team_popup_close:hover,
.team_popup_close:active {
  position: absolute;
  top: 47px;
  right: 47px;
  padding: 10px;
  cursor: pointer;
  width: 31px;
  height: 31px;
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzUiIGhlaWdodD0iMzMiIHZpZXdCb3g9IjAgMCAzNSAzMyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGxpbmUgeDE9IjIuNzA3MTEiIHkxPSIxLjI5Mjg5IiB4Mj0iMzMuNzA3MSIgeTI9IjMyLjI5MjkiIHN0cm9rZT0iYmxhY2siIHN0cm9rZS13aWR0aD0iMiIvPgo8bGluZSB5MT0iLTEiIHgyPSI0My44NDA2IiB5Mj0iLTEiIHRyYW5zZm9ybT0ibWF0cml4KC0wLjcwNzEwNyAwLjcwNzEwNyAwLjcwNzEwNyAwLjcwNzEwNyAzMyAyKSIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLXdpZHRoPSIyIi8+Cjwvc3ZnPgo=");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 1600px) {
  .team_popup_box {
    padding: 50px;
  }

  .team_popup_content {
    gap: 40px;
  }
}

@media (max-width: 1200px) {
  .made_team_grid {
    grid-template-columns: 1fr 1fr;
  }

  .team_popup_content {
    flex-direction: column;
    gap: 40px;
  }
  .team_member_popup img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    min-width: 300px;
  }
}

@media (max-width: 900px) {
  .team_popup_box {
    padding: 30px;
  }

  .team_popup_content {
    gap: 20px;
  }
  
  .team_popup_bio {
    font-size: 18px;
  }
  
  .team_popup_close,
  .team_popup_close:hover,
  .team_popup_close:active {
    top: 20px;
    right: 20px;
  }
}

@media (max-width: 750px) {
  .made_team_grid {
    grid-template-columns: 1fr;
  }

  .team_popup_box {
    padding: 20px;
    width: calc(100% - 50px);
  }

  .team_member_popup img {
    width: 100%;
    height: 100%;
  }
}