section.category-section {
  padding: var(--space-l) 0;
}
section.category-section .alphabet-selection-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}
section.category-section .alphabet-selection-list-wrapper {
  position: sticky;
  top: 6rem;
}
section.category-section .alphabet-selection-item {
  background-color: white;
  padding: var(--space-3xs) var(--space-2xs);
  flex: 0 0 2rem;
  max-width: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00a3a8;
  font-weight: bold;
  border-radius: 0.25rem;
  cursor: pointer;
}
section.category-section .alphabet-selection-item.alphabet-all {
  flex: 0 0 4.25rem;
  max-width: 4.25rem;
}
section.category-section .alphabet-selection-item:hover {
  background-color: #ceeaeb;
}
section.category-section .alphabet-selection-item.active {
  color: white;
  background-color: #00a3a8;
}
section.category-section .alphabet-result-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
section.category-section .alphabet-result-alphabet {
  font-size: var(--step-4);
  font-weight: bold;
  color: #00a3a8;
  display: flex;
  align-items: center;
  margin-bottom: 0.25rem;
}
section.category-section .alphabet-result-alphabet::after {
  content: "";
  display: inline-block;
  width: calc(100% - 1.5rem);
  border-bottom: 1px solid #00a3a8;
  margin-left: auto;
}
section.category-section .alphabet-result-category {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  row-gap: 0.5rem;
}
section.category-section .alphabet-result-item {
  color: inherit;
}
section.category-section .alphabet-result-item:hover {
  color: #272727;
}/*# sourceMappingURL=category.css.map */