:root {
  --fz-s: clamp(16px, 1.4vw, 18px);
  --fz-m: clamp(18px, 1.6vw, 20px);
  --fz-l: clamp(20px, 1.8vw, 24px);
  font-size: var(--fz-s);

}

body.nm-fsm,
:root:has([type='radio'][data-font-size='medium']:checked) {
  font-size: var(--fz-m);
}

body.nm-fsl,
:root:has([type='radio'][data-font-size='large']:checked) {
  font-size: var(--fz-l);
}

.nm-nav {
  color: var(--wp--preset--color--custom-secondary);
  list-style: none;
  padding-inline-start: 0;

  & input {
    display: none;
    visibility: hidden;
  }
}

.nm-forced-small {
  font-size: var(--fz-s);
  &:has(input:checked) {
    text-decoration: underline;
  }
}
.nm-forced-medium {
  font-size: var(--fz-m);
  &:has(input:checked) {
    text-decoration: underline;
  }
}
.nm-forced-large {
  font-size: var(--fz-l);
  &:has(input:checked) {
    text-decoration: underline;
  }
}
