document.addEventListener('DOMContentLoaded', function () {
    const pronounField = document.querySelector('[data-profile-field="pronouns"]');
    if (pronounField) {
        pronounField.style.display = 'none';
    }
});