/* Native About page */

body.sc-page-about .sc-page-hero-v2 {
  padding-bottom: 20px;
}

body.sc-page-about .sc-about-section {
  padding: clamp(36px, 4vw, 48px) 0 88px;
}

body.sc-page-about .sc-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

body.sc-page-about .sc-about-mission h2,
body.sc-page-about .sc-about-author h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 700;
  color: var(--heading, #fff);
  margin: 0 0 18px;
  letter-spacing: -0.02em;
}

body.sc-page-about .sc-about-intro {
  font-size: 17px;
  color: var(--text, #c6ccd8);
  margin: 0 0 28px;
  max-width: 58ch;
  line-height: 1.7;
}

body.sc-page-about .sc-about-cards {
  display: grid;
  gap: 18px;
}

body.sc-page-about .sc-about-card {
  background: var(--panel, #15171f);
  border: 1px solid var(--border, #272b36);
  border-radius: 16px;
  padding: 24px 26px;
}

body.sc-page-about .sc-about-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--accent, #6d7bff) 14%, var(--panel, #15171f));
  color: var(--accent-2, #a855f7);
  margin-bottom: 14px;
}

body.sc-page-about .sc-about-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--heading, #fff);
  margin: 0 0 10px;
}

body.sc-page-about .sc-about-card p {
  margin: 0;
  font-size: 15px;
  color: var(--muted, #78838f);
  line-height: 1.65;
}

body.sc-page-about .sc-about-author-card {
  background: var(--panel, #15171f);
  border: 1px solid var(--border, #272b36);
  border-radius: 18px;
  overflow: hidden;
}

body.sc-page-about .sc-about-author-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
}

body.sc-page-about .sc-about-author-body {
  padding: 24px 24px 28px;
}

body.sc-page-about .sc-about-author-body h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--heading, #fff);
  margin: 0 0 4px;
}

body.sc-page-about .sc-about-role {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-2, #a855f7);
  margin: 0 0 14px;
  letter-spacing: 0.02em;
}

body.sc-page-about .sc-about-bio {
  font-size: 14.5px;
  color: var(--text, #c6ccd8);
  margin: 0 0 18px;
  line-height: 1.65;
}

body.sc-page-about .sc-about-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

body.sc-page-about .sc-about-socials a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border, #272b36);
  background: var(--panel-2, #1b1e28);
  display: grid;
  place-items: center;
  color: var(--heading, #fff);
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
}

body.sc-page-about .sc-about-socials a:hover {
  border-color: var(--accent, #6d7bff);
  transform: translateY(-2px);
  color: var(--heading, #fff);
}

body.sc-page-about .sc-about-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 99px;
  background: var(--accent, #6d7bff);
  color: #fff !important;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: filter 0.2s, transform 0.2s;
}

body.sc-page-about .sc-about-cta:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  color: #fff !important;
}

@media (max-width: 900px) {
  body.sc-page-about .sc-about-grid {
    grid-template-columns: 1fr;
  }

  body.sc-page-about .sc-about-author {
    order: -1;
  }
}
