.about-page-content {
  max-width: 1120px;
  padding-top: 120px;
  padding-bottom: 80px;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(250px, 320px) minmax(0, 1fr);
  gap: clamp(32px, 4vw, 68px);
  align-items: start;
}

.about-sidebar {
  position: sticky;
  top: 108px;
}

.about-profile-stack {
  display: grid;
  gap: 18px;
}

.profile-card {
  padding: 14px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.1);
}

.profile-frame {
  aspect-ratio: 5 / 6;
  overflow: hidden;
  border-radius: 20px;
  background: #dbe5f1;
}

.profile-frame picture,
.profile-frame img {
  width: 100%;
  height: 100%;
  display: block;
}

.about-image {
  object-fit: cover;
  object-position: center 10%;
}

.about-body {
  min-width: 0;
  padding-top: 10px;
}

.about-title {
  margin: 0 0 32px;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.14;
  color: #0f172a;
  letter-spacing: -2px;
  word-break: keep-all;
}

.about-role-card {
  padding: 22px 24px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
}

.about-role-card--mobile {
  display: none;
  margin-bottom: 28px;
}

.about-role-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-role-list li {
  position: relative;
  padding-left: 18px;
  color: #334155;
  font-size: 16px;
  line-height: 1.7;
  word-break: keep-all;
}

.about-role-list li::before {
  content: "*";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
  font-weight: 800;
}

.about-sections {
  display: grid;
  gap: 28px;
}

.about-section {
  padding: 28px 30px 32px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
}

.about-section-heading {
  margin: 0 0 16px;
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 900;
  line-height: 1.35;
  color: #0f172a;
  letter-spacing: -0.8px;
  word-break: keep-all;
}

.about-section-copy {
  display: grid;
  gap: 12px;
}

.about-section-copy p {
  margin: 0;
  font-size: 18px;
  color: #334155;
  line-height: 1.9;
  word-break: keep-all;
}

@media (max-width: 960px) {
  .about-page-content {
    padding-top: 110px;
  }

  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-sidebar {
    position: static;
    max-width: 340px;
    width: 100%;
    margin: 0 auto;
  }

  .about-profile-stack {
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .about-page-content {
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .profile-card {
    padding: 12px;
    border-radius: 24px;
  }

  .profile-frame {
    aspect-ratio: 5 / 6;
    border-radius: 18px;
  }

  .about-title {
    letter-spacing: -1.4px;
    text-align: center;
  }

  .about-role-card--desktop {
    display: none;
  }

  .about-role-card--mobile {
    display: block;
  }

  .about-section {
    padding: 22px 20px 24px;
    border-radius: 22px;
  }

  .about-section-heading {
    font-size: 22px;
  }

  .about-section-copy p {
    font-size: 16px;
  }

  .about-role-card {
    padding: 18px 18px 20px;
    border-radius: 20px;
  }

  .about-role-list li {
    font-size: 15px;
  }
}
