/* About Page Styles */

.about-hero {
  background: var(--bg-paper);
  padding: 4rem 0;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}
.about-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.about-hero-title {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 768px) {
  .about-hero-title { font-size: 3rem; }
}
.about-hero-lead {
  font-size: 1.125rem;
  color: var(--fg-light);
  max-width: 600px;
  margin: 0 auto;
}

.about-content {
  padding: 5rem 0;
  background: var(--bg-alt);
}
.ac-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .ac-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
  }
}

.ac-story h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.ac-story-text {
  font-size: 1.125rem;
  color: var(--fg-light);
  margin-bottom: 1.5rem;
}

.ac-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.ac-card {
  background: var(--bg-paper);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.ac-card-icon {
  width: 3rem;
  height: 3rem;
  color: var(--accent);
  background: var(--accent-light);
  border-radius: 50%;
  padding: 0.75rem;
  margin-bottom: 0.5rem;
  box-sizing: border-box;
}
.ac-card-title {
  font-size: 1.25rem;
}
.ac-card-desc {
  color: var(--fg-light);
  font-size: 0.9375rem;
}

.about-cta {
  background: var(--bg-paper);
  padding: 5rem 0;
  text-align: center;
}
.about-cta-inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.about-cta-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.about-cta-text {
  color: var(--fg-light);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}