@charset "UTF-8";
/**
 *  legal-counsel.scss — page styles for legal-counsel.html (the counsel
 *  door, renamed from expert-witness per Josh's ruling, Round 105;
 *  "expert witness" stays in title/meta for search).
 *  Compiled by CodeKit to build/css/legal-counsel.css.
 *  Ported from the v3 prototype, Round 105.
 */
/* The work — the four forensic pillars. */
body.legal-counsel section.work {
  padding: 80px 0;
}

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

body.legal-counsel 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.legal-counsel div.pillar h3 {
  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.legal-counsel div.pillar p {
  font-size: 14.5px;
  color: rgb(91, 107, 122);
}

/* Terms of engagement. */
body.legal-counsel section.terms {
  padding: 20px 0 80px;
}

body.legal-counsel section.terms ul {
  list-style: none;
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

body.legal-counsel section.terms li {
  background: #ffffff;
  border: 1px solid rgb(230, 234, 238);
  border-radius: 14px;
  padding: 20px 26px;
  box-shadow: 0 8px 30px -26px rgba(0, 43, 73, 0.3);
  font-size: 15px;
  color: rgb(14, 27, 39);
}

body.legal-counsel section.terms p.principal {
  text-align: center;
  font-size: 15.5px;
  color: rgb(14, 27, 39);
  max-width: 760px;
  margin: 34px auto 0;
}

body.legal-counsel section.terms p.principal a {
  color: rgb(0, 124, 153);
  font-weight: 600;
  text-decoration: none;
}

body.legal-counsel section.terms p.aside {
  text-align: center;
  font-style: italic;
  font-size: 14.5px;
  color: rgb(91, 107, 122);
  max-width: 760px;
  margin: 16px auto 0;
}

@media (max-width: 880px) {
  body.legal-counsel div.pillars {
    grid-template-columns: 1fr;
  }
}
