

/* sLAWIER page additions — encyclopedia navigation, orientation contrast and horizontal step layout. */
.hero-encyclopedia{
  display:flex;
  justify-content:center;
  width:100%;
  margin:0 0 16px;
}
.hero-encyclopedia a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:34px;
  padding:7px 13px;
  border:1px solid var(--line);
  border-radius:999px;
  color:var(--gold-light);
  background:rgba(255,255,255,.025);
  font-size:13px;
  font-weight:800;
  line-height:1.25;
  text-decoration:none;
  transition:transform .18s ease,border-color .18s ease,background .18s ease;
}
.hero-encyclopedia a:hover{
  transform:translateY(-1px);
  border-color:var(--gold);
  background:rgba(214,171,77,.10);
}
.hero-encyclopedia a:focus-visible,
.encyclopedia-hierarchy a:focus-visible{
  outline:3px solid rgba(214,171,77,.38);
  outline-offset:3px;
}
.encyclopedia-sidebar{padding:18px}
.encyclopedia-hierarchy{
  display:grid;
  gap:7px;
}
.encyclopedia-hierarchy a,
.encyclopedia-hierarchy span{
  display:block;
  padding:6px 0;
  color:#cbd9de;
  font-size:13px;
  font-weight:690;
  line-height:1.38;
  text-decoration:none;
  border-bottom:1px solid transparent;
}
.encyclopedia-hierarchy a{
  color:var(--gold-light);
}
.encyclopedia-hierarchy a:hover{
  border-color:var(--line);
}
.encyclopedia-hierarchy span{
  color:var(--muted);
}
.orientation-item .sentence-stack{margin-top:4px}
.orientation-item .sentence-line{
  margin:0;
  color:#bfcfd5;
  font-size:14px;
  line-height:1.45;
}
.step-card{
  display:grid;
  grid-template-columns:38px minmax(0,1fr);
  align-items:start;
  gap:14px;
}
.step-card img{
  grid-column:1;
  grid-row:1;
  width:36px;
  height:36px;
  margin:0;
}
.step-card-body{
  grid-column:2;
  grid-row:1;
  min-width:0;
}
.step-card-body h3{margin:0 0 6px}
.step-card-body .sentence-stack{color:#c8d6db;font-size:14px;line-height:1.5}
.step-card-body .sentence-line{margin:0}
html[data-theme="light"] .hero-encyclopedia a{
  color:#704a08;
  background:#fff;
  border-color:rgba(151,107,16,.38);
}
html[data-theme="light"] .encyclopedia-hierarchy a{color:#704a08}
html[data-theme="light"] .encyclopedia-hierarchy span{color:#334850}
html[data-theme="light"] .orientation-item strong,
html[data-theme="light"] .orientation-item .sentence-line{
  color:#102129!important;
}
html[data-theme="light"] .step-card-body,
html[data-theme="light"] .step-card-body .sentence-line{
  color:#1e3944!important;
}
@media(max-width:700px){
  .hero-encyclopedia{justify-content:center;margin-bottom:14px}
  .hero-encyclopedia a{font-size:12.5px}
  .step-card{
    grid-template-columns:34px minmax(0,1fr);
    gap:12px;
  }
  .step-card img{
    width:32px;
    height:32px;
  }
}
