/* ── Errol page ──────────────────────────────────────────────────────────── */

.errol-hero__inner { display: grid; gap: clamp(36px, 5vw, 64px); align-items: center; }
@media (min-width: 940px) { .errol-hero__inner { grid-template-columns: 1.05fr .95fr; } }

.errol-hero__art img {
  width: 100%; border-radius: var(--r-xl);
  box-shadow: 0 30px 70px rgba(0,0,0,.6);
}

.errol-quote {
  margin: 22px 0 0; font-size: clamp(17px, 2vw, 20px);
  color: var(--gold); font-style: italic; line-height: 1.45;
  border-left: 3px solid var(--gold); padding-left: 16px;
}

.errol-grid { display: grid; gap: var(--s4); grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.errol-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: var(--s5);
}
.errol-card h3 { font-size: 18px; margin-bottom: 9px; }
.errol-card p { color: var(--text-2); font-size: 14.5px; margin: 0; line-height: 1.55; }

.dialects { display: grid; gap: var(--s3); grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.dialect {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: var(--s4) var(--s5);
  display: grid; gap: 6px;
}
.dialect b { color: var(--green-lift); font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; }
.dialect span { color: var(--text); font-size: 16px; }

.errol-note {
  margin-top: var(--s5); padding: var(--s4);
  background: var(--surface); border-radius: var(--r-md);
  border-left: 3px solid var(--green);
  color: var(--text-2); font-size: 15px;
}
.errol-note strong { color: var(--text); }

.asks { display: flex; flex-wrap: wrap; gap: 10px; }
.ask {
  padding: 11px 18px; border-radius: 999px;
  background: var(--surface-2); border: 1px solid var(--line);
  color: var(--text-2); font-size: 15px;
  transition: border-color var(--fast, .18s) ease, color .18s ease, transform .18s ease;
}
.ask:hover {
  color: var(--text); border-color: var(--green); transform: translateY(-2px);
}
.asks__note { margin-top: var(--s5); color: var(--text-3); font-size: 14.5px; }
