.action-icon {
  width: 40px;
  height: 40px;
  background: #e8ecce;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;


  & svg {
    fill: #768226;
    max-width: 20px;
    max-height: 20px;
  }

  & i {
    color: #768226;

    max-width: 20px;
    max-height: 20px;
  }

}

h3 {
  font-size: 16px;
}

section p {
  font-size: 15px;
  color: #5F6368;
  line-height: 1.5;
}

section p.font-bold {
  font-weight: 700;
  color: rgb(44, 44, 44);
  font-size: 17px;
}


section .header .bubble {
  padding: 6px 12px;
  font-size: 13px;
  color: #5F6382;
  background: #E8ECCE;
  border-radius: 999999px;

}

#neurology p.relaxed {
  width: 55%;
}

#neurology .neuro-card {
  border-radius: 10px;
  border: 1px solid #E4E4DC;
  overflow: hidden;

  & .bg-neuro {
    height: 4px;
    background: #2E5F6E;
  }

  & .content {
    padding: 28px;
  }

  & p.text {
    color: rgb(46 95 110);
    font-size: 14px;
    font-weight: 700;

  }

  & .img {
    width: 80px;
    height: 80px;

    & img {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      object-fit: cover;
    }
  }


}

#team .grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

#team .member-card {
  border: 1px solid rgb(228 228 220);
  border-radius: 10px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  transition: .2s ease;
  cursor: pointer;

  & .img {
    width: 85px;
    height: 85px;
    display: flex;
    justify-content: center;
    align-items: center;

    & img {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      object-fit: cover;
      object-position: 0 10%;
      box-sizing: content-box;
      border: 2px solid rgb(228 228 220);
    }
  }

  & p.name {
    font-weight: 600;
    font-size: 16px;
    color: rgb(44 44 44);
  }

  & p.tag {
    font-size: 14px;
    color: rgb(118 130 38);
  }

}

#team .member-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(118, 130, 38, 0.14);
  text-decoration: none;
  & img {
    border: 2px solid #768226;
  }
}

#team-hero h1 {
    font-size: 72px;
    text-align: start;
    font-family: "Playfair Display";
}

#team-hero .paragraph-element {
    width: 40%;
}

#team-hero p {
    font-size: 20px;
    line-height: 30px;
}

#team .team-title {
  font-family: "Playfair Display";
  font-size: 38px;
}

#team div:has(> .team-title) {
  padding-top: var(--variable-4);
}
@media only screen and (max-width: 850px) {
    #team-hero h1 {
        font-size: 52px;
    }
    #team-hero .paragraph-element {
        width: 100%;
    }
    #team-hero p {
        font-size: 16px;
        line-height: unset;
    }

    #team .team-title {
      font-family: "Playfair Display";
      font-size: 32px;
      margin-bottom: 20px;
      margin-top: 20px;
    }

    #team div:has(> .team-title) {
      padding-top: 0;
    }

    #team .grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #neurology p.relaxed {
      width: 80%;
    }
}
