Paul Finebaum targets North Carolina for SEC expansion

Paul Finebaum is one of the most prominent voices in SEC football. With realignment becoming much more widespread in college sports, the conference is set to grow in the summer of 2024. Furthermore, four of the Power Five conferences will face realignment in one way or another.

With reports suggesting that seven ACC schools are looking at moving, Finebaum suggested that the North Carolina Tar Heels make the most sense for SEC expansion.

Which seven ACC schools have considered realignment?

'; }); pollOptions.innerHTML = pollOptionsDom; pollCount.innerHTML = totalVotes + ' votes'; if (totalVotes > 10) { pollCount.classList.remove("hidden"); } } function trackBetsTodayPollImpression() { var intersectionObserverForArticlePoll = new IntersectionObserver( function(entries) { entries.forEach(function(entry) { var pollId = entry.target.getAttribute("data-poll-id"); if (POLLS_BY_ID[pollId]['impression_tracked']) return; if (!entry.target || !entry.isIntersecting || entry.intersectionRatio < 0.5) return; setTimeout(function() { if (isInViewport(entry.target)) { POLLS_BY_ID[pollId]['impression_tracked'] = true; var isDesktop = "1"; var gaPayload = { "question" : POLLS_BY_ID[pollId]['question'], "category": "College Football", "page_url": window.location.href, "option1": POLLS_BY_ID[pollId]['option1'], "option2": POLLS_BY_ID[pollId]['option2'], } if (isDesktop) { gaPayload["device"] = "Desktop"; } else { gaPayload["device"] = "Mobile"; } gtag("event", "BETS_TODAY_POLL_IMPRESSION", gaPayload); intersectionObserverForArticlePoll.unobserve(entry.target); } }, 1000); }); }, { threshold: 0.5 } ); var pollElements = document.querySelectorAll('.bets-today-poll'); pollElements.forEach(function(pollElement) { var isAnswered = pollElement.querySelector(".poll-option-answered"); if (!isAnswered) { intersectionObserverForArticlePoll.observe(pollElement); } }) } return { answerPollX: answerPollX, }; }();

The ACC is the only Power Five conference that won't be affected by realignment over the next year. Recent reports, however, have suggested that seven schools are growing discontent with the conference. According to Brett McMurphy of The Action Network, those schools, labeled 'The Magificent 7' are the Clemson Tigers, Florida State Seminoles, Miami Hurricanes, North Carolina Tar Heels, North Carolina State Wolfpack, Virginia Cavaliers and Virginia Tech Hokies. McMurphy took to Twitter, stating:

"Clemson, FSU, Miami, UNC, NC State, Virginia & Virginia Tech are “The Magnificent 7” ACC schools, sources told @ActionNetworkHQ. These schools, @RossDellenger reported, have met in past several months, w/lawyers examining grant-of-rights to determine just how unbreakable it is. ACC deal runs thru 2036."

Check out Brett McMurphy's tweet below:

If the majority of the conference is in agreement, the grant-of-rights agreement will be dissolved, placing the schools in an interesting position. It is currently unclear if the schools will look to leave the ACC or negotiate a new television deal. In order to maintain the majority, the 'Magnificent 7' will need one more program to join them.

Why does Paul Finebaum believe the SEC should target North Carolina?

The SEC is set to grow by two teams next summer as the Oklahoma Sooners and Texas Longhorns will join the conference. Paul Finebaum believes that the North Carolina Tar Heels should be the next target of the SEC, assuming that the ACC breaks up. During a recent appearance on McElroy and Cubelic in the Morning, the SEC analyst stated:

"I would go for North Carolina first, because they really hit a lot of different boxes. Number one, they're the dominant university in one of the 10 or 11 largest states in the country. That doesn't matter as much as it used to from a television footprint, but they do cover a lot there.
"They have a respectable football program. They have an elite basketball program, which I don't think is driving anyone other than maybe a few out West, but they just bring a lot to the table overall. After that, I think it's a debate between Miami, Florida State and Clemson."

Check out Paul Finebaum's comments below:

Paul Finebaum added that Clemson and Florida State do not bring much to the SEC despite their winning ways. He noted that the states of South Carolina and Florida already cover the SEC plenty.

