/* A-Z letter filter strip used on /casino-reviews/ (page 57). Sits above the
   card list, inside the V2 wrapper. White card background, primary-coloured
   letter pills; the active letter gets the inverted treatment. */

.ccs-az-filter {
  background: #fff;
  border-radius: var(--ccs-radius-xl);
  box-shadow: var(--ccs-shadow-card);
  padding: 16px 20px;
  margin: 0 0 24px;
}

.ccs-az-filter__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.ccs-az-filter__item {
  margin: 0;
  padding: 0;
}

.ccs-az-filter__item a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border-radius: var(--ccs-radius-full, 999px);
  font-family: var(--ccs-font-display);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  color: var(--ccs-primary);
  background: var(--ccs-primary-fixed, #f3e9ff);
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.ccs-az-filter__item a:hover {
  background: var(--ccs-primary);
  color: #fff;
}

.ccs-az-filter__item.is-active a {
  background: var(--ccs-primary);
  color: #fff;
  box-shadow: 0 2px 6px rgba(49, 0, 88, 0.25);
}

.ccs-az-filter__empty {
  background: #fff;
  border-radius: var(--ccs-radius-xl);
  box-shadow: var(--ccs-shadow-card);
  padding: 40px 24px;
  margin: 0 0 32px;
  text-align: center;
  font-family: var(--ccs-font-display);
  font-size: 16px;
  color: var(--ccs-on-surface-variant);
}

@media (max-width: 600px) {
  .ccs-az-filter {
    padding: 12px;
    margin: 0 0 16px;
  }
  .ccs-az-filter__item a {
    min-width: 32px;
    height: 32px;
    font-size: 13px;
    padding: 0 8px;
  }
}
