.team-wrapper {
  padding: 60px 0;
  background-image: url(../img/bg-team.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--dark-grey);
}

.team-wrapper.odd {
  background-color: #e1dfdf;
}

.team-wrapper.even {
  background-color: #c8c8c8;
}

.team-grid-3 {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  flex-direction: row;
}

.team-image img {
  width: 100%;
  height: auto;
}

.team-title {
  margin: 0;
  font-style: italic;
}

.team-position {
  margin-bottom: 15px;
  text-transform: uppercase;
}

.team-beschreibung :is(h1, h2, h3, h4, h5, h6) {
  color: var(--blue);
}

.col-1 {
  width: 25%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.team-kontaktinfo {
  font-size: 14px;
  line-height: 1.3em;
}

.team-email {
  display: flex;
}

.team-email a {
  background-color: var(--blue);
  color: var(--white);
  width: 100%;
  padding: 10px 10px;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 2px;
}

.col-2 {
  width: 35%;
}

.col-3 {
  width: 45%;
}

.team-col .team-image img {
  border-radius: 0 !important;
}
.team-col .team-image {
  position: relative;
  max-width: none;
}
.team-col .team-image::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 50%;
  background-color: #e5077e;
  left: 0;
  top: 0;
}

@media (max-width: 992px) {
  .team-col {
    width: 100%;
  }
  .team-grid-3 {
    flex-direction: column;
  }
}
