Go to topTop
document.addEventListener('DOMContentLoaded', function () {
var root = document.querySelector('.template-article-ffg-standard');
if (!root) return;
var ctaContainers = root.querySelectorAll('.ffg-cta');
ctaContainers.forEach(function (wrap) {
var links = Array.from(wrap.querySelectorAll('a'));
links.forEach(function (a, idx) {
// Primary for first link, secondary for others
a.classList.add('ffg-cta-button');
if (idx !== 0) a.classList.add('secondary');
// Accessibility
a.setAttribute('role', 'button');
a.setAttribute('tabindex', '0');
// External links open in new tab
var href = a.getAttribute('href') || '';
if (href.indexOf('http') === 0 && a.target !== '_blank') {
a.setAttribute('target', '_blank');
a.setAttribute('rel', 'noopener noreferrer');
}
});
});
});