/* Admin textareas fill the form column and size themselves to their content
   rather than scrolling inside a fixed box — long-form prose (band
   interpretations, case notes) is unreadable through a 10-row window.

   `#content textarea` is deliberately ID-scoped: admin forms.css sets
   `.colM .aligned .vLargeTextField { width: 610px }`, which outranks any
   class-only selector. `field-sizing` does the growing wherever it is
   supported; admin_autogrow_textarea.js covers the browsers that lack it. */
#content textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    field-sizing: content;
    min-height: 4em;
    resize: vertical;
    overflow-y: hidden;
}
