.frequency-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.frequency-option {
  position: relative;
  cursor: pointer;
}

.frequency-option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.frequency-label {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-base-subtitle-text);
  background-color: var(--c-border);
  border-radius: 0.5rem;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.frequency-option input:checked + .frequency-label {
  background-color: var(--c-brand);
  color: var(--c-brand-text);
}

.frequency-option:hover .frequency-label {
  color: var(--c-base-text);
}

.frequency-option input:checked + .frequency-label:hover {
  color: var(--c-brand-text);
}
