91³Ô¹ÏÍø

Watch CBS News

Alcohol can increase your cancer risk. What experts say about how much is too much

Despite growing research that points to the negative health impacts of alcohol, many Americans are unaware of the connection between drinking and cancer risk.

A recent report from the American Association for Cancer Research found excessive levels of alcohol consumption increase the risk for six different types of cancer, including: 

"Some of this is happening through chronic inflammation. We also know that alcohol changes the microbiome, so those are the bacteria that live in your gut, and that can also increase the risk," Dr. Céline Gounder, CBS News medical contributor and editor-at-large for public health at KFF Health News, recently said on "CBS Mornings."

But how much is too much when it comes to drinking? We asked experts what to know: 

How much alcohol is bad for you?

"Excessive levels of alcohol" equates to about three or more drinks per day for women and four or more drinks per day for men, Gounder said.

According to the , a standard alcoholic drink contains 14 grams (or 0.6 ounces) of pure alcohol. Generally, this amount is found in 12 ounces of beer, 5 ounces of wine and 1.5 ounces, or a "shot," of 80-proof distilled spirits or liquor. 

Other studies have shown, however, there is no "safe amount" of alcohol, Gounder said, particularly if you have underlying medical conditions.

"If you don't drink, don't start drinking. If you do drink, really try to keep it within moderation," she said.

Dr. Amy Comander, medical director of the Mass General Cancer Center Waltham specializing in breast cancer, told CBS News alcohol is the third leading modifiable risk factor that can increase cancer risk after accounting for cigarette smoking and excess body weight.

"There really isn't a safe amount of alcohol for consumption," she said. "In fact, it's best to not drink alcohol at all, but that is obviously hard for many people. So I think it's really important for individuals to just be mindful of their alcohol consumption and certainly drink less."

How else can alcohol affect your health?

The benefits of limiting alcohol is not just about cancer risk. Alcohol in large or frequent amounts is considered toxic to the human body, said Dr. Angela Tatiana Alistar, medical director of GI Medical Oncology at Morristown Medical Center, Atlantic Health System. 

"All organs can be affected by alcohol intake depending on dose and frequency," she told CBS News. "There is vast scientific literature regarding the impact of alcohol consumption on the liver described as hepatitis (in the acute form), liver cirrhosis (chronic form) and possible liver cancer."

Drinking alcohol can also have direct and immediate effects on other organs like the brain, affecting the sleep-wake cycle. 

"It can also affect cognition, coordination and emotional regulation," Alistar said. "Acute and chronic dependence and tolerance to alcohol is a high-risk factor for social functioning and mental health."

Is wine healthy? 

Some studies have suggested health benefits from drinking red wine. Occasional wine is also a part of the Mediterranean diet, which is often praised for a reduction in mortality, heart disease and more. But, other research says any potential benefit doesn't outweigh the risks.

"A glass of red wine is included in terms of the alcoholic beverages that one should be mindful of — beer, red wine, other spirits," said Comander. "There's been at times this health halo about red wine, but when it comes to cancer, it is still considered alcohol and it should be limited."

But, doesn't everything cause cancer anyway?

Comander admits cancers are complex with many factors that can contribute to someone's risk — but, at the same time, we're making strides in cure rates and early detection. 

For example, the latest Cancer Progress Report found a 33% reduction in the overall cancer deaths from 1991 to 2021. 

"So that is hopeful," Comander said, adding alcohol is just "one piece of the puzzle" in prevention.

"There are so many aspects of our lifestyle that we should focus on in order to optimize our health, certainly to reduce our risk of cancer, but also other chronic diseases, such as cardiovascular disease, Type 2 diabetes and other conditions that we face in this country," she said. 

Alistar recognizes social changes can be difficult when it comes to alcohol.

"Socializing with friends and family typically involves sharing food and drinks. Having open conversations about the impact of alcohol on general health with your family and friends would be a good way to start," she said, but added "celebratory drinks or foods are OK in my opinion if most of the time one has a healthy diet and lifestyle."

Other ways to decrease cancer risk

Reducing alcohol isn't the only way to decrease your risk of cancer. There are several other modifiable risk factors that researchers found are linked to more than 40% of all cancer fatalities, including smoking, excess body weight, physical inactivity and diet.

