.about-hero .page-hero-subtitle {
  max-width: 760px;
}

.about-story,
.about-team {
  padding: 84px 40px;
}

.about-story {
  background:
    radial-gradient(circle at top right, rgba(0,83,159,0.08), transparent 32%),
    linear-gradient(180deg, var(--white), #eef5fb);
}

.about-team {
  background:
    radial-gradient(circle at top left, rgba(255,210,0,0.16), transparent 28%),
    var(--off-white);
}

.about-story-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.9fr);
  gap: 32px;
  align-items: stretch;
}

.about-story-copy,
.about-story-card,
.team-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,83,159,0.1);
  box-shadow: var(--shadow);
}

.about-story-copy {
  background: rgba(255,255,255,0.86);
  padding: 40px;
}

.about-story-card {
  background: linear-gradient(180deg, rgba(0,83,159,0.96), rgba(0,61,122,0.96));
  color: var(--white);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}

.about-story-card::before {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  right: -40px;
  top: -40px;
  border-radius: 50%;
  background: rgba(255,210,0,0.15);
}

.about-story-kicker {
  position: relative;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}

.about-paragraph {
  font-size: 16px;
  line-height: 1.75;
  color: var(--gray-700);
  margin-top: 18px;
}

.about-points {
  position: relative;
  list-style: none;
  display: grid;
  gap: 16px;
}

.about-points li {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  line-height: 1.55;
}

.team-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.team-card {
  background: var(--white);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  padding: 28px 22px 24px;
  text-align: center;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.team-photo {
  display: block;
  width: 148px;
  height: 148px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  background: linear-gradient(180deg, rgba(0,83,159,0.12), rgba(255,210,0,0.12));
  margin: 0 auto 18px;
  border: 5px solid rgba(0,83,159,0.08);
  box-shadow: 0 12px 28px rgba(0,83,159,0.12);
}

.team-photo-top {
  object-position: top;
}

.team-card-body {
  padding: 0;
}

.team-name {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.1;
  margin-bottom: 8px;
  color: var(--gray-900);
}

.team-username {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--blue);
  font-weight: 700;
  background: rgba(0,83,159,0.08);
  border-radius: 999px;
  padding: 8px 12px;
}

.team-link {
  display: block;
  text-decoration: none;
  color: var(--gray-700);
  font-size: 14px;
  line-height: 1.5;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  margin-top: 10px;
  transition: border-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
  text-align: left;
}

.team-link:hover {
  color: var(--blue);
  border-color: rgba(0,83,159,0.28);
  transform: translateX(2px);
}

@media (max-width: 1100px) {
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

@media (max-width: 768px) {
  .about-story,
  .about-team {
    padding: 70px 20px;
  }

  .about-story-copy,
  .about-story-card {
    padding: 28px 24px;
  }

  .team-photo {
    width: 132px;
    height: 132px;
  }
}

@media (max-width: 640px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}
