/* tokens-words-characters-converter — style.css (RT-AI-005). Tokens only. */
#twc { display: flex; flex-direction: column; gap: 1rem; }
.twc-grid { display: grid; grid-template-columns: 1fr; gap: .75rem; }
@media (min-width: 560px) { .twc-grid { grid-template-columns: repeat(3, 1fr); } }
.twc-field { display: flex; flex-direction: column; gap: .35rem; }
.twc-label { font-size: .8rem; font-weight: 600; color: var(--rt-ink-soft, #2A3340); }
.twc-input {
  width: 100%; min-height: 52px; padding: .5rem .65rem; font-size: 1.2rem; font-weight: 600;
  border: 1px solid var(--rt-border, #d8dce2); border-radius: 10px; text-align: center;
  background: var(--rt-card, #fff); color: var(--rt-ink, #14213d); font-family: inherit;
}
.twc-input:focus-visible { outline: 2px solid var(--rt-accent, #e8622a); outline-offset: 2px; }
.twc-note { font-size: .78rem; color: var(--rt-ink-mute, #6b6760); margin: 0; text-align: center; }
