/* Chips centered */
.kw-alphabet-wrapper { margin: 10px auto 24px; }
.kw-chipbar { display:flex; flex-wrap:wrap; gap:8px 10px; align-items:center; justify-content:center; }
.kw-chip {
  display:inline-flex; align-items:center; justify-content:center;
  padding:6px 10px; border-radius:999px; background:#f2f4f7; border:1px solid #e5e7eb;
  font-size:14px; line-height:1; text-decoration:none; color:#111827; transition:all .15s ease-in-out;
}
.kw-chip:hover { background:#eef2ff; border-color:#c7d2fe; transform:translateY(-1px); }
.kw-chip-active { background:#111827; color:#fff; border-color:#111827; }
.kw-chip-disabled { opacity:.45; cursor:not-allowed; }
@media (max-width:640px){
  .kw-chip { font-size:13px; padding:6px 10px; }
}