Using sunscreen to prevent  and getting the HPV vaccine to prevent cervical cancer and oral cancer related to the human papillomavirus are other prevention measures, Gounder said.

View CBS News In
CBS News App Open
Chrome Safari Continue
const link = doc.createElement('link'); link.rel = 'stylesheet'; link.href = '/fly/fly/bundles/cbsnewscontent/css/cmp-banner.min.css?v=296763317a51cab90faa73f1bb146d5c'; doc.head.appendChild(link); doc.body.innerHTML = CONSENT_MESSAGE; } else { el.insertAdjacentHTML('afterend', CONSENT_MESSAGE); } }); } function hidePrivacyMessage() { // Remove from the main document document.querySelectorAll(`.${CONSENT_MESSAGE_CLASS}`).forEach(el => el.remove()); // Remove from inside any iframes document.querySelectorAll('iframe').forEach(iframe => { const doc = iframe.contentDocument || iframe.contentWindow.document; doc.querySelectorAll(`.${CONSENT_MESSAGE_CLASS}`).forEach(el => el.remove()); }); } function activateGatedScripts() { // Handle both new format (cmp-gated-script) and old OneTrust/Ketch format (optanon-category-4) const gatedScripts = Array.from(document.querySelectorAll('script.cmp-gated-script, script.optanon-category-4')); // Activate scripts sequentially with a small delay to avoid timing issues let delay = 0; gatedScripts.forEach(function(placeholder, index) { setTimeout(function() { // Skip if already processed if (placeholder.hasAttribute('data-cmp-processed')) { return; } placeholder.setAttribute('data-cmp-processed', 'true'); const newScript = document.createElement('script'); newScript.type = 'text/javascript'; // Try new format first (data-cmp-src), then fall back to old format (data-src) const src = placeholder.getAttribute('data-cmp-src') || placeholder.getAttribute('data-src'); if (src) { newScript.src = src; } else if (placeholder.textContent) { // Inline script - just copy the content newScript.textContent = placeholder.textContent; } // Handle new format attributes (data-cmp-attrs) - for both inline and external scripts const attrs = placeholder.getAttribute('data-cmp-attrs'); if (attrs) { const tempDiv = document.createElement('div'); tempDiv.innerHTML = '
<\/div>'; const tempAttrs = tempDiv.firstChild.attributes; for (let i = 0; i < tempAttrs.length; i++) { // For external scripts, allow defer/async. For inline scripts, skip them (not valid) if (src || (tempAttrs[i].name !== 'async' && tempAttrs[i].name !== 'defer')) { newScript.setAttribute(tempAttrs[i].name, tempAttrs[i].value); } } } // Copy other attributes from old OneTrust format for (let i = 0; i < placeholder.attributes.length; i++) { const attr = placeholder.attributes[i]; // Skip attributes we've already handled or don't want to copy if (!['class', 'data-src', 'data-type', 'data-cmp-src', 'data-cmp-attrs', 'data-cmp-processed', 'type', 'async', 'defer', 'src'].includes(attr.name)) { newScript.setAttribute(attr.name, attr.value); } } placeholder.parentNode.replaceChild(newScript, placeholder); // If external script, manually trigger window.onload handlers after it loads // This handles widgets that use window.onload for initialization if (src) { newScript.addEventListener('load', function() { // If page already loaded and script set a new onload handler, trigger it if (document.readyState === 'complete' && window.onload) { const originalOnload = window.onload; window.onload = null; // Clear temporarily to prevent loops originalOnload(); // Execute the handler } }); } }, delay); delay += 500; // 500ms delay between each script to allow full loading }); } cbsoptanon.onScriptsReady(function(cmp) { cmp.ot.targetingAllowed(function(allowed) { if (!allowed) { showPrivacyMessage(); } else { activateGatedScripts(); } }); cmp.ot.awaitInitialConsent(function(consent_model) { cmp.ot.addOnConsentChangedHandler(function() { cmp.ot.targetingAllowed(function(allowed) { if (allowed) { hidePrivacyMessage(); activateGatedScripts(); } else { showPrivacyMessage(); } }); }); }); });