body.page-about .page-hero {
  background-color: #1b4931;
  background-image:
    linear-gradient(135deg, rgba(8, 27, 17, 0.2), rgba(183, 238, 164, 0.08)),
    url("../images/bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

body.page-about .spotlight-card {
  background:
    linear-gradient(145deg, rgba(10, 30, 76, 0.65), rgba(37, 99, 235, 0.58)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.page-about .team-grid .card,
.page-about .certificate-grid .card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(243, 250, 245, 0.94)
  );
}

.page-about .timeline-item {
  border: 0.0625rem solid rgba(77, 159, 91, 0.12);
}

.page-about .founder-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 2rem;
  align-items: center;
}

.page-about .founder-portrait {
  position: relative;
  margin: 0;
  padding: 1.1rem;
  border-radius: 2rem;
  background: linear-gradient(
    135deg,
    rgba(209, 44, 44, 0.14),
    rgba(249, 115, 22, 0.08)
  );
  box-shadow: var(--shadow-lg);
}

.page-about .founder-portrait::after {
  content: "";
  position: absolute;
  right: 1rem;
  bottom: -0.75rem;
  width: 5rem;
  height: 5rem;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, #fb923c, #f97316);
  box-shadow: 0 1rem 2.25rem rgba(249, 115, 22, 0.24);
}

.page-about .founder-portrait img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 1.45rem;
  background: linear-gradient(180deg, #d62d2d, #ab1515);
}

.page-about .founder-card {
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border-radius: 2rem;
  background: linear-gradient(
    180deg,
    rgba(255, 250, 240, 0.98),
    rgba(251, 243, 230, 0.96)
  );
  box-shadow: var(--shadow-md);
}

.page-about .founder-card h2 {
  margin-bottom: 0.4rem;
}

.page-about .founder-role {
  margin-top: 0;
  color: var(--color-accent);
  font-weight: 700;
}

.page-about .founder-card p {
  max-width: 44rem;
}

.page-about .founder-quote {
  margin-top: 1.5rem;
  padding: 1.3rem 1.45rem;
  border-left: 0.25rem solid var(--color-accent);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.58);
}

.page-about .founder-quote p {
  margin: 0;
  font-style: italic;
}

@media (max-width: 55rem) {
  .page-about .founder-layout {
    grid-template-columns: 1fr;
  }

  .page-about .founder-portrait::after {
    right: 0.75rem;
    bottom: -0.6rem;
    width: 4.25rem;
    height: 4.25rem;
  }
}

@media (max-width: 40rem) {
  .page-about .founder-portrait {
    padding: 0.8rem;
    border-radius: 1.4rem;
  }

  .page-about .founder-card {
    padding: 1.15rem;
    border-radius: 1.4rem;
  }

  .page-about .founder-card h2 {
    font-size: clamp(1.5rem, 6.5vw, 1.9rem);
    line-height: 1.12;
  }

  .page-about .founder-quote {
    margin-top: 1.1rem;
    padding: 1rem 1.05rem;
  }
}

@media (max-width: 40rem) {
  .page-about .founder-layout {
    gap: 1.25rem;
  }

  .page-about .founder-portrait {
    max-width: 14rem;
    margin: 0 auto;
    padding: 0.7rem;
    border-radius: 1.3rem;
  }

  .page-about .founder-portrait::after {
    width: 3.2rem;
    height: 3.2rem;
    right: 0.6rem;
    bottom: -0.5rem;
  }

  .page-about .founder-card {
    text-align: left;
  }

  .page-about .founder-quote {
    padding: 0.9rem 1rem;
    margin-top: 1rem;
  }
}
