body > header {
  text-align: center;
}

@media (min-width: 661px) {
  main > section > div {
    grid-row: 1;
  }
  main > section:nth-of-type(even) > div {
    grid-column: 2;
  }
  main > section:nth-of-type(even) > figure {
    justify-self: end;
    grid-column: 1;
  }
  main > section:nth-of-type(odd) > div {
    grid-column: 1;
  }
  main > section:nth-of-type(odd) > figure {
    justify-self: start;
    grid-column: 2;
  }
}
main > section > div {
  display: grid;
  grid-gap: var(--gutter1);
  align-content: flex-start;
}
main > section > div .heading {
  max-width: 400px;
}
main > section figure {
  grid-row: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
}
main > section figure svg {
  width: 100%;
  max-width: min(40vw, 400px);
  max-height: min(50vw, 400px);
}
main > section figure svg.elderly-man-using-a-zimmer-frame-with-a-carer-carrying-his-grocery-shopping {
  max-width: 280px;
}
main > section figure::before {
  content: "";
  position: absolute;
  width: 100%;
  top: 10%;
  left: 0%;
  aspect-ratio: 1;
  background: linear-gradient(180deg, rgba(23, 109, 125, 0.08) 0%, rgba(255, 255, 255, 0) 50%);
  border-radius: 50%;
  z-index: -1;
}
main > section.grid\:fluid {
  --grid-gutter: var(--gutter2);
}
@media (max-width: 960px) {
  main > section.grid\:fluid {
    grid-template-columns: 1fr 1fr;
  }
  main {
    overflow: hidden;
  }
  main > section.grid\:fluid > figure::before {
    width: 120%;
    top: 0%;
    left: -10%;
  }
}
@media (max-width: 660px) {
  main > section.grid\:fluid {
    grid-template-columns: 1fr;
  }
}

#our-people {
  position: relative;
  margin-top: 100px;
}
#our-people::after {
  content: "";
  clip-path: ellipse(55% 50% at 50% 100%);
  position: absolute;
  background: linear-gradient(var(--gradient-angle, 270deg), #ff2871 var(--gradient-offset, 33%), #ff715c);
  bottom: 100%;
  height: var(--spacer1);
  width: 100%;
  left: 0;
  z-index: -1;
  display: block;
}
#our-people.grid\:fluid {
  --grid-gutter: var(--gutter2);
  --grid-spacer: var(--gutter2);
}
#our-people .heading {
  font-size: 3.125em;
  line-height: 1.2;
  font-weight: 700;
  margin-top: var(--spacer0-);
  grid-column: 1/-1;
  text-align: center;
}
#our-people .subheading {
  font-size: 1.5625em;
  line-height: 1.4;
  grid-column: 1/-1;
  text-align: center;
  margin-top: var(--gutter1-);
}
#our-people .content {
  display: grid;
  grid-gap: var(--gutter0);
  align-content: start;
}
#our-people .profiles {
  display: grid;
  display: flex;
  justify-content: center;
  grid-gap: var(--gutter2);
}
#our-people .profiles figure {
  display: flex;
  flex-direction: column;
  font-style: normal;
  --avatar-size: 150px;
}
#our-people .profiles figure img {
  --aspect-ratio: 1/1;
  aspect-ratio: var(--aspect-ratio);
}
@supports not (aspect-ratio: 1/1) {
  #our-people .profiles figure img {
    aspect-ratio: initial;
  }
  #our-people .profiles figure img::before {
    content: "";
    float: left;
    height: 0;
    padding-top: calc(1 / 1 * 100%);
  }
}
#our-people .profiles figure img {
  display: block;
  position: relative;
  background-position: var(--position, center 33%);
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}
#our-people .profiles figure img img {
  display: block;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: var(--image-position, center 33.33%);
     object-position: var(--image-position, center 33.33%);
  width: var(--image-size, var(--image-width-size, 100%));
  height: var(--image-size, var(--image-height-size, 100%));
  max-width: var(--image-size, var(--image-width-size, 100%));
  max-height: var(--image-size, var(--image-height-size, 100%));
  inset: 0px;
}
@supports not (inset: 0px) {
  #our-people .profiles figure img img {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}
#our-people .profiles figure img {
  border-radius: 50%;
  overflow: hidden;
  max-width: var(--avatar-size);
  width: 100%;
  margin-bottom: var(--gutter0);
}
#our-people .profiles figure img[src*=".svg"] {
  background-color: white;
}
#our-people .profiles figure .user-initials {
  font-size: 3em;
}
#our-people .profiles figure figcaption {
  font-style: normal;
  display: flex;
  flex-direction: column;
  font-weight: 700;
  font-size: 1.7em;
}
#our-people .profiles figure figcaption span {
  font-size: 1.6rem;
  font-weight: 400;
}
@media (max-width: 480px) {
  #our-people .profiles {
    flex-direction: column;
  }
  #our-people .profiles figure {
    flex-direction: row;
    --avatar-size: 60px;
  }
  #our-people .profiles figure img {
    margin-right: var(--gutter1);
    max-height: var(--avatar-size);
  }
  #our-people .profiles figure .user-initials {
    margin-right: var(--gutter1);
    font-size: 1em;
  }
  #our-people .profiles figure figcaption {
    font-size: 1.3em;
  }
}
/*# sourceMappingURL=../sourcemaps/pages/about.css.map */