@layer components {
  .website-questions-form__topics {
    border: none;
    padding: 0;
    margin: 0;
  }
  .website-questions-form__topics-legend {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0;
    margin-bottom: 1rem;
    color: var(--theme-text-primary);
  }
  .website-questions-form__topics-required {
    margin-left: 0.25rem;
    color: var(--theme-text-primary);
  }
  .website-questions-form__topics-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .website-questions-form__topic-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: var(--theme-text-primary);
  }
  .website-questions-form__radio {
    width: 1.25rem;
    height: 1.25rem;
    cursor: pointer;
    accent-color: var(--theme-interactive-primary-fill);
  }
  .website-questions-form__topics-error {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0;
    display: block;
    color: var(--theme-feedback-error);
    margin-top: 0.5rem;
  }
  .website-questions-form__topics-error:empty {
    margin-top: 0;
  }
}