@charset "UTF-8";
/**
 *  about.scss — page styles for about.html.
 *  Compiled by CodeKit to build/css/about.css.
 *  Ported from the v3 prototype, Round 104.
 */
body.about div.section-heading p.eyebrow {
  font-size: 12px;
}

/* The hero scaffold comes from _template.hero.scss; about keeps only its
   accent color. */
body.about section.hero h1 span.accent {
  color: rgb(0, 124, 153);
}

/* What we built — the three cards. */
body.about section.assets {
  padding: 80px 0;
}

body.about section.assets div.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

body.about section.assets div.card {
  background: #ffffff;
  border: 1px solid rgb(230, 234, 238);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 8px 30px -24px rgba(0, 43, 73, 0.3);
}

body.about section.assets div.card p.eyebrow {
  font-size: 11px;
  letter-spacing: 0.15em;
  margin-bottom: 14px;
}

body.about section.assets div.card h3 {
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.012em;
  color: rgb(0, 43, 73);
  margin: 0 0 8px;
  line-height: 1.2;
}

body.about section.assets div.card p {
  font-size: 14.5px;
  color: rgb(91, 107, 122);
}

/* Re-asserted at card-child specificity (the Round-97 lesson). */
body.about section.assets div.card p.eyebrow {
  font-size: 11px;
}

/* The editorial beats — who leads it, and the record. */
body.about section.principal {
  padding: 40px 0 20px;
}

body.about div.beat {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: start;
  padding: 64px 0;
}

body.about div.beat p.eyebrow {
  display: block;
  margin-bottom: 14px;
}

body.about div.beat h2 {
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.07;
  letter-spacing: -0.02em;
  color: rgb(0, 43, 73);
}

body.about div.beat div.body p {
  font-size: 16px;
  color: rgb(14, 27, 39);
  max-width: 60ch;
}

body.about div.beat div.body p + p {
  margin-top: 16px;
}

body.about div.beat div.body a {
  color: rgb(0, 124, 153);
  font-weight: 600;
  text-decoration: none;
}

/* At body-child depth so the sized body paragraph rule above cannot
   out-rank it (v3's credline was a div; the p conversion put it in that
   rule's path — the Round-97 lesson at one level deeper). */
body.about div.beat div.body p.credentials {
  margin: 0 0 20px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  max-width: none;
  color: rgb(0, 124, 153);
}

/* The team pillars. */
body.about section.team {
  padding: 80px 0;
}

body.about div.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 960px;
  margin: 0 auto;
}

body.about div.pillar {
  background: #ffffff;
  border: 1px solid rgb(230, 234, 238);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 8px 30px -26px rgba(0, 43, 73, 0.3);
}

body.about div.pillar b {
  display: block;
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: 17.5px;
  color: rgb(0, 43, 73);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

body.about div.pillar p {
  font-size: 14.5px;
  color: rgb(91, 107, 122);
}

body.about div.pillar p a {
  color: rgb(0, 124, 153);
  font-weight: 600;
  text-decoration: none;
}

/* The record — the navy verification beat. */
body.about section.record {
  background: rgb(0, 43, 73);
  padding: 24px 0 40px;
  margin-top: 34px;
}

body.about section.record div.beat {
  border-top: none;
}

body.about section.record div.beat p.eyebrow {
  color: rgb(127, 202, 219);
}

body.about section.record div.beat h2 {
  color: #ffffff;
}

body.about section.record div.beat div.body p {
  color: #bcd2de;
}

body.about section.record div.beat div.body a {
  color: rgb(127, 202, 219);
}

@media (max-width: 880px) {
  body.about section.assets div.cards {
    grid-template-columns: 1fr;
  }
  body.about div.beat {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  body.about div.pillars {
    grid-template-columns: 1fr;
  }
}
