.person-header {
  background-color: #000;
  position: relative;
  padding: 2rem 0rem;
  margin-bottom: 2rem;

  > div {
    position: relative;
    z-index: 2;
  }

  &:after {
    top: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    content: "";
    background-color: #000;
    height: 100%;
    z-index: -1;
  }

  /* main image */
  .container-image {
    margin-bottom: 1rem;
    img {
      width: 200px;
      height: auto;
    }
  }

  .info-container {
    gap: 0;
    max-width: none;
  }

  /* role */
  .container-role {
    color: #a3c3ff;
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .person-full-name {
    margin-bottom: 1rem;
  }

  /*short bio */
  .container-short-bio  {
    color: #fff;
    font-size: 0.875rem;
    font-weight: 400;
    margin-bottom: 1rem;
  }

  /* contact container */
  .contac-container {
    margin-top: 1rem;
    padding: 0.5rem 1.4rem;
    background-color: #181818;
    * {
      font-weight: 400;
      color: #fff;
    }

    > div {
      margin: 1rem 0;
    }

    a {
      text-decoration: underline;
      display: block;
      transition: 0.2s ease;
      &:hover {
        color: #a3c3ff;
      }
    }
  }
}

@media (min-width: 992px) {
  .person-header {
    padding: 4rem 0rem 2rem 0rem;
    display: grid;
    grid-template-columns: auto 300px;
    gap: 50px;

    /* role */
    .container-role {
      margin-bottom: 0rem;
    }

    .contac-container {
      margin-top: 0;
      padding: 1rem;
      text-align: right;
    }
  }
}

@media (min-width: 1200px) {
  .person-header {
    gap: 80px;
    margin-bottom: 3rem;
    padding: 5rem 0rem 3rem;
    .person-full-name {
      margin-bottom: 0.6rem;
    }
  }

  .person-header:before {
    content: "";
    width: 100vw;
    height: 100%;
    position: absolute;
    pointer-events: none;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-image: url(../../../../../pt_custom/images/decoration/decoration-logo-mcs-bg-page-title.svg);
    background-size: auto 140%;
    background-repeat: no-repeat;
    background-position: top right;
    aspect-ratio: 0.9;
    z-index: 0;
  }

  .person-header > div:first-child {
    display: grid;
    grid-template-columns: 200px minmax(0, 1fr);
    column-gap: 32px;
    align-items: start;
  }

  .person-header > div:first-child .container-image {
    grid-column: 1;
    grid-row: 1 / span 3;
  }

  .person-header > div:first-child .info-container {
    grid-column: 2 / span 1;
    max-width: none;
    gap: 0;
    width: 100%;
  }
}

.person-header {
  .container-short-bio * {
    font-size: 1rem;
  }
}

/* social  */
.social-container {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  .paragraph {
    font-size: 0;
    position: relative;
    width: 30px;
    height: 30px;
    a {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      transition: 0.2s ease;
      display: block;
      background-color: rgb(255, 255, 255);
      z-index: 8;
      &:hover {
        opacity: 0.8;
      }
    }
  }

  .paragraph:after {
    pointer-events: none;
    position: absolute;
    content: "";
    top: 50%;
    background-repeat: no-repeat;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-position: center;
    background-size: contain;
    z-index: 9;
  }

  .Instagram:after {
    background-image: url(../../../../../pt_base/images/icons/facebook.svg);
  }
  .Youtube:after {
    background-image: url(../../../../../pt_base/images/icons/youtube.svg);
  }
  .X:after {
    background-image: url(../../../../../pt_base/images/icons/x.svg);
  }
  .Linkedin:after {
    background-image: url(../../../../../pt_base/images/icons/linkedin.svg);
  }
  .Facebook:after {
    background-image: url(../../../../../pt_base/images/icons/facebook.svg);
  }
}
