/* =========================
TEAM BLOCK
========================= */

.team_block {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 100px;
  font-size: 16px;
}

.team_block.reverse {
  flex-direction: row-reverse;
}

.team_image {
  width: 30%;

  display: flex;
  align-items: center;
  justify-content: center;
}

.team_image img {
  width: 100%;
  max-width: 420px;

  border-radius: 12px;
  display: block;
}

.team_content {
  width: 60%;
  text-align: left;
}

.team_text p {
  margin-bottom: 20px;
  text-align: justify;
}

.quote {
  margin-top: 30px;
  padding: 20px;
  border-left: 4px solid #c8a97e;
  background: #f8f8f8;
  color: brown;
  font-style: italic;
}

/* =========================
MOBILE
========================= */

@media (max-width: 991px) {
  .team_block,
  .team_block.reverse {
    flex-direction: column;
  }

  .team_image,
  .team_content {
    width: 100%;
  }
}
