/* stylelint-disable */
:root {
  --breakpoint-xxl: 1920px;
  --breakpoint-xl: 1440px;
  --breakpoint-lg: 1280px;
  --breakpoint-md: 1024px;
  --breakpoint-md-d: 1023px;
  --breakpoint-md-s: 992px;
  --breakpoint-sm: 768px;
  --breakpoint-xs: 512px;
  --breakpoint-xxs: 390px;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);

  or object-fit and object-position:
  @include object-fit(cover, top);
*/
.single-person {
  background: #F7F6F9;
}
@media (min-width: 1024px) {
  .single-person {
    background: #FCFCFD;
  }
}

.person-hero {
  padding: clamp(128px, 121.6857142857px + 0.0161904762 * 100vw, 145px) 0 clamp(30px, 22.5714285714px + 0.019047619 * 100vw, 50px);
}
.person-hero__row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) {
  .person-hero__row {
    flex-direction: row;
    gap: 32px;
  }
}
@media (min-width: 1280px) {
  .person-hero__row {
    gap: 60px;
  }
}
.person-hero__col--img {
  margin: 0 auto;
}
@media (min-width: 768px) {
  .person-hero__col--img {
    width: calc(48.5% - 16px);
  }
}
@media (min-width: 1280px) {
  .person-hero__col--img {
    width: calc(48.5% - 30px);
  }
}
@media (min-width: 768px) {
  .person-hero__col--content {
    width: calc(51.5% - 16px);
  }
}
@media (min-width: 1280px) {
  .person-hero__col--content {
    width: calc(51.5% - 30px);
  }
}
.person-hero__img {
  display: block;
  width: 100%;
  aspect-ratio: 327/360;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
@media (min-width: 1024px) {
  .person-hero__img {
    aspect-ratio: 619/689;
  }
}
.person-hero__title {
  margin-bottom: clamp(10px, 9.2571428571px + 0.0019047619 * 100vw, 12px);
}
.person-hero__job-title {
  margin-bottom: 18px;
  padding: clamp(4px, 3.2571428571px + 0.0019047619 * 100vw, 6px) clamp(8px, 6.5142857143px + 0.0038095238 * 100vw, 12px);
  display: inline-block;
  color: var(--sk-color-athens-gray-500);
  font-family: var(--sk-font-secondary), sans-serif;
  font-size: clamp(8px, 5.7714285714px + 0.0057142857 * 100vw, 14px);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  border-radius: 3px;
  border: 0.5px solid var(--sk-color-athens-gray-500);
  background: #F7F6F9;
}
@media (min-width: 768px) {
  .person-hero__job-title {
    letter-spacing: 0.1em;
  }
}
.person-hero__academic-affiliation {
  margin-bottom: clamp(17px, 15.5142857143px + 0.0038095238 * 100vw, 21px);
  color: var(--sk-color-athens-gray-500);
  font-family: var(--sk-font-secondary), sans-serif;
  font-size: clamp(8px, 5.7714285714px + 0.0057142857 * 100vw, 14px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .person-hero__academic-affiliation {
    line-height: 1.3;
    letter-spacing: 0.1em;
  }
}
.person-hero__email {
  margin-bottom: 14px;
  color: #000;
  font-family: var(--sk-font-primary), sans-serif;
  font-size: var(--sk-text-xs);
  font-weight: 400;
  line-height: 1.45;
}
.person-hero__email:last-child {
  margin-bottom: 0;
}
.person-hero__email a {
  color: #000;
}
.person-hero__socials {
  margin-bottom: 20px;
}

.sk-socials-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 6px;
}
.sk-socials-list__item {
  display: flex;
  width: 23px;
  height: 23px;
  border-radius: 2.95px;
  border: 0.738px solid #3D4782;
  background: #E6E9FB;
}
.sk-socials-list__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.sk-socials-list__item svg,
.sk-socials-list__item img {
  display: block;
  width: 50%;
  height: 50%;
  -o-object-fit: contain;
     object-fit: contain;
}
