/*
 * OpsMed — About Page Styles
 * WCAG 2.2 AA Compliant
 */

/* === PAGE HERO === */
.page-hero {
  padding: 8rem 0 3rem;
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 100%);
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: var(--space-md); }
.page-hero__subtitle {
  color: rgba(255,255,255,0.82);
  font-size: 1.15rem;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* === ABOUT STORY === */
.about-story { max-width: 760px; margin: 0 auto; }
.about-story__text h2 { margin-bottom: var(--space-xl); }
.about-story__text p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

/* === FOUNDERS GRID === */
.founders-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}
@media (min-width: 768px) { .founders-grid { grid-template-columns: repeat(2, 1fr); } }

.founder-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: all var(--transition-base);
}
.founder-card:hover {
  border-color: var(--blue-400);
  box-shadow: var(--shadow-md);
}
.founder-card__icon {
  width: 56px;
  height: 56px;
  background: var(--blue-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-600);
  margin-bottom: var(--space-lg);
}
.founder-card h3 {
  margin-bottom: var(--space-xs);
  font-size: 1.2rem;
}
.founder-card__role {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue-600) !important;
  margin-bottom: var(--space-md) !important;
}
.founder-card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* === MISSION CONTENT === */
.mission-content {
  max-width: 760px;
  margin: 0 auto;
}
.mission-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

/* === RESPONSIVE === */
@media (max-width: 639px) {
  .founder-card { padding: var(--space-xl); }
}
