.page-profile .page-header h1 {
  font-size: 50px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.page-profile h2 {
  margin-bottom: 16px;
  display: flex;
  column-gap: 12px;
  align-items: baseline;
  border-bottom: 1px solid #000;
  padding-bottom: 8px;
}

.page-profile .about-area {
  /* padding: 0 4em; */
}

.page-profile .about-area .page-content {
  /* max-width: 768px; */
  margin: 0 auto;
  display: flex;
  column-gap: 24px;
}

.page-profile .profile-left {
  max-width: 460px;
}

.page-profile .profile-right {
  width: 100%;
}

.profile-info ul {
  margin-bottom: 40px;
}

.profile-info ul li {
  padding: 8px 0;
  /* border-bottom: 1px solid #929292; */
  column-gap: 8px;
  display: flex;
}

.profile-info ul li span {
  display: block;
  padding: 0;
}

.history ul {
  margin-bottom: 24px;
}

.history ul li {
  display: flex;
  column-gap: 12px;
  align-items: flex-start;
  /* border-bottom: 1px solid #929292; */
  padding: 8px 0;
  text-align: left;
}

.history ul li span {
  display: inline-block;
  padding: 0;
}


@media screen and (max-width: 767px) {

  .page-profile {
    width: 100%;
  }

  .page-profile .page-header h1 {
    font-size: 30px;
  }

  .page-profile .profile-left {
    max-width: 100%;
  }

  .page-profile .about-area .page-content {
    flex-direction: column;
    row-gap: 24px;
  }

  .page-content ul li a {
    flex-direction: column;
  }

  .page-profile h2 {
    font-size: 24px;
    flex-direction: column;
  }

  .history ul li span,
  .profile-info ul li span {
    padding: 0;
  }

  .history ul li span:first-child {
    width: 12%;
    text-align: left;
  }

  .history ul li span:nth-child(2) {
    width: 88%;
    text-align: left;
  }
}