/* About Page Specific Styles with Dark Mode Support */

:root {
  /* Light theme (default) */
  --about-bg: #ffffff;
  --about-text: #0b0b0b;
  --about-card-bg: #f5f5f5;
  --about-card-text: #131313;
  --about-border: #e0e0e0;
  --about-accent: #0b0b0b;
  --about-muted: rgba(27, 27, 27, 0.54);
  --about-shadow: -6px 12px 24px -18px rgba(0, 0, 0, 0.25);
  --about-hover-shadow: -6px 12px 26px -17px rgba(0, 0, 0, 0.32);
}

/* Dark theme */
@media (prefers-color-scheme: dark) {
  :root {
    --about-bg: #121212;
    --about-text: #f5f5f5;
    --about-card-bg: #1e1e1e;
    --about-card-text: #f5f5f5;
    --about-border: #333333;
    --about-accent: #ffffff;
    --about-muted: rgba(255, 255, 255, 0.7);
    --about-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    --about-hover-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
  }
}

.static-page--about {
  background-color: var(--about-bg);
  color: var(--about-text);
  padding: 2rem 0;
}

.static-page--about .static-page__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.static-page--about .static-page__header {
  text-align: center;
  margin-bottom: 3rem;
}

.static-page--about .static-page__eyebrow {
  display: block;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  color: var(--about-muted);
  margin-bottom: 1rem;
}

.static-page--about .static-page__title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--about-accent);
  line-height: 1.2;
}

.static-page--about .static-page__intro {
  font-size: 1.25rem;
  line-height: 1.6;
  max-width: 65ch;
  margin: 0 auto;
  opacity: 0.9;
}

.static-page--about .static-page__sections {
  display: grid;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.static-page--about .static-page__section {
  background: var(--about-card-bg);
  color: var(--about-card-text);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--about-border);
  box-shadow: var(--about-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.static-page--about .static-page__section:hover,
.static-page--about .static-page__section:focus-within {
  transform: translateX(12px);
  box-shadow: var(--about-hover-shadow);
}

.static-page--about .static-page__section-title {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  color: var(--about-accent);
  line-height: 1.3;
}

.static-page--about .static-page__section-paragraph {
  margin-bottom: 1.25rem;
  line-height: 1.7;
  color: var(--about-text);
  opacity: 0.9;
}

.static-page--about .static-page__section-paragraph:last-child {
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .static-page--about .static-page__inner {
    padding: 0 1.5rem;
  }
  
  .static-page--about .static-page__title {
    font-size: 2rem;
  }
  
  .static-page--about .static-page__intro {
    font-size: 1.1rem;
  }
  
  .static-page--about .static-page__section {
    padding: 1.5rem;
  }
  
  .static-page--about .static-page__section-title {
    font-size: 1.3rem;
  }
}
