.ps-profile {
  max-width: 1120px;
  margin: 0 auto;
  padding: 48px 24px 72px;
  color: oklch(96% .008 290);
  font-family: Manrope, sans-serif;
}

.ps-profile section {
  margin-top: 42px;
}

.ps-profile h2 {
  margin: 0 0 18px;
  font-size: 23px;
}

.ps-profile__hero {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 28px;
  border: 1px solid oklch(28% .02 290);
  border-radius: 20px;
  background: radial-gradient(circle at 0 0, oklch(40% .12 290 / .3), transparent 45%), oklch(19% .018 290);
}

.ps-profile__avatar {
  width: 132px;
  height: 132px;
  flex: 0 0 auto;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: oklch(35% .12 290);
  font-size: 44px;
  font-weight: 800;
}

.ps-profile__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ps-profile__intro h1 {
  margin: 0 0 7px;
  font-size: clamp(30px, 6vw, 44px);
}

.ps-profile__intro p {
  margin: 0;
  color: oklch(76% .02 290);
}

.ps-profile__eyebrow {
  color: oklch(78% .15 145) !important;
  font-size: 13px;
  font-weight: 800;
}

.ps-profile__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.ps-profile__socials a,
.ps-profile__more {
  color: white;
  background: oklch(55% .18 300);
  padding: 7px 12px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
}

.ps-profile__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.ps-profile__stats div,
.ps-profile aside,
.ps-profile__vods a {
  padding: 17px;
  border: 1px solid oklch(28% .02 290);
  border-radius: 14px;
  background: oklch(19% .018 290);
}

.ps-profile__stats b {
  display: block;
  font: 800 22px 'JetBrains Mono', monospace;
}

.ps-profile__stats span,
.ps-profile__vods small {
  color: oklch(70% .02 290);
  font-size: 13px;
}

.ps-profile__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
}

.ps-profile__text {
  color: oklch(80% .02 290);
  line-height: 1.7;
}

.ps-profile dl {
  margin: 0;
}

.ps-profile dl div {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px solid oklch(28% .02 290);
}

.ps-profile dt {
  color: oklch(65% .02 290);
}

.ps-profile dd {
  margin: 0;
  font-weight: 700;
}

.ps-profile__gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.ps-profile__gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
}

.ps-profile__timeline,
.ps-profile__facts {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ps-profile__timeline li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  padding: 15px;
  border-left: 3px solid oklch(62% .19 300);
  background: oklch(19% .018 290);
}

.ps-profile__timeline b {
  color: oklch(78% .15 300);
}

.ps-profile__facts li {
  padding: 14px 16px;
  border-radius: 10px;
  background: oklch(22% .02 290);
}

.ps-profile__facts li::before {
  content: '✦';
  color: oklch(78% .15 85);
  margin-right: 10px;
}

.ps-profile__vods {
  display: grid;
  gap: 10px;
}

.ps-profile__vods a {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 16px;
  align-items: center;
  color: oklch(94% .01 290);
  text-decoration: none;
}

.ps-profile__vods a:hover {
  border-color: oklch(60% .12 300);
}

.ps-profile__faq details {
  padding: 16px 0;
  border-top: 1px solid oklch(28% .02 290);
}

.ps-profile__faq summary {
  cursor: pointer;
  font-weight: 800;
}

.ps-profile__faq p {
  color: oklch(75% .02 290);
  line-height: 1.6;
}

@media (max-width: 700px) {
  .ps-profile {
    padding: 28px 16px 56px;
  }

  .ps-profile__hero {
    align-items: flex-start;
    flex-direction: column;
  }

  .ps-profile__avatar {
    width: 92px;
    height: 92px;
  }

  .ps-profile__stats,
  .ps-profile__grid {
    grid-template-columns: 1fr 1fr;
  }

  .ps-profile__grid>div {
    grid-column: 1 / -1;
  }

  .ps-profile__vods a {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}