.alphabet-scroll {
  max-width: 900px;
  margin: 0 auto 10px;
  overflow-x: auto;
  padding-bottom: 16px;
}


.alphabet-scroll ul {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  white-space: nowrap;
}


.alphabet-scroll a {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 20px;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(0,0,0,0.2);
  font-size: 15px;
  text-decoration: none;
  color: #000;
  transition: all .2s;
}

.alphabet-scroll a:hover {
  background: #c22719;
  color: #fff;
}

.alphabet-scroll a.active {
  background: #c22719;
  color: #fff;
  font-weight: 600;
}
