@charset "UTF-8";
h3 {
  font-size: clamp(22px, 5vw, 28px);
}

.advocates {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}

.advocates > li {
  display: grid;
  grid-template-columns: clamp(100px, 20%, 200px) 1fr;
  gap: calc(20px + 1.2ch);
  margin-top: 40px;
}

.advocates > li:first-of-type {
  margin-top: 0px;
}

.advocates img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
}

.advocates .text .name {
  padding-top: 0px;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25em;
}

.advocates .text .title {
  margin-top: 0.15em;
  font-size: 15px;
  line-height: 1.25em;
  text-transform: uppercase;
}

.advocates .text .languages {
  margin: 1em 0px 0px 0px;
}

.advocates .text .quotation {
  margin: 1em 0px 0px 0px;
}

.advocates .text .quotation::before {
  content: "“";
  display: inline-block;
  width: 0.5ch;
  margin-left: -1.2ch;
}

.advocates .text .quotation::after {
  content: "”";
}

@media only screen and (max-width: 512px) {
  .advocates > li {
    grid-template-columns: 1fr;
    gap: calc(20px + 1.2ch);
    margin-top: 40px;
  }
  .advocates > li,
  .advocates > li:first-of-type {
    margin-top: 60px;
  }
  .advocates img {
    margin-left: auto;
    margin-right: auto;
    width: 200px;
    max-width: 80%;
  }
}
