/* Hand Coded With Love by We Unfuck */
/* ============================================================
   About page
   ============================================================ */
.abt-hero-title { max-width: 900px; margin-top: 16px; }
.abt-hero-sub { max-width: 760px; font-style: normal; font-size: 22px; line-height: 22px; }
.hero--proof .svc-hero__eyebrow { margin-bottom: 0; }
/* About hero uses the Lion3 image (different from the dark-page lion) */
.hero.hero--about::before {
  display: block;
  background-image: url("/assets/img/Lion3.webp");
  background-size: 380px auto;
  background-position: 100% 100%;
  background-repeat: no-repeat;
}

/* Since 2001: photo left, text right */
.abt-since {
  display: flex;
  gap: 34px;
  padding: 0;
}
.abt-since__photo { flex: 0 0 569px; width: 569px; height: auto; align-self: flex-start; }
.abt-since__text { flex: 1; padding: 32px 32px 32px 0; }
.abt-since__text p {
  font-size: 18px;
  font-weight: 400;
  line-height: 23.4px;
  letter-spacing: -0.2px;
  color: var(--c-text);
  margin: 0 0 27px;
}
.abt-since__text p:last-child { margin-bottom: 0; }

/* Team members */
.abt-team { padding: 0 0 64px; }
.abt-member {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-bottom: 18px;
}
.abt-member:last-child { margin-bottom: 0; }
.abt-member__photo { flex: 0 0 398px; width: 398px; height: auto; align-self: flex-start; }
.abt-member__info { flex: 1; padding: 0 32px 0 0; }
.abt-member__name {
  font-family: var(--f-display);
  font-size: 25px;
  font-weight: 900;
  line-height: 1.2em;
  color: var(--c-text);
  margin: 0 0 6px;
}
.abt-member__role {
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 600;
  line-height: 1em;
  letter-spacing: normal;
  color: var(--c-secondary);
  margin: 0 0 16px;
}
.abt-member__rule { border: 0; border-top: 1px solid; border-image: linear-gradient(to right, #a9bbce, #ffffff) 1; margin: 0 0 24px; }
.abt-member__bio p {
  font-size: 18px;
  font-weight: 400;
  line-height: 23.4px;
  letter-spacing: -0.2px;
  color: var(--c-text);
  margin: 0 0 27px;
}
.abt-member__bio p:last-child { margin-bottom: 0; }
.abt-member__social { display: flex; gap: 12px; margin-top: 24px; }
.abt-member__social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--c-text); color: #fff;
  transition: background .3s;
}
.abt-member__social a:hover { background: var(--c-primary); color: #fff; }

@media (max-width: 1024px) {
  .abt-since { flex-direction: column-reverse; padding: 0 0 32px; }
  .abt-since__photo { flex: none; width: 100%; }
  .abt-since__text { padding: 32px; }
  .abt-team { padding: 0 0 32px; }
  .abt-member { flex-direction: column; align-items: stretch; margin-bottom: 56px; }
  .abt-member:last-child { margin-bottom: 0; }
  .abt-member__photo { flex: none; width: 100%; }
  .abt-member__info { padding: 0 32px; }
}
@media (max-width: 767px) {
  .abt-since { flex-direction: column; padding: 0 0 32px; }
  .abt-since__text { padding: 32px 16px; }
  .abt-team { padding: 0 0 32px; }
  .abt-member { margin-bottom: 87px; }
  .abt-member__photo { width: 100%; }
  .abt-member__info { padding: 0 16px; }
}
