:host {
  display: block;
}

[role='radiogroup'] > span {
  display: block;
}

[role='radio'] {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 1.5rem;
  cursor: pointer;
  user-select: none;
}

[role='radio']::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.125rem;
  height: 1.125rem;
  box-sizing: border-box;
  border: 2px solid currentColor;
  border-radius: 50%;
  transform: translateY(-50%);
}

[role='radio'][aria-checked='true']::after {
  content: '';
  position: absolute;
  left: 0.25rem;
  top: 50%;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background: currentColor;
  transform: translateY(-50%);
}

[role='radio']:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}
