/* Single Event Series (The Events Calendar Pro) — pairs with the
   tribe_event_series-hero-section additions in page-hero.css, which give
   this template the same navy Page Hero banner used by Pages and single
   Events. This file fixes the content area BELOW that hero. */

/* Same root cause already fixed for single Events in events-single.css:
   Kadence's own #kadence-global-inline-css prints
   ".content-bg, body.content-style-unboxed .site { background:
   var(--global-palette2); }" sitewide (specificity 0,1,0) from its Content
   Background Customizer setting. Normal pages/posts get a more specific
   rule elsewhere that repaints .content-bg back to white, but the Series
   single template's wrapper never receives that override, so Kadence's raw
   global-palette2 (#1c5482, dark navy) shows through unmasked — confirmed
   live via elementsFromPoint: the article's own background-color computed
   to rgb(28, 84, 130), the exact same value as the (now invisible)
   .entry-title text color, plus washed-out low-contrast text throughout the
   embedded Events Calendar widget and the "ideal audience" callout box,
   both of which assume a white background.
   .tribe_event_series.content-bg (0,2,0) is a compound selector built from
   two classes already present on this exact element (confirmed live via
   getComputedStyle: <article id="post-8675" class="entry content-bg
   single-entry post-8675 tribe_event_series type-tribe_event_series
   status-publish hentry">), which outranks Kadence's bare .content-bg rule
   without !important and without touching that selector's other site-wide
   uses. */
.tribe_event_series.content-bg {
	background: none;
}
