/* ----- INTRO ----- */
.about .intro {
  display: flex;
  align-items: stretch;
  justify-content: start;
  gap: 2rem;
  padding-bottom: 4rem;
}

.about .intro .text {
  width: 60%;
}

.about .intro .text h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.about .intro .text p {
  line-height: 1.4rem;
  padding-right: 2rem;
}

.about .intro .text .btn {
  width: max-content;
}

.about .intro .img {
  width: 40%;
}

.about .intro .img img {
  width: 100%;
  height: auto;
  min-height: 27rem;
  border-radius: 10px;
  object-fit: cover;
}

.about .mission-vision {
  padding-bottom: 4rem;
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 2rem;
}

.about .mission-vision .mission,
.about .mission-vision .vision {
  width: calc(100% / 2 - 2rem);
}

.about .mission-vision .mission {
  border-right: 1px solid #eee;
  padding-right: 1rem;
}

.about .mission-vision .vision {
  padding-right: 1rem;
}

.about .mission-vision h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.about .mission-vision ul {
  list-style: none;
  margin-top: 10px;
}

.about .mission-vision ul li::before {
  content: "✔";
  color: var(--vibrant-orange);
  margin-right: 10px;
}

.about .team {
  padding-bottom: 3rem;
}

.about .team .section-head {
  max-width: 80%;
  margin-bottom: 3rem;
}

.about .team .section-head h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.about .team .section-head p {
  color: gray;
  line-height: 1.5rem;
}

.about .team .team-cards {
  display: flex;
  align-items: stretch;
  justify-content: start;
  gap: 4rem;
}

.about .team .team-cards .promo,
.about .team .team-cards .others {
  width: 50%;
}

.about .team .team-cards .others {
  border-left: 1px solid #eee;
  padding-left: 2rem;
}

.about .team .team-cards .others h3 {
  margin-bottom: 2rem;
  font-size: 1.6rem;
}

.about .team .team-cards .others .item {
  border-bottom: 1px solid #eee;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 1rem;
}

.about .team .team-cards .others .item .icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background-color: var(--vibrant-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.about .team .team-cards .promo .header {
  display: flex;
  align-items: start;
  justify-content: start;
  flex-direction: row-reverse;
  gap: 1rem;
}

.about .team .team-cards .promo .header img {
  width: 200px;
  height: auto;
  object-fit: cover;
  border: 2px solid var(--vibrant-orange);
}

.about .team .team-cards .promo .promoteur-bio h3 {
  font-size: 1rem;
  margin-bottom: 0.5em;
}

.about .team .team-cards .promo .promoteur-bio p {
  font-weight: 300;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.about .team .team-cards .promo .promoteur-bio ul {
  margin-left: 2rem;
  font-weight: 300;
  font-size: 0.85rem;
}

.about .team .team-cards .promo .header .info .names {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.about .team .team-cards .promo .header .info .founder {
  color: var(--gradient-start);
  margin-bottom: 1rem;
}

.about .team .team-cards .promo .header .info .title {
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.about .team .team-cards .promo .right {
  width: 70%;
}

.about .team .team-cards .others img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

@media only screen and (max-width: 900px) {
  .about {
    padding-top: 2rem;
  }

  /* ----- INTRO ----- */
  .about .intro {
    flex-direction: column;
    padding-bottom: 2rem;
  }

  .about .intro .text {
    width: 100%;
  }

  .about .intro .text h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .about .intro .text p {
    line-height: 1.4rem;
    padding-right: 0;
  }

  .about .intro .img {
    width: 100%;
  }

  .about .intro .img img {
    width: 100%;
    height: auto;
    min-height: 25rem;
    border-radius: 10px;
    object-fit: cover;
  }

  .about .mission-vision {
    padding-bottom: 2rem;
    flex-direction: column;
    gap: 2rem;
  }

  .about .mission-vision .mission,
  .about .mission-vision .vision {
    width: 100%;
  }

  .about .mission-vision .mission {
    border-right: none;
    padding-right: 0;
  }

  .about .mission-vision .vision {
    padding-right: 0;
  }

  .about .mission-vision h2 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
  }

  .about .mission-vision ul li::before {
    content: "✔";
    color: var(--vibrant-orange);
    margin-right: 10px;
  }

  .about .team {
    padding-bottom: 2rem;
    padding-top: 2rem;
  }

  .about .team .section-head {
    max-width: 100%;
    margin-bottom: 1rem;
  }

  .about .team .section-head h2 {
    font-size: 1.8rem;
  }

  .about .team .team-cards {
    flex-direction: column;
    gap: 2rem;
  }

  .about .team .team-cards .promo,
  .about .team .team-cards .others {
    width: 100%;
  }

  .about .team .team-cards .others {
    border-left: none;
    padding-left: 0;
  }

  .about .team .team-cards .others h3 {
    margin-bottom: 2rem;
    font-size: 1.4rem;
  }

  .about .team .team-cards .promo .header {
    width: 100%;
  }

  .about .team .team-cards .promo .header img {
    display: none;
  }

  .about .team .team-cards .promo .promoteur-bio h3 {
    font-size: 1rem;
    margin-bottom: 0.5em;
    margin-top: 1rem;
  }

  .about .team .team-cards .promo .promoteur-bio p {
    font-weight: 300;
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }

  .about .team .team-cards .promo .promoteur-bio ul {
    margin-left: 2rem;
    font-weight: 300;
    font-size: 0.85rem;
  }

  .about .team .team-cards .promo .header .info .names {
    font-size: 1.2rem;
  }
}

@media only screen and (max-width: 560px) {
  .about .intro .text h2 {
    font-size: 1.6rem;
  }

  .about .intro .img img {
    min-height: 20rem;
  }

  .about .mission-vision h2 {
    font-size: 1.4rem;
  }

  .about .mission-vision ul li::before {
    content: "✔";
  }

  .about .team .section-head h2 {
    font-size: 1.6rem;
  }

  .about .team .team-cards .others h3 {
    font-size: 1.2rem;
  }

  .about .team .team-cards .promo .promoteur-bio h3 {
    font-size: 0.9rem;
  }

  .about .team .team-cards .promo .header .info .names {
    font-size: 1.1rem;
  }
}
