.about-hero-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.about-hero-text {
  max-width: 44rem;
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.about-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-3);
}

.about-section {
  padding-top: var(--space-10);
  padding-bottom: var(--space-10);
}

.about-section-narrow {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.about-section-header {
  margin-bottom: var(--space-6);
}

.about-section-header.centered {
  text-align: center;
}

.about-section-header.centered p {
  margin-left: auto;
  margin-right: auto;
}

.about-section-grid {
  align-items: center;
  gap: var(--space-8);
}

.about-mission-panel,
.about-responsibility-panel,
.about-partnerships-panel,
.about-feedback-panel {
  align-self: stretch;
}

.about-mission-card,
.about-responsibility-card,
.about-partnerships-card,
.about-feedback-card {
  height: 100%;
}

.about-mission-note,
.about-responsibility-note,
.about-feedback-note {
  margin-top: var(--space-4);
  color: var(--color-text-muted);
}

.about-inline-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.about-criteria-grid,
.about-trust-grid,
.about-ux-grid {
  align-items: stretch;
}

.about-criteria-card,
.about-trust-card,
.about-ux-card {
  height: 100%;
}

.about-media-col {
  order: 1;
}

.about-figure {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: var(--shadow-md);
  background: rgba(15, 23, 42, 0.96);
}

.about-figure img {
  width: 100%;
  height: auto;
}

.about-figure figcaption {
  padding: var(--space-3) var(--space-4);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.about-steps-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.about-steps-list h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-2);
}

.about-bullets {
  list-style: disc;
  padding-left: var(--space-5);
  margin-top: var(--space-3);
  margin-bottom: var(--space-4);
}

.about-bullets li {
  margin-bottom: var(--space-2);
  color: var(--color-text);
}

@media (max-width: 767px) {
  .about-hero {
    padding-top: var(--space-8);
    padding-bottom: var(--space-8);
  }

  .about-section {
    padding-top: var(--space-8);
    padding-bottom: var(--space-8);
  }

  .about-section-grid {
    gap: var(--space-6);
  }

  .about-media-col {
    order: -1;
  }
}
