Equality Federation Response to U.S. Supreme Court Ruling in U.S. v. Skrmetti

Today, the U.S. Supreme Court issued a 6-3 ruling in U.S. v. Skrmetti, upholding Tennessee’s ban on affirming healthcare for transgender youth.

May 18, 2026
2024 Election: Highlighting Progress for LGBTQ+ Rights in the States

In the spirit of finding hope where we can, here are a few key victories from across the states in the 2024 election.

May 18, 2026
New team members

It’s an exciting time at Equality Federation. I am honored to announce two new staff members have started this week to enhance and expand our advocacy work. Corinne Green has joined as our Policy & Legislative Strategist, and Mike Webb has joined as our Policy Engagement Strategist. Learn a little below about Corinne & Mike, as well as the way our growing advocacy department will operate.

May 18, 2026
Latest Attack on LGBTQ Community Goes After Transgender Youth

With every state now in legislative session, we can officially say this is the worst session for transgender youth in recent memory. What started last year but was quickly halted due to the COVID-19 pandemic shutting down or pausing many 2020 legislative sessions has come back with a vengeance in 2021.

May 18, 2026
How Project Game Changer is Flipping the Script on Organizing

From the fall of 2018 through spring 2019, Equality Federation members across the country played important roles in registering and turning out hundreds of thousands of voters to elect pro-equality candidates and win ballot measures. But what we learned as the national partner to these groups is that it isn’t just during elections that they need volunteers and donors to advance their missions — state-based equality organizations need this year round.

May 18, 2026
/* ============================================= Timed Popup — Shows after a delay on every page Closes on: X button, overlay click, or Escape key Once per session (won't show again until new session) ============================================= */ document.addEventListener("DOMContentLoaded", function () { /* Target the popup elements by their Webflow classes */ const popup = document.querySelector(".modal-popup_wrapper"); const closeBtn = document.querySelector(".modal-popup_close"); const overlay = document.querySelector(".modal-popup_overlay"); /* Check if popup has already been seen this session */ if (sessionStorage.getItem("popupSeen")) return; /* Show the popup after a delay Change 4000 to adjust timing (1000 = 1 second) */ setTimeout(function () { popup.style.display = "flex"; popup.removeAttribute("aria-hidden"); closeBtn.focus(); /* Moves focus to close button for accessibility */ }, 4000); /* Close the popup and record the session */ function closePopup() { popup.style.display = "none"; popup.setAttribute("aria-hidden", "true"); sessionStorage.setItem("popupSeen", "true"); /* Prevents popup from showing again this session */ } /* Close triggers */ closeBtn.addEventListener("click", closePopup); /* X button */ overlay.addEventListener("click", closePopup); /* Clicking the dim background */ document.addEventListener("keydown", function (e) { if (e.key === "Escape") closePopup(); /* Escape key */ }); });