.page-wrapper .page-section.page-profile {
    @media(max-width: 889px) {
      padding-bottom: 0;
    }
}

.page-profile .page-contents {
  display: flex;
  flex-direction: column;
  gap: var(--gap-lg, 20px);
}

.page-profile .about-imgs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}

.page-profile .about-imgs .img {
  width: 100%;
  max-width: 190px;
  min-width: 190px;
  height: auto;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  @media (max-width: 889px) {
    width: 100%;
    max-width: 240px;
    margin: 0;
  }
}

@media (min-width: 890px) {
  .page-profile .page-contents {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--gap-lg, 20px);
  }

  .page-profile .table {
    flex: 1;
    max-width: calc(100% - 210px);
  }

  .page-profile .about-imgs {
    flex-shrink: 0;
    width: 190px;
    align-self: flex-start;
    align-items: flex-start;
  }

  .page-profile .about-imgs .img {
    width: 190px;
    height: 190px;
    max-width: 190px;
    max-height: 190px;
  }
}

.page-wrapper .page-section.page-profile .mail-link {
    color: var(--link-color);
}

.page-wrapper .page-section.page-profile .mail-link:hover {
    opacity: 0.7;
}