/*===========================================*/
/*== ==FOLD 1 - Header Styling - Desktop== ==*/
/*===========================================*/

.team-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 10px;
    align-items: center;
    justify-content: center;
}

.team-filter a {
    background: white;
    color: var(--pink);
    flex: 0 0 calc(100% / 5);
    margin: 0;
    cursor: pointer;
}

.fold-1-header {
  position: relative;
  background: rgb(175, 9, 49);
  background: linear-gradient(
    118deg,
    rgb(180, 10, 49) 0%,
    rgb(128, 4, 33) 87%,
    rgb(94, 1, 23) 100%
  );
  padding: 25px 0;
  z-index: 1;
}

.fold-1-header::before {
  content: "";
  background: url(/wp-content/uploads/2023/02/texture-light.png);
  position: absolute;
  background-repeat: no-repeat;
  background-position: right;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.fold-1-header .banner {
  text-align: center;
  z-index: 3;
}

.fold-1-header .title {
  font-size: 42px;
  color: var(--text-light);
  margin: 0;
  padding: 0;
  z-index: 5;
}
/*===========================================*/
/*== ==FOLD 2 - Header Styling - Desktop== ==*/
/*===========================================*/
.fold-2 {
  position: relative;
}

.team-list {
  list-style: none;
  padding: 0;
}

.team-member-item.even {
  background: whitesmoke;
}

.team-member-item.even .row-container {
  flex-direction: row-reverse;
}

.team-member-item .row-container {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-end;
}

.team-member-left {
  width: 50%;
  padding: 50px 0;
}

.team-member-right {
  width: 400px;
  overflow: hidden;
  align-items: flex-end;
}

.team-member-right img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.job-title {
  color: var(--text-red);
  font-weight: 500;
}
