South Carolina Democratic Rep.
Keishan Scott looks at a proposed U.S. House district map during a redistricting hearing in a state House Judiciary subcommittee on Tuesday, May, 12 2026, in Columbia, S.C. (AP Photo/Jeffrey Collins) 2026-05-14T14:48:10Z Two weeks after the U.S.
Supreme Court struck down
Louisiana’s congressional map, state senators on Thursday are to consider a plan that would eliminate a majority-Black district while giving Republicans a chance to win an additional seat in the November midterm elections. The high court’s ruling has led to a flurry of redistricting efforts in Southern states as Republicans seek to capitalize on a weakened federal
Voting Rights Act. While most of those efforts are voluntary,
Louisiana must redraw its U.S. House map in response to the ruling that it had illegally used race to gerrymander a majority-Black district. The debate over the shape of
Louisiana’s new districts is playing out as
South Carolina’s governor is ramping up pressure on lawmakers to also redistrict ahead of the midterms. President
Donald Trump has encouraged numerous Republican-led states to redraw House voting districts to their advantage in a bid to hold on to control of the closely divided chamber in November. freestar.queue.push(function () { window.fsAdCount = window.fsAdCount + 1 || 0; let customChannel = '/dynamic_' + fsAdCount; let adList = document.querySelectorAll(".fs-feed-ad") let thisAd = adList[fsAdCount]; let randId = Math.random().toString(36).slice(2); thisAd.id = randId; let thisPlacement = fsAdCount == 0 ? "apnews_story_feed" : "apnews_story_feed_dynamic"; freestar.newAdSlots({ placementName: thisPlacement, slotId: randId }, customChannel); }); Republicans think they could win as many as 15 additional House seats in seven states that already have adopted new voting districts. Democrats think they could gain up to six seats from two other states because of new House districts. But there’s no guarantee those seats will all turn out as expected. Litigation is continuing in some states, and voters will have the ultimate say on who wins.
Louisiana map scraps snaking district Legislation in
Louisiana seeks to address the
Supreme Court ruling by scrapping a district that snakes well over 200 miles (321 kilometers) northwest from the capital,
Baton Rouge, to
Shreveport, creating a voting bloc with a majority of Black residents. Democratic U.S. Rep.
Cleo Fields represents the current 6th District. Under the new plan, that district would instead be clustered around predominantly white communities in the
Baton Rouge area and southern
Louisiana. The new plan keeps a New Orleans-based, majority-Black district represented by Democratic U.S. Rep. Troy Carter while also adding a portion of
Baton Rouge to it. /* Desktop-first: fully collapse by default */ #ap-readmore-embed { display: none; margin: 0; padding: 0; height: 0; min-height: 0; overflow: hidden; text-align: center; position: relative; z-index: 2; } /* Only show on mobile */ @media (max-width: 767px) { #ap-readmore-embed { display: block; margin: 28px 0; height: auto; overflow: visible; } } #ap-readmore-embed .ap-readmore-btn { appearance: none; -webkit-appearance: none; border: 0; background: #000; color: #fff; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 22px; border-radius: 999px; font-family: inherit, "AP Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif; font-weight: 700; font-size: 16px; letter-spacing: 0.2px; line-height: 1; box-shadow: 0 10px 18px rgba(0,0,0,0.12); transition: transform 120ms ease, box-shadow 120ms ease, opacity 120ms ease; touch-action: manipulation; -webkit-tap-highlight-color: transparent; position: relative; z-index: 3; } #ap-readmore-embed .ap-readmore-btn:hover { transform: translateY(-1px); box-shadow: 0 14px 22px rgba(0,0,0,0.16); } #ap-readmore-embed .ap-readmore-btn:active { transform: translateY(0); box-shadow: 0 10px 18px rgba(0,0,0,0.12); opacity: 0.95; } #ap-readmore-embed .ap-readmore-btn:focus-visible { outline: 3px solid rgba(228, 0, 43, 0.35); outline-offset: 3px; } #ap-readmore-embed .ap-readmore-icon { width: 10px; height: 10px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); margin-top: -2px; } #ap-readmore-embed .ap-readmore-fade { display: none; height: 48px; margin-top: -48px; pointer-events: none; background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1)); } Read More (function () { var APRM_EMBED_ID = "ap-readmore-embed"; var APRM_MOBILE_MQ = "(max-width: 767px)"; function APRM_onReady(fn) { if (document.readyState === "loading") { document.addEventListener("DOMContentLoaded", fn); } else { fn(); } } APRM_onReady(function () { var APRM_embedEl = document.getElementById(APRM_EMBED_ID); if (!APRM_embedEl) return; // 🚨 DESKTOP: remove entire module wrapper and bail early if (!window.matchMedia(APRM_MOBILE_MQ).matches) { var APRM_rootModule = APRM_embedEl.closest(".HTMLModuleEnhancement") || APRM_embedEl.closest(".HtmlModule"); if (APRM_rootModule && APRM_rootModule.parentNode) { APRM_rootModule.parentNode.removeChild(APRM_rootModule); } else if (APRM_embedEl.parentNode) { APRM_embedEl.parentNode.removeChild(APRM_embedEl); } return; // stop the rest of the script from running } }); })(); (function () { var EMBED_ID = "ap-readmore-embed"; var BTN_ID = "apReadMoreBtn"; var FADE_ID = "apReadMoreFade"; var STOP_SELECTOR = ".Page-below"; var SIGN_IN_GATE_SELECTOR = ".sign-in-gate-content"; var HIDDEN_ATTR = "data-ap-readmore-hidden"; var MOBILE_MQ = "(max-width: 767px)"; function ready(fn) { if (document.readyState === "loading") { document.addEventListener("DOMContentLoaded", fn); } else { fn(); } } function isElementNode(n) { return n && n.nodeType === 1; } function cancelEvent(e) { if (!e) return; if (typeof e.preventDefault === "function") e.preventDefault(); if (typeof e.stopPropagation === "function") e.stopPropagation(); if (typeof e.stopImmediatePropagation === "function") e.stopImmediatePropagation(); e.cancelBubble = true; e.returnValue = false; } function collapseDesktopEmbed(embed) { if (!embed) return true; if (!window.matchMedia(MOBILE_MQ).matches) { var maybeWrappers = [ embed.parentElement, embed.closest(".html-embed"), embed.closest("[data-type='htmlembed']"), embed.closest("[class*='embed']"), embed.closest("[class*='Embed']") ].filter(Boolean); embed.style.display = "none"; embed.style.margin = "0"; embed.style.padding = "0"; embed.style.height = "0"; embed.style.minHeight = "0"; embed.style.overflow = "hidden"; maybeWrappers.forEach(function (el) { el.style.margin = "0"; el.style.padding = "0"; el.style.height = "0"; el.style.minHeight = "0"; el.style.overflow = "hidden"; }); if (embed.parentNode) { embed.parentNode.removeChild(embed); } return true; } return false; } ready(function () { var embed = document.getElementById(EMBED_ID); var btn = document.getElementById(BTN_ID); var fade = document.getElementById(FADE_ID); if (!embed || !btn) return; if (collapseDesktopEmbed(embed)) return; var signInGate = document.querySelector(SIGN_IN_GATE_SELECTOR); if (signInGate) { embed.innerHTML = ""; return; } // — Analytics: impression when embed enters viewport — if ("IntersectionObserver" in window) { var io = new IntersectionObserver(function (entries, observer) { if (entries[0].isIntersecting) { window.dataLayer = window.dataLayer || []; window.dataLayer.push({ event: "ap_readmore_impression" }); observer.disconnect(); } }, { threshold: 0 }); io.observe(btn); } var stopEl = document.querySelector(STOP_SELECTOR); if (!stopEl) return; var rootCandidates = [ embed.closest(".Page"), embed.closest("article"), embed.closest("main"), document.body ].filter(Boolean); var root = rootCandidates.find(function (c) { return c.contains(stopEl); }) || document.body; var all = root.getElementsByTagName("*"); var hidden = []; for (var i = 0; i Fields, a
Baton Rouge resident, said he won’t decide whether to seek reelection until the maps are finalized. But he said he won’t challenge Carter in a primary. freestar.queue.push(function () { window.fsAdCount = window.fsAdCount + 1 || 0; let customChannel = '/dynamic_' + fsAdCount; let adList = document.querySelectorAll(".fs-feed-ad") let thisAd = adList[fsAdCount]; let randId = Math.random().toString(36).slice(2); thisAd.id = randId; let thisPlacement = fsAdCount == 0 ? "apnews_story_feed" : "apnews_story_feed_dynamic"; freestar.newAdSlots({ placementName: thisPlacement, slotId: randId }, customChannel); }); The newly proposed House map is similar to one used in 2022 that resulted in five Republicans and one Democrat winning election. A federal judge struck down the 2022 map for violating the
Voting Rights Act. Then in 2023, the U.S.
Supreme Court ruled that Alabama had to create its own second largely Black congressional district. In light of the Alabama ruling, the
Louisiana Legislature passed a revised map , creating a second majority-Black district that was used in the 2024 elections. That map also was challenged, leading to an April 29
Supreme Court ruling that
Louisiana’s districts relied too heavily on race. Republican Gov. Jeff Landry has postponed
Louisiana’s U.S. House primaries , scheduled for Saturday, until either July 15 or a date to be determined by the Legislature to allow time for new districts to be put in place. freestar.queue.push(function () { window.fsAdCount = window.fsAdCount + 1 || 0; let customChannel = '/dynamic_' + fsAdCount; let adList = document.querySelectorAll(".fs-feed-ad") let thisAd = adList[fsAdCount]; let randId = Math.random().toString(36).slice(2); thisAd.id = randId; let thisPlacement = fsAdCount == 0 ? "apnews_story_feed" : "apnews_story_feed_dynamic"; freestar.newAdSlots({ placementName: thisPlacement, slotId: randId }, customChannel); });
South Carolina likely to work overtime on redistricting Leaders in the
South Carolina House said they expect to take up a bill drawing a new congressional map Friday after Republican Gov. Henry McMaster calls them into special session. The regular legislative session is supposed to end Thursday, but McMaster’s call would extend the session. It could be next week before the House can finish the redistricting bill, which would also move congressional primaries to August, Republican House Majority Leader Davey Hiott said. All primaries are currently scheduled for June 9. Early voting begins May 26, and that’s likely the deadline to get redistricting finished, he said. The redistricting work “will be long. It will be boring. It will be confrontational,” Hiott told reporters. If the proposal passes the House, it then heads to a more skeptical Senate , where Republican Judiciary Committee Chairman Luke Rankin has said he will “demand the process” without giving details. During the last regular redistricting at the start of the decade, Rankin’s committee held a month of meetings across the state and encouraged the public to submit its own maps. freestar.queue.push(function () { window.fsAdCount = window.fsAdCount + 1 || 0; let customChannel = '/dynamic_' + fsAdCount; let adList = document.querySelectorAll(".fs-feed-ad") let thisAd = adList[fsAdCount]; let randId = Math.random().toString(36).slice(2); thisAd.id = randId; let thisPlacement = fsAdCount == 0 ? "apnews_story_feed" : "apnews_story_feed_dynamic"; freestar.newAdSlots({ placementName: thisPlacement, slotId: randId }, customChannel); }); Only one of
South Carolina’s seven U.S. House seats currently is held by a Democrat — longtime U.S. Rep. Jim Clyburn. Some Republicans worry it is impossible to guarantee seven GOP districts in a state where the Democratic presidential candidate has gotten more than 40% of the vote every election this century. There are also concerns about holding two statewide elections in a little over two months.
South Carolina’s elections leader said it may require employees to work 24 hours a day. ___ Brook reported from
Baton Rouge,
Louisiana; Collins from Columbia,
South Carolina; and Lieb from Jefferson City, Missouri. DAVID A. LIEB Lieb covers issues and trends in state governments across the U.S. He’s reported about government and politics for The Associated Press for 30 years. twitter mailto JACK BROOK Based in New Orleans, Brook covers
Louisiana with a focus on state government, environmental issues and infrastructure. He is a Report for America corps member and can be reached on the secure messaging app Signal at jackbrook.88 twitter instagram mailto JEFFREY COLLINS Collins covers
South Carolina from Columbia for The Associated Press. He has been with the AP since 2000. twitter mailto