.staff-card-container {
  border: var(--not-so-light-grey) solid 1px;
  border-radius: 10px;
  display: flex;
  /* flex-direction: row; */
  width: 35%;
  height: 125px;
  /* flex-wrap: wrap; */
  /* height: 150px; */
  /* min-height: 150px; */
  /* max-width: 400px; */
  min-width: 360px;
  /* background-color: red; */
  padding: 15px;
  gap: 25px;
  background-color: white;
}

.image-wrapper {
  height: 100%;
  min-width: 100px;
  aspect-ratio: 1;
}

.image-cover {
  /* border: green solid 2px; */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  height: 100%;
}

.staff-card-container .image-wrapper {
  display: flex;
  max-width: 125px;
  /* padding-right: 5px; */
  aspect-ratio: 1;
  overflow: hidden;
  justify-content: center;
  border-radius: 10px;
  /* height: 100%; */
}

.staff-card-container .staff-details {
  display: flex;
  flex-direction: column;
  padding-left: 20px;
  justify-content: center;

  /* gap: 5px; */
}

.staff-card-container .staff-details .name {
  font-size: 18px;
  font-weight: bolder;
  margin-bottom: 5px;
}

.staff-card-container .staff-details .email,
.staff-card-container .staff-details .phno {
  display: flex;
  flex-direction: row;
  font-size: 14px;
  gap: 10px;
  margin-bottom: 5px;
  /* margin-top: -5px; */
  /* align-items: center; */
  /* justify-content: center; */
}

.staff-card-container .staff-details .designation {
  color: var(--secondary-color);
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: 500;
}

.staff-details .work {
  font-size: 12px;
  color: #4d4d4d;
}

.icon,
.text {
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon {
  /* border: black solid 2px; */
  aspect-ratio: 1;
  width: 25px;
}



.office-staff-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: var(--body-color);
}

.office-staff-container>.section-title {
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  /* margin: 0; */
  width: 100%;
  margin-bottom: 30px;
  /* border: red solid 2px; */
}

.office-staff-container .title:first-child {
  margin-top: 30px;
}

.office-staff-container .staff-card-wrapper {
  display: flex;
  /* justify-content: center; */
  /* align-items: center; */
  /* border: black solid 2px; */
  /* height: 500px; */
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 25px;
  padding: 0% 10%;
  margin-bottom: 30px;
}

@media only screen and (max-width: 500px) {
  .staff-card-container {
    min-width: 300px;
    padding: 0;
    gap: 0;
  }
  .office-staff-container .staff-card-wrapper {
    padding: 0% 5%;
  }
  .staff-card-container .staff-details {
   
    padding-left: 0px;
    justify-content: center;
  }
  .staff-card-container .image-wrapper {
    max-width: 100px;
  }
}