.section-1 {
  height: 70vh;
  background: url(../assets/backgrounds/bg-about-1.svg);
  background-size: cover;
  text-align: center;
  color: var(--col-text-heading);

  & h2 {
    padding: 0 2rem;
  }
}

.gradient-layer {
  background: linear-gradient(to bottom, transparent, rgba(254, 250, 246, 0.6));
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section-2 {
  display: flex;
  align-items: center;
  padding: 2rem;
  min-height: 70vh;
}

.section-2 .col-2 {
  min-width: 30%;
  height: 50vh;
  background-image: url(../assets/svg/logo.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

@media (width < 600px) {
  .section-2 .col-2 {
    display: none;
  }
}

.section-3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.team-grid {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 2rem;
}

.team-grid > * {
  flex: 1 1 250px;
}

.team-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.team-img {
  width: max(10vw, 100px);
  height: max(10vw, 100px);
  outline: 2px solid var(--col-accent-pink);
  outline-offset: 5px;
  border-radius: 50%;
}

.team-details {
  text-align: center;
  word-wrap: break-word;
  font-size: 1.2rem;
  line-height: 1.5rem;
  padding-bottom: 1rem;
}

.team-role {
  font-size: 1rem;
  color: #777777;
}