Quick Links

More from Sportskeeda

" modalPopup.closeOnEsc = false; modalPopup.setHeader("Why did you not like this content?"); modalPopup.setContentText(modalText); modalPopup.addCancelOkButton("Submit", resetRatingAndFeedbackForm, sendRating); modalPopup.removeCloseModalIcon(); modalPopup.disableDismissPopup(); modalPopup.open(); } else { sendRating(index); } } function sendRating() { var requestPayload = { "post_id": 1518954, "rating_value": ratingValue } if (ratingValue > 3) { requestPayload.rating_feedback_type = null; requestPayload.rating_feedback = null; } else { if (!$('input[name="drone"]:checked') || !$('input[name="drone"]:checked').value) { showErrorMessage('option'); return; } if (!$(".post-rating-feedback-note textarea") || !$(".post-rating-feedback-note textarea").value) { showErrorMessage('note'); return; } var selectedOption = $('input[name="drone"]:checked').value; var feedbackNote = $(".post-rating-feedback-note textarea").value; requestPayload.rating_feedback_type = selectedOption; requestPayload.rating_feedback = feedbackNote; } pureJSAjaxPost(addratingAPI, requestPayload, onsaveRatingSuccess, onsaveRatingFail, function() {}, true); } function resetRatingAndFeedbackForm() { var activeStars = Array.from($all('.rating span.rating-star.active')); for (var i=0; i < activeStars.length; i++) { activeStars[i].classList.remove("active"); } if ($('input[name="drone"]:checked')) { $('input[name="drone"]:checked').checked = false; } var userNote = document.querySelector(".post-rating-feedback-note textarea"); userNote.value = ''; modalPopup.close(); } function onsaveRatingSuccess() { modalPopup.close(); savePostIdInUserRatedPostsCookie(); $("#post-rating-layout").classList.add("hidden"); $("#post-rating-message").classList.remove("hidden"); window.setInterval(function showMessage() { $("#post-rating-widget").classList.add("hidden"); }, 3000); } function onsaveRatingFail() { console.error('Saving post rating failed!'); modalPopup.close(); } function savePostIdInUserRatedPostsCookie() { userRatedPostIds.push(1518954); var expiryTime = new Date(); expiryTime.setMonth(expiryTime.getMonth() + 12); // Expiry after 1 year setCookie("user_rated_post_ids", JSON.stringify(userRatedPostIds), expiryTime); } function isPostRatedByUser() { var userRatedPostIds = getCookie('user_rated_post_ids'); if (userRatedPostIds) { try { userRatedPostIds = JSON.parse(userRatedPostIds); } catch (err) { console.error(err); return false; } } else { return false; } if(userRatedPostIds.indexOf(1518954) >= 0) { return true; } else { return false; } } function getRatingCountByPostId(postId) { return new Promise(function(resolve, reject) { pureJSAjaxGet( getRatingCountBaseURL + postId + '/rating/count', function(data) { try { data = JSON.parse(data); if (data.meta_value) { resolve(data.meta_value); } reject("Failed to fetch rating count for the post:" + postId); } catch (err) { reject("Failed to fetch rating count for the post:" + postId); } }, function(err) { reject("Failed to fetch rating count for the post:" + postId); }, true); }); } function showErrorMessage(messageType) { var messageContainerId = '#' + messageType + '-error'; $(messageContainerId).classList.remove('hidden'); window.setInterval(function () { $(messageContainerId).classList.add("hidden"); }, 5000); } (function() { var callFired = false; function lazyLoadPostRating() { if (callFired) return; callFired = true; if (!isPostRatedByUser()) { getRatingCountByPostId(1518954) .then(function(ratingCount) { if (ratingCount < 10) { $("#post-rating-widget").classList.remove("hidden"); } }) .catch(function(err){ console.error(err); }); } } document.addEventListener("scroll", lazyLoadPostRating, { passive: true, once: true }); document.addEventListener("mousemove", lazyLoadPostRating, { passive: true, once: true }); document.addEventListener("touchmove", lazyLoadPostRating, { passive: true, once: true }); })();