/* glossary.css - a two-column definition list, the only one on the site, plus the A-Z strip. */
.azstrip{display:flex;flex-wrap:wrap;gap:8px;margin:0 0 34px;border-top:1px solid var(--line);
         border-bottom:1px solid var(--line);padding:14px 0}
.azstrip a{display:grid;place-items:center;width:38px;height:38px;border-radius:8px;
           background:var(--mist);text-decoration:none;font-family:var(--disp);font-weight:800;
           color:var(--teal-ink);font-size:.95rem}
.azstrip a:hover{background:var(--lime);color:var(--teal-ink)}
.lgroup{margin-top:34px}
.lgroup h2{font-family:var(--disp);font-size:2rem;color:var(--teal-deep);max-width:none;
           border-bottom:1px solid var(--line);padding-bottom:8px;margin-bottom:6px}
.terms dl{display:grid;grid-template-columns:minmax(190px,.32fr) 1fr;gap:0}
.terms dt{font-family:var(--disp);font-weight:700;color:var(--teal-ink);font-size:1.05rem;
          padding:18px 24px 18px 0;border-top:1px solid var(--line)}
.terms dd{padding:18px 0;border-top:1px solid var(--line);color:var(--ink-soft);
          max-width:var(--measure-read)}
.terms dl > dt:first-of-type,.terms dl > dd:first-of-type{border-top:0}
@media(max-width:760px){
  .terms dl{grid-template-columns:1fr}
  .terms dt{padding-bottom:0;border-top:1px solid var(--line)}
  .terms dd{padding-top:8px;border-top:0}
}
