/* a-people
======================================= */
.a-people__categories {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1em;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-bottom: 3.75em;
}
@media (max-width: 768px) {
  .a-people__categories {
    margin-bottom: 2em;
  }
}
.a-people__category {
  font-size: 0.75em;
  line-height: 2;
  color: #fff;
  border-radius: 5px;
  padding: 0 1rem;
  background-color: #BEBEBE;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.a-people__category.is-active {
  background-color: #204DA4;
}
.a-people__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.75em 1.25em;
}
@media (max-width: 768px) {
  .a-people__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5em;
  }
}
.a-people__btn.is-hidden {
  display: none;
}
.a-people__btn {
  width: 160px;
  height: 46px;
  line-height: 44px;
  text-align: center;
  color: #204DA4;
  background-color: #fff;
  border: 1px solid #204DA4;
  border-radius: 50px;
  margin: 3.75em auto 0;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.a-people__btn::after {
  content: "";
  display: block;
  width: 0.875em;
  height: 0.875em;
  background: url(../img/common/icon_arrow-blue.svg) no-repeat center center/contain;
  position: absolute;
  right: 1em;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.a-people__btn:hover {
  background-color: #204DA4;
  color: #fff;
}
.a-people__btn:hover::after {
  background: url(../img/common/icon_arrow-white.svg) no-repeat center center/contain;
}

body.people-modal-is-open {
  overflow: hidden;
}

/* people detail modal
======================================= */
.people-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.people-modal[hidden] {
  display: none;
}
.people-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  cursor: pointer;
}
.people-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 400px;
  max-height: min(90vh, 52rem);
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.15);
          box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.15);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}
.people-modal__scroll {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.people-modal__scroll {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.people-modal__footer {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  text-align: center;
  background-color: #fff;
  padding-bottom: 1.25em;
}
.people-modal__close-btn {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100px;
  height: 28px;
  padding: 0 1.5rem;
  font-size: inherit;
  font-family: inherit;
  line-height: 1;
  color: #204DA4;
  background-color: #fff;
  border: 1px solid #E8E8E8;
  border-radius: 14px;
  cursor: pointer;
  position: relative;
  -webkit-transition: color 0.3s ease, background-color 0.3s ease;
  transition: color 0.3s ease, background-color 0.3s ease;
}
.people-modal__close-btn::after {
  content: "";
  display: block;
  width: 8.3px;
  height: 1px;
  background-color: #204DA4;
  position: absolute;
  right: 0.5em;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.people-modal__close-btn:hover {
  background-color: #204DA4;
  color: #fff;
}
.people-modal__close-btn:hover::after {
  background-color: #fff;
}
.people-modal__loading, .people-modal__error {
  margin: 0;
  text-align: center;
  padding: 2rem 1rem;
  color: #3C3C3C;
}
.people-modal__article {
  margin: 0;
}
.people-modal__image {
  margin-bottom: 1.25em;
  overflow: hidden;
}
.people-modal__image img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
  aspect-ratio: 400/254;
}
.people-modal__body {
  padding: 2em 2.5em 1.25em;
}
.people-modal__title {
  font-size: 2em;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 0.5em;
}
.people-modal__cats {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.625em;
  margin: 0 0 1.25em;
  padding: 0;
  list-style: none;
}
.people-modal__cat {
  color: #204DA4;
}
.people-modal__content {
  line-height: 1.5;
  color: #3C3C3C;
}
.people-modal__content > *:first-child {
  margin-top: 0;
}
.people-modal__content > *:last-child {
  margin-bottom: 0;
}
.people-modal__content p {
  margin: 0 0 1em;
}
.people-modal__content a {
  color: #204DA4;
  text-decoration: underline;
}
.people-modal__content img {
  max-width: 100%;
  height: auto;
}