/* Intro / mission */
.au-intro {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

@media (min-width: 1024px) {
  .au-intro {
    padding-top: 4rem;
    padding-bottom: 5rem;
  }
}

.au-intro__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .au-intro__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(2rem, 4vw, 4rem);
  }
}

.au-intro__content .sh-badge {
  margin-bottom: 1rem;
}

.au-intro h1 {
  font-size: var(--sh-h1);
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 0.75rem;
  color: var(--sh-foreground);
}

.au-intro__tagline {
  font-size: var(--sh-text-xl);
  color: var(--sh-muted);
  margin: 0 0 1.5rem;
  font-weight: 400;
  line-height: 1.4;
}

.au-intro__story .sh-prose {
  margin: 0;
}

.au-intro__story .sh-prose + .sh-prose {
  margin-top: 1.125rem;
}

.au-intro__content .sh-hero__ctas {
  margin-top: 2rem;
  margin-bottom: 0;
}

.au-intro__media img {
  width: 100%;
  border-radius: 1rem;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  box-shadow: 0 24px 48px rgba(5, 25, 45, 0.12);
}

/* Leadership bios */
.au-team {
  padding: 3rem 0 4rem;
  background: #fff;
}

@media (min-width: 1024px) {
  .au-team {
    padding: 4rem 0 5rem;
  }
}

.au-bio-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .au-bio-list {
    gap: 4.5rem;
  }
}

@media (min-width: 1024px) {
  .au-bio-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(2rem, 3vw, 3rem);
    align-items: start;
  }
}

.au-bio {
  display: grid;
  gap: 1.5rem;
  align-items: start;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .au-bio {
    grid-template-columns: minmax(260px, 42%) 1fr;
    gap: clamp(2.5rem, 5vw, 4rem);
    align-items: center;
  }
}

.au-bio__media {
  display: flex;
  justify-content: center;
  width: 100%;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .au-bio__media {
    justify-content: flex-start;
  }
}

.au-bio__photo-wrap {
  position: relative;
  display: inline-block;
  max-width: 100%;
  padding: 0 1.25rem 1.25rem 0;
}

.au-bio__photo-wrap::before {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 88%;
  height: 92%;
  background: linear-gradient(145deg, rgba(76, 134, 199, 0.18), rgba(156, 186, 221, 0.35));
  border-radius: 1.25rem;
  z-index: 0;
}

.au-bio__photo {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, calc(400px * 4 / 5));
  max-width: 100%;
  max-height: 400px;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 1.25rem;
  box-shadow: 0 20px 50px rgba(5, 25, 45, 0.12);
}

.au-bio__content {
  padding-top: 0.25rem;
}

.au-bio__role {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  background: rgba(76, 134, 199, 0.12);
  color: var(--sh-dark-blue);
  font-size: var(--sh-label);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.au-bio__content h2 {
  margin: 0 0 1.25rem;
  font-size: var(--sh-h2);
  font-weight: 500;
  line-height: 1.12;
  color: var(--sh-foreground);
}

@media (min-width: 768px) and (max-width: 1023px) {
  .au-bio__content h2 {
    font-size: calc(var(--sh-h2) * 1.05);
  }
}

@media (min-width: 1024px) {
  .au-bio__content h2 {
    font-size: var(--sh-h3);
  }
}

.au-bio__text {
  margin: 0;
  font-size: var(--sh-text-lg);
  line-height: 1.75;
  color: var(--sh-muted);
  font-weight: 300;
  max-width: 40rem;
}

@media (min-width: 1024px) {
  .au-bio__text {
    max-width: none;
    font-size: var(--sh-text-base);
    line-height: 1.7;
  }
}

.au-bio__links {
  display: flex;
  gap: 0.625rem;
  margin-top: 1.75rem;
}

.au-bio__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid var(--sh-border);
  background: #fff;
  color: var(--sh-muted);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.au-bio__icon:hover {
  color: var(--sh-primary);
  border-color: rgba(76, 134, 199, 0.35);
  background: rgba(76, 134, 199, 0.06);
}

/* Join CTA */
.au-join {
  padding: 4rem 0;
}

.au-join__inner {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
}

.au-join h2 {
  margin: 0 0 1rem;
  font-size: var(--sh-h2);
  font-weight: 500;
  color: #fff;
}

.au-join .sh-cta__lead {
  margin-bottom: 1.75rem;
}
