.st-our-team-module-section-wrapper {
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  position: relative;
}

.st-our-team-module-section-wrapper .st-our-team-module-container {
  max-width: calc(75rem - 1.5rem);
  margin: 0 auto;
}

.st-our-team-module-section-wrapper .st-our-team-module-container .st-our-team-module-content-wrap {
  position: relative; 
  width: 100%; 
  min-height: 300px;
}

.st-our-team-module-content-wrap .st-our-team-list-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  grid-gap: 18px;
}
@media (min-width: 768px) {
  .st-our-team-module-content-wrap .st-our-team-list-wrap {
    grid-template-columns: repeat(4, 1fr);
  }
}
.st-our-team-single-member .st-our-team-single-member-photo {
  /* Adjust the size of the photo container */
  min-height: 300px; /* Decreased height to fit three photos in a row */
  width: 100%; /* Added to ensure the photo occupies the full width */
}

.st-our-team-single-member .st-our-team-single-member-info h6 {
  max-width: none; /* Allow the name to occupy the full width */
  margin-top: 40px;
}

.st-our-team-module-content-wrap .st-our-team-eyebrow-heading-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
}

.st-our-team-module-content-wrap .st-our-team-eyebrow-heading-wrap p {
  margin: 0;
  padding: 0px 30px 0px 30px;
  position: relative;
  color: #1A6AFF;
  width: auto;
  text-transform: uppercase;
  font-size: 18px;
  font-family: 'Red Hat Text', sans-serif;
  line-height: 24px;
  font-weight: 600 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.st-our-team-module-content-wrap .st-our-team-eyebrow-heading-wrap p:before, 
.st-our-team-module-content-wrap .st-our-team-eyebrow-heading-wrap p:after {
  content: "";
  position: absolute;
  height: 2px;
  width: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #333333;
}

.st-our-team-module-content-wrap .st-our-team-eyebrow-heading-wrap p:before {
  left: 0;
}

.st-our-team-module-content-wrap .st-our-team-eyebrow-heading-wrap p:after {
  right: 0;
}

.st-our-team-module-content-wrap .st-our-team-section-heading-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  margin-bottom: 60px;
}

.st-our-team-module-content-wrap .st-our-team-section-heading-wrap h2 {
  margin: 0;
  padding: 0;
  color: #333333;
}

.st-our-team-module-content-wrap .st-our-team-view-all-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; 
  min-height: 40px;
  margin-top: 60px;
  transition: all .2s linear;
}

.st-our-team-module-content-wrap .st-our-team-view-all-wrap .button--primary:hover {
  color: #333333;
}

.st-our-team-module-content-wrap .st-our-team-single-member {
  position: relative;
}

.st-our-team-module-content-wrap .st-our-team-single-member.show-default {
  display: inline-block;
  opacity: 1;
}

.st-our-team-module-content-wrap .st-our-team-single-member.hide-default {
  display: none;
  opacity: 0;
}

.st-our-team-single-member .st-our-team-single-member-photo {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%; 
  position: relative;
  border: 1px solid #333333;
  background-size: 150%;
  background-position: 50% 50%; 
  background-repeat: no-repeat;
  overflow: hidden;
  box-shadow: 0px 9px 17px 3px rgba(0,0,0,0.16);
  -webkit-box-shadow: 0px 9px 17px 3px rgba(0,0,0,0.16);
  -moz-box-shadow: 0px 9px 17px 3px rgba(0,0,0,0.16);
}

.st-our-team-single-member .st-our-team-single-member-photo:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%; 
  top: 0; 
  left: 0;
  z-index: 1;
  background-color: black;
  opacity: 0.15;
}

.st-our-team-single-member-photo .st-our-team-single-member-socials {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%; 
  position: relative;
  padding: 25px 25px;
  z-index: 2;
}

.st-our-team-single-member-photo .st-our-team-single-member-socials a {
  width: 35px;
  height: 35px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5.1px);
  -webkit-backdrop-filter: blur(5.1px);
  transition: all .2s linear;
}

.st-our-team-single-member-photo .st-our-team-single-member-socials a i {
  color: #ffffff;
  font-size: 20px;
  transition: all .2s linear;
}

.st-our-team-single
