.team_items_wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 1rem;
  margin-top: 45px; }
  @media screen and (max-width: 768px) {
    .team_items_wrap {
      grid-template-columns: 1fr;
      gap: 10px; } }

.team_item {
  padding: 15px;
  padding-bottom: 30px;
  background: #F8F5F2;
  border-radius: 20px; }
  .team_item:nth-child(2) {
    background-image: linear-gradient(180.03deg, rgba(254, 146, 56, 0.4) 0.03%, rgba(254, 146, 56, 0) 78.62%); }
    @media screen and (max-width: 768px) {
      .team_item:nth-child(2) {
        order: -1; } }
  .team_item img {
    border-radius: 20px;
    aspect-ratio: 1.7;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%; }
  .team_item ul {
    padding-left: 15px;
    margin-top: 20px;
    margin-bottom: 0; }
    .team_item ul li {
      margin-bottom: 10px;
      font-size: 15px;
      font-weight: 400;
      line-height: 20.25px;
      text-align: left;
      text-underline-position: from-font;
      text-decoration-skip-ink: none;
      color: var(--wp--preset--color--black-text); }
      .team_item ul li:last-child {
        margin-bottom: 0; }
      .team_item ul li::marker {
        color: var(--wp--preset--color--green);
        font-size: 20px; }
  .team_item .badge {
    margin: 20px 0 10px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content; }
