/* public/styles/about.css */

/*
  The Accountability Report Podcast
  About page styles.
*/

.about-page {
  background: var(--color-background);
}

.about-hero {
  border-bottom: 1px solid rgba(208, 216, 225, 0.78);
  background: #eef3f4;
  padding: clamp(4.5rem, 9vw, 7.2rem) 0 clamp(4.4rem, 8vw, 6.6rem);
}

/*
  Keep the About hero aligned with the body content grid.
  Do not narrow this container separately from .site-container.
*/
.about-hero__content {
  max-width: none;
}

.about-kicker {
  display: inline-flex;
  margin-bottom: 1.1rem;
  color: var(--color-accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.34em;
  line-height: 1;
  text-transform: uppercase;
}

.about-hero__title {
  max-width: 780px;
  margin: 0;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: clamp(2.45rem, 5.4vw, 4.45rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.about-hero__lead {
  max-width: 760px;
  margin: 1.35rem 0 0;
  color: var(--color-charcoal);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  font-weight: 500;
  line-height: 1.72;
}

.about-body {
  background: var(--color-background);
  padding: clamp(3.5rem, 7vw, 5.3rem) 0 clamp(4.5rem, 8vw, 6.2rem);
}

.about-body__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.82fr);
  gap: clamp(3rem, 6vw, 5.2rem);
  align-items: start;
}

.about-copy {
  min-width: 0;
}

.about-copy h2 {
  margin: 0;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.16;
}

.about-copy h2:not(:first-child) {
  margin-top: 2rem;
}

.about-copy p {
  max-width: 760px;
  margin: 1.15rem 0 0;
  color: var(--color-charcoal);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.78;
}

.about-note {
  display: flex;
  gap: 0.3rem;
  max-width: 760px;
  border-left: 2px solid var(--color-accent);
  background: #edf4f7;
  margin-top: 2rem;
  padding: 1.1rem 1.25rem;
  color: var(--color-charcoal);
  font-size: 0.9rem;
  line-height: 1.55;
}

.about-note strong {
  color: var(--color-primary);
  font-weight: 800;
}

.about-standards {
  display: grid;
  min-width: 0;
  background: #ffffff;
}

.about-standard-card {
  border-bottom: 1px solid rgba(208, 216, 225, 0.95);
  background: rgba(255, 255, 255, 0.92);
  padding: 1.35rem 1.5rem;
}

.about-standard-card svg {
  width: 1.15rem;
  height: 1.15rem;
  margin-bottom: 1rem;
  fill: none;
  stroke: var(--color-primary);
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-standard-card h3 {
  margin: 0;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.about-standard-card p {
  margin: 0.55rem 0 0;
  color: var(--color-charcoal);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.58;
}

.about-visual-panel {
  min-height: clamp(10rem, 22vw, 18rem);
  background: #cbd6e0;
}

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

  .about-standards {
    max-width: 680px;
  }
}

@media (max-width: 720px) {
  .about-hero {
    padding-top: 4rem;
    padding-bottom: 4.2rem;
  }

  .about-hero__title {
    font-size: clamp(2.2rem, 11vw, 3.25rem);
  }

  .about-body {
    padding-top: 3rem;
  }

  .about-note {
    display: block;
  }

  .about-note strong {
    margin-right: 0.25rem;
  }
}

@media (max-width: 520px) {
  .about-kicker {
    font-size: 0.66rem;
    letter-spacing: 0.28em;
  }

  .about-copy p,
  .about-standard-card p {
    font-size: 0.9rem;
  }

  .about-standard-card {
    padding: 1.15rem;
  }

  .about-visual-panel {
    min-height: 9rem;
  }
}