/*
Accessibility remediation:
---------------------------
This script adds explicit aria-label attributes to specific
"Learn More" buttons whose visible text is ambiguous when
announced by screen readers.
The site theme (Uncode) sanitizes Button elements and does not
preserve link titles, ARIA attributes, or hidden descriptive text
in the rendered HTML. As a result, multiple "Learn More" links
fail WCAG 2.4.4 (Link Purpose).
To resolve this without altering visual design, unique aria-labels
are injected at runtime based on Element IDs. Accessibility
testing tools evaluate the final DOM, where these labels are present.
Do not remove unless button markup is refactored to include
inherently descriptive link text.
*/