/* Base styles for mobile-first */
  .team-card-ten {
    display: flex;
    flex-direction: column;
    height: auto;
    text-align: center;
  }

  .team-img-ten img {
    width: 100%;
    height: auto;
  }

  .info-box-ten {
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .name {
    font-size: 15px;
	color:#07ccec;
  }

  .designation {
    font-size: 14px;
    color: #777;
  }

  .button-group {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 15px;
  }

  .btn {
    padding: 6px 12px;
    font-size: 14px;
  }
  
  .info-box-ten {
  position: relative;
  padding: 15px;
  min-height: 220px; /* or more depending on content */
}

.info-box-ten .bottom-divider {
  position: absolute;
  bottom: 65px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  border-bottom: 1px solid #D9D9D9;
  margin: 0;
}

.info-box-ten .button-area {
  position: absolute;
  bottom: 15px;
  left: 0;
  width: 100%;
  padding: 0 15px;
}

.info-box-ten .button-area .btn {
  flex: 1;
}


  /* For smaller screens */
  @media (max-width: 767px) {
    .team-card-ten {
      height: auto;
    }

    .name {
      font-size: 14px;
    }

    .designation {
      font-size: 12px;
    }

    .btn {
      font-size: 12px;
      padding: 5px 10px;
    }

    .social-links-ten a {
      font-size: 14px;
    }
  }

  /* For larger screens */
  @media (min-width: 768px) {
    .team-card-ten {
      height: 100%;
    }

    .name {
      font-size: 18px;
    }

    .designation {
      font-size: 14px;
    }

    .btn {
      font-size: 14px;
      padding: 8px 16px;
    }

    .social-links-ten a {
      font-size: 18px;
    }
  }