.eww-team-member-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  width: 295px;
  height: 440px;
  box-shadow: 0 4px 10px rgba(29, 26, 26, 0.1);
  overflow: hidden;
  background-color: rgba(252, 252, 252, 1);
  perspective: 1000px;
}

.eww-team-member-main-part {
  position: relative;
  width: 100%;
  height: 304px;
  overflow: hidden;
}

.eww-team-member-front,
.eww-team-member-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.5s ease;
  backface-visibility: hidden;
}

.eww-image-container-front-img,
.eww-image-container-back-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.eww-team-member-front {
  opacity: 1;
  z-index: 2;
}

.eww-team-member-back {
  opacity: 0;
  z-index: 1;
}

.eww-team-member-card:hover .eww-team-member-front {
  opacity: 0;
}

.eww-team-member-card:hover .eww-team-member-back {
  opacity: 1;
}

.eww-back-overlay {
  background-color: rgba(134, 113, 40, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
}

.eww-back-content {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  box-sizing: border-box;
}

.eww-back-text {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

.eww_back_text_1 {
  color: #f7f7f7;
  font-family: "brandon-grotesque", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 72px;
  line-height: 72px;
  line-height: 72px;
}
.eww_back_text_2 {
  color: #f7f7f7;
  text-shadow: 0px 3px 4px rgba(0, 0, 0, 0.8);
  font-family: "brandon-grotesque", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
}

.eww-team-member-bottom-bar {
  width: 100%;
  height: 136px;
  padding-top: 16px;
  padding-bottom: 8px;
  padding-left: 16px;
  padding-right: 16px;
  background-color: rgba(252, 252, 252, 1);
  position: relative;
  z-index: 10;
}
.eww-team-member-bottom-bar-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.crew-eww-social-media-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}
.crew-eww-social-media-icon:hover {
  transform: translateY(-5px) scale(1, 1);
}
.eww-team-member-bottom-bar-content-socialmedia-icons {
  display: flex;
  flex-direction: row;
  gap: 12px;
}

.eww-team-member-bottom-bar-content-text {
  height: 52px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.eww-team-member-name {
  font-family: "Inter", Sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  margin-block-end: 0px;
  color: rgba(134, 113, 40, 1);
}

.eww-team-member-position {
  font-family: "Inter", Sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: rgba(36, 36, 36, 1);
}

.phone-hover-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.tel_number {
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  white-space: nowrap;
  transition: max-width 0.75s ease, opacity 0.75s ease;
  font-size: 14px;
  font-family: "Inter", Sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  color: rgba(134, 113, 40, 1);
}

.phone-hover-wrapper:hover .tel_number {
  max-width: 150px;
  opacity: 1;
}
