/*
Theme Name: Champion
Author: Neil Betrue
Description: Champion theme developed for RiverScene Magazine.
Version: 3.0
Text Domain: champion
*/

/* =========================================================
   1. BASE / VARIABLES
========================================================= */
:root {
    --brand: #ed2024;
    --brand-2: #ff8a00;
    --ink: #101827;
    --muted: #64748b;
    --soft-bg: #ffffff;
    --dark-bg: #080b12;
    --dark-card: #111827;
    --card-radius: 24px;
    --shadow: 0 20px 50px rgba(15, 23, 42, .10);
}
.rsm-legal-page {
    --rsm-legal-accent: #c61f2b;
    --rsm-legal-accent-dark: #92131d;
    --rsm-legal-ink: #15171a;
    --rsm-legal-muted: #62676f;
    --rsm-legal-border: rgba(20, 24, 31, 0.1);
    --rsm-legal-card: #ffffff;
    --rsm-legal-soft: #f5f6f8;
    background: var(--rsm-legal-soft);
    color: var(--rsm-legal-ink);
}
* { box-sizing: border-box; }

body {
    background: #fff;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
}

img { max-width: 100%; height: auto; }
a { transition: .18s ease; }

html[data-bs-theme="dark"] body {
    background: var(--dark-bg);
    color: #e8edf5;
}

html[data-bs-theme="dark"] .text-muted { color: #aeb8c7 !important; }

.wp-site-main { min-height: 60vh; }
.admin-bar .sticky-top { top: 32px; }
@media (max-width: 782px) { .admin-bar .sticky-top { top: 46px; } }

/* =========================================================
   2. HEADER / NAV / FOOTER
========================================================= */
.top-strip {
    background: #0b1020;
    color: #fff;
    font-size: .88rem;
}

.ad-header {
    background: #fff;
    border-bottom: 1px solid rgba(148, 163, 184, .22);
}

.masthead-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
}

.masthead-logo {
    flex: 0 0 245px;
    max-width: 245px;
    text-align: left;
}
.site-logo { max-width: 245px; height: auto; display: block; transition: filter .2s ease; }

/* Header ad sizing
   Large header ad recommended image: 728 x 90
   Small header ad recommended image: 300 x 90
   Both stay responsive without cropping or stretching. */
.masthead-small-ad {
    flex: 0 1 300px;
    max-width: 300px;
    min-width: 180px;
    display: flex;
    align-items: center;
}

.masthead-wide-ad {
    flex: 1 1 728px;
    min-width: 0;
    max-width: 728px;
    margin-left: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.ad-img,
.small-ad-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    background: rgba(148,163,184,.10);
}

.ad-img {
    max-width: 728px;
    border-radius: 16px;
}

.small-ad-img {
    max-width: 300px;
    border-radius: 14px;
}

.champion-top-right-ad-img {
    display: block;
    width: 100%;
    max-width: 728px;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
    background: rgba(148,163,184,.10);
}

.navbar {
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, .08);
    border-bottom: 1px solid rgba(148, 163, 184, .18);
}
.navbar .container { min-height: 58px; }
.navbar-nav { gap: .75rem; }
.navbar .nav-link,
.nav-link { font-weight: 800; letter-spacing: -.01em; }
.navbar .nav-link { padding-top: .9rem; padding-bottom: .9rem; }
.current-menu-item > a,
.current_page_item > a { color: var(--brand) !important; }

.dropdown-menu {
    border: 0;
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, .16);
    padding: .7rem;
}
.dropdown-item {
    border-radius: 12px;
    font-weight: 650;
    padding: .72rem .9rem;
}
.dropdown-item:hover { background: rgba(255, 67, 9, .1); color: var(--brand); }

.icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, .35);
    display: inline-grid;
    place-items: center;
    background: transparent;
    color: inherit;
    transition: .18s ease;
}
.icon-btn:hover {
    transform: translateY(-1px);
    background: rgba(255,67,9,.10);
    color: var(--brand);
    border-color: rgba(255,67,9,.35);
}

.btn-brand {
    background: var(--brand);
    color: #fff;
    border: 0;
    font-weight: 900;
}
.btn-brand:hover { background: #cf3505; color: #fff; }

.footer { background: #06080d; color: #cbd5e1; }
.footer a { color: #cbd5e1; text-decoration: none; }
.footer a:hover { color: #fff; }

html[data-bs-theme="dark"] .ad-header,
html[data-bs-theme="dark"] .navbar,
html[data-bs-theme="dark"] .modal-content {
    background-color: var(--dark-card) !important;
    color: #e8edf5;
    box-shadow: 0 20px 55px rgba(0,0,0,.35);
}
html[data-bs-theme="dark"] .site-logo { filter: brightness(0) invert(1); }

@media (min-width: 992px) {
    .dropdown:hover > .dropdown-menu { display: block; margin-top: 0; }
}
@media (max-width: 991.98px) {
    .masthead-row {
        display: block;
        width: 100%;
    }

    .masthead-logo,
    .masthead-small-ad {
        display: none !important;
    }

    .masthead-wide-ad,
    .champion-mobile-top-ad {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        margin-left: 0 !important;
    }

    .champion-top-right-ad-img {
        display: block !important;
        width: 100% !important;
        max-width: 728px !important;
        height: auto !important;
        max-height: none !important;
        margin-left: auto !important;
        margin-right: auto !important;
        object-fit: contain !important;
        border-radius: 14px;
    }

    .site-logo { max-width: 220px; }
}

/* =========================================================
   3. SHARED CARDS / BADGES / PAGE HEADERS
========================================================= */
.hero-card,
.story-card,
.side-card,
.event-card,
.feature-panel,
.newsletter-card,
.post-card,
.content-card,
.sidebar-card,
.comment-card,
.calendar-panel,
.event-filter-card,
.event-card-clean,
.event-list-card,
.empty-state-card {
    border: 0;
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #fff;
}

html[data-bs-theme="dark"] .hero-card,
html[data-bs-theme="dark"] .story-card,
html[data-bs-theme="dark"] .side-card,
html[data-bs-theme="dark"] .event-card,
html[data-bs-theme="dark"] .feature-panel,
html[data-bs-theme="dark"] .newsletter-card,
html[data-bs-theme="dark"] .post-card,
html[data-bs-theme="dark"] .content-card,
html[data-bs-theme="dark"] .sidebar-card,
html[data-bs-theme="dark"] .comment-card,
html[data-bs-theme="dark"] .calendar-panel,
html[data-bs-theme="dark"] .event-filter-card,
html[data-bs-theme="dark"] .event-card-clean,
html[data-bs-theme="dark"] .event-list-card,
html[data-bs-theme="dark"] .empty-state-card {
    background-color: var(--dark-card) !important;
    color: #e8edf5;
    box-shadow: 0 20px 55px rgba(0,0,0,.35);
}

.category-badge,
.hero-badge {
    background: var(--brand);
    color: #fff;
    border-radius: 999px;
    font-size: .74rem;
    font-weight: 950;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: .42rem .75rem;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
}

.soft-badge {
    background: rgba(255,255,255,.16);
    color: #fff;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    padding: .45rem .78rem;
    font-weight: 800;
    display: inline-flex;
    gap: .35rem;
    align-items: center;
}

.soft-pill {
    border: 1px solid rgba(148,163,184,.35);
    border-radius: 999px;
    padding: .42rem .75rem;
    font-weight: 800;
    color: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}
.soft-pill:hover { border-color: rgba(237,32,36,.45); color: var(--brand); background: rgba(237,32,36,.08); }
.soft-pill-light { color:#fff!important; border-color:rgba(255,255,255,.38)!important; background:rgba(255,255,255,.12)!important; backdrop-filter:blur(10px); }
.soft-pill-light:hover { background: rgba(237,32,36,.9)!important; border-color: rgba(237,32,36,.9)!important; color:#fff!important; }

/* Plain page header, not the blue card */
.page-hero {
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
    color: var(--ink) !important;
    padding: 3.25rem 0 2rem !important;
    min-height: 0 !important;
    border-radius: 0 !important;
}
.page-kicker {
    color: var(--brand);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 950;
    font-size: .78rem;
}
.page-title {
    font-size: clamp(2.6rem, 6vw, 5.6rem);
    line-height: .9;
    letter-spacing: -.075em;
    font-weight: 1000;
    margin-bottom: 1rem;
    color: var(--ink);
}
.page-title span { color: var(--brand); }
.page-lead { max-width: 820px; font-size: 1.15rem; color: var(--muted); }
html[data-bs-theme="dark"] .page-hero,
html[data-bs-theme="dark"] .page-title { color: #e8edf5 !important; }

.event-top-ad { max-width: 970px; margin: 0 auto 2.25rem; }
.event-top-ad img { width: 100%; display: block; border-radius: var(--card-radius); box-shadow: 0 18px 44px rgba(15,23,42,.12); }

.section-title { letter-spacing: -.045em; font-weight: 1000; }
.section-title span { color: var(--brand); }
.meta-row { font-weight: 700; color: var(--muted); }
.meta-row a { color: inherit; text-decoration: none; }
.meta-row a:hover { color: var(--brand); }

/* =========================================================
   4. HOME / STORY CARDS / CAROUSEL
========================================================= */
.hero-card {
    min-height: 620px;
    background: linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.58) 43%, rgba(0,0,0,.12) 100%), url('https://riverscenemagazine.com/wp-content/uploads/2024/07/collegelhc8-2.jpg') center/cover;
    color: #fff;
    position: relative;
}
.hero-card::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 8px;
    background: linear-gradient(90deg, var(--brand), var(--brand-2));
}
.hero-content { max-width: 760px; position: relative; z-index: 1; }
.hero-title { font-size: clamp(2.55rem, 6vw, 5.7rem); line-height: .92; letter-spacing: -.075em; font-weight: 1000; }
.story-img { height: 230px; object-fit: cover; width: 100%; }
.mini-img { width: 104px; height: 88px; object-fit: cover; border-radius: 17px; }
.icon-circle { width:46px; height:46px; border-radius:15px; display:grid; place-items:center; background:rgba(237,32,36,.1); color:var(--brand); font-size:1.25rem; }
.feature-panel { background: linear-gradient(135deg, rgba(255,67,9,.12), rgba(255,138,0,.06)); border: 1px solid rgba(255,67,9,.18); }

#latest,
#latest .row,
#latest [class*="col-"],
#latest .recent-header-grid,
#latest .recent-header-main,
#latest .recent-carousel-shell,
#latest .recent-carousel-track,
#latest .recent-story-item {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}
.recent-header-grid { display:grid; grid-template-columns:minmax(0,2fr) minmax(280px,1fr); gap:1.5rem; align-items:end; margin-bottom:1.5rem; }
.recent-header-main { display:flex; justify-content:space-between; align-items:end; gap:1rem; flex-wrap:wrap; }
.recent-header-actions { display:flex; align-items:center; gap:.6rem; }
.recent-carousel-shell { position:relative; overflow:visible!important; margin-left:-12px!important; margin-right:-12px!important; padding:0!important; border-radius:0!important; }
.recent-carousel-viewport { overflow:hidden!important; background:transparent!important; border:0!important; box-shadow:none!important; border-radius:0!important; padding:18px 0 24px!important; margin:-18px 0 -24px!important; }
.recent-carousel-track { display:flex!important; gap:0!important; transition:transform .65s cubic-bezier(.22,1,.36,1); will-change:transform; }
.recent-story-item { flex:0 0 50%; max-width:50%; padding-left:12px!important; padding-right:12px!important; }
.recent-story-item .story-card,
.recent-story-item .card { background:#fff!important; color:var(--ink)!important; border-radius:var(--card-radius)!important; overflow:hidden!important; border:1px solid rgba(15,23,42,.055)!important; box-shadow:0 8px 10px rgba(15,23,42,.085)!important; }
.recent-story-item .card-body { background:#fff!important; color:var(--ink)!important; padding:1.35rem!important; }
.recent-story-img { width:100%!important; height:185px!important; object-fit:cover!important; display:block!important; background:transparent!important; }
.carousel-arrow { width:42px; height:42px; border-radius:999px; border:1px solid rgba(148,163,184,.35); display:inline-grid; place-items:center; background:#fff; color:var(--ink); box-shadow:0 10px 24px rgba(15,23,42,.08); transition:.18s ease; }
.carousel-arrow:hover { background:var(--brand); color:#fff; border-color:var(--brand); transform:translateY(-1px); }
.recent-dot { width:9px; height:9px; border-radius:999px; border:0; background:rgba(148,163,184,.65); padding:0; transition:.2s ease; }
.recent-dot.active { width:28px; background:var(--brand); }
.recent-dots { display:flex; gap:.45rem; justify-content:center; margin-top:1rem; }
.recent-ad-card,
.recent-ad-inner { background:transparent!important; box-shadow:none!important; border:0!important; padding:0!important; margin:0!important; height:auto!important; min-height:0!important; overflow:visible!important; border-radius:var(--card-radius)!important; }
.recent-ad-img { width:100%!important; height:auto!important; object-fit:contain!important; display:block!important; background:transparent!important; box-shadow:none!important; border:0!important; border-radius:var(--card-radius)!important; }

@media (max-width: 1199.98px) { .recent-header-grid { grid-template-columns: 1fr; } }
@media (max-width: 991.98px) { .hero-card { min-height:560px; background-position:center; } }
@media (max-width: 767.98px) {
    .recent-carousel-shell { margin-left:0!important; margin-right:0!important; }
    .recent-story-item { flex-basis:100%; max-width:100%; padding-left:0!important; padding-right:0!important; }
    .recent-story-img { height:190px!important; }
}
html[data-bs-theme="dark"] .recent-story-item .story-card,
html[data-bs-theme="dark"] .recent-story-item .card,
html[data-bs-theme="dark"] .recent-story-item .card-body,
html[data-bs-theme="dark"] .carousel-arrow { background:var(--dark-card)!important; color:#e8edf5!important; }

/* =========================================================
   5. INDEX / ARCHIVE POST CARDS / SIDEBAR / WIDGETS
========================================================= */
.story-card-image-wrap { display:block; height:235px; overflow:hidden; background:#f1f5f9; }
.story-card-image { width:100%; height:100%; object-fit:cover; transition:transform .3s ease; }
.story-card:hover .story-card-image { transform:scale(1.05); }
.story-card-placeholder { height:100%; display:grid; place-items:center; color:#94a3b8; font-size:3rem; }
.story-card-body { padding:24px; }
.story-meta { display:flex; flex-wrap:wrap; gap:12px; font-size:.78rem; font-weight:700; color:var(--muted); }
.story-card-title { font-size:1.25rem; line-height:1.25; font-weight:900; margin-bottom:12px; }
.story-card-title a,
.sidebar-story,
.story-read-more { color:inherit; text-decoration:none; }
.story-card-title a:hover,
.story-read-more:hover,
.sidebar-story:hover strong { color:var(--brand); }
.story-card-excerpt { color:var(--muted); font-size:.95rem; line-height:1.6; margin-bottom:18px; }
.story-read-more { font-weight:900; color:var(--brand); }
.news-sidebar { top:110px; }
.sidebar-card { padding:22px; margin-bottom:24px; }
.sidebar-title { font-size:1.1rem; font-weight:900; margin-bottom:16px; }
.sidebar-story-list { display:grid; gap:14px; }
.sidebar-story { display:grid; grid-template-columns:74px 1fr; gap:12px; align-items:center; }
.sidebar-story-thumb { width:74px; height:64px; border-radius:16px; overflow:hidden; background:#f1f5f9; display:grid; place-items:center; color:#94a3b8; }
.sidebar-story-thumb img { width:100%; height:100%; object-fit:cover; }
.sidebar-story strong { display:block; font-size:.92rem; line-height:1.3; }
.sidebar-story span { display:block; margin-top:4px; color:var(--muted); font-size:.78rem; font-weight:700; }
.category-pills { display:flex; flex-wrap:wrap; gap:10px; list-style:none; padding:0; margin:0; }
.category-pills li { list-style:none; }
.category-pills a { display:inline-flex; align-items:center; border-radius:999px; padding:8px 12px; background:#f1f5f9; color:#334155; text-decoration:none; font-weight:800; font-size:.82rem; }
.directory-card { background:linear-gradient(135deg,#fff8dd,#fff); }

.sidebar-card .widget-title,
.footer-widget-title { letter-spacing:-.025em; }
.footer-widget ul,
.sidebar-card ul { list-style:none; padding-left:0; margin-bottom:0; }
.footer-widget li,
.sidebar-card li { margin-bottom:.55rem; }
.footer-widget a,
.sidebar-card a { text-decoration:none; }
.footer-widget a:hover,
.sidebar-card a:hover { color:var(--brand); }
.champion-recent-post { padding:.65rem; border-radius:18px; transition:.18s ease; }
.champion-recent-post:hover { background:rgba(237,32,36,.08); transform:translateY(-1px); }
.recent-thumb { width:86px; height:72px; object-fit:cover; border-radius:16px; flex:0 0 auto; background:rgba(148,163,184,.12); }
.champion-recent-title { font-size:.98rem; color:inherit; }

/* Pagination */
.champion-pagination .nav-links,
.champion-pagination .page-numbers,
.champion-pagination .pagination { display:flex; flex-wrap:wrap; gap:10px; align-items:center; justify-content:center; list-style:none; padding-left:0; }
.champion-pagination .page-numbers li { list-style:none; }
.champion-pagination .page-numbers,
.champion-pagination .page-link,
.champion-pagination a,
.champion-pagination span.current { min-width:42px; min-height:42px; padding:.65rem 1rem; border-radius:999px!important; display:inline-flex; align-items:center; justify-content:center; border:1px solid rgba(148,163,184,.3); background:#fff; color:#334155; text-decoration:none; font-weight:900; }
.champion-pagination .current,
.champion-pagination a:hover,
.champion-pagination .page-link:hover { background:var(--brand); color:#fff; border-color:var(--brand); }

@media (max-width: 991.98px) { .news-sidebar, .sticky-lg-top { position: static !important; } }

/* =========================================================
   6. SINGLE POST / CONTENT
========================================================= */
.story-title { font-size:clamp(2.2rem,5vw,4.85rem); line-height:.94; letter-spacing:-.07em; font-weight:1000; }
.story-hero-card { position:relative; overflow:hidden; border-radius:var(--card-radius); box-shadow:var(--shadow); background:#000!important; }
.story-hero-card .story-hero { width:100%; height:min(62vw,620px); min-height:420px; object-fit:cover; display:block; transform:scale(1.01); }
.story-hero-overlay { position:absolute; inset:0; display:flex; align-items:flex-end; padding:clamp(1.5rem,4vw,3rem); background:linear-gradient(90deg,rgba(0,0,0,.82) 0%,rgba(0,0,0,.52) 46%,rgba(0,0,0,.12) 100%),linear-gradient(0deg,rgba(0,0,0,.82) 0%,rgba(0,0,0,.08) 58%,rgba(0,0,0,.02) 100%); color:#fff; }
.story-hero-content { max-width:850px; position:relative; z-index:2; }
.story-hero-card .story-title { color:#fff; text-shadow:0 4px 24px rgba(0,0,0,.45); margin-bottom:1rem; }
.story-hero-card .meta-row { color:rgba(255,255,255,.86)!important; }
.story-ad-full { width:100%; background:transparent!important; border-radius:var(--card-radius)!important; box-shadow:none!important; overflow:visible!important; }
.story-ad-full img { width:100%!important; height:auto!important; display:block!important; object-fit:cover!important; background:transparent!important; border-radius:var(--card-radius)!important; box-shadow:0 14px 34px rgba(15,23,42,.13)!important; }
.content-body { font-size:1.12rem; line-height:1.82; }
.content-body > p:first-of-type::first-letter { font-size:4.2rem; float:left; line-height:.78; font-weight:1000; color:var(--brand); padding:.18rem .45rem 0 0; }
.content-body blockquote { border-left:6px solid var(--brand); padding:1rem 1.25rem; background:rgba(237,32,36,.07); border-radius:16px; font-size:1.35rem; font-weight:800; line-height:1.4; }
.share-panel { border-top:1px solid rgba(148,163,184,.25); margin-top:2.5rem; padding-top:2rem; }
.share-btn { width:48px; height:48px; border-radius:999px; display:inline-grid; place-items:center; color:#fff; text-decoration:none; font-size:1.25rem; transition:.2s ease; }
.share-btn:hover,.share-btn.copied { transform:translateY(-3px); color:#fff; }
.facebook { background:#1877f2; } .x-twitter { background:#111827; } .email { background:#64748b; } .linkedin { background:#0a66c2; } .copy { background:var(--brand); }
.nav-links { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:1rem; margin-bottom:1.5rem; }
.nav-previous,.nav-next { background:#fff; border-radius:var(--card-radius); box-shadow:var(--shadow); padding:1.25rem; }
.nav-next { text-align:right; }
.nav-previous a,.nav-next a { text-decoration:none; color:inherit; }
html[data-bs-theme="dark"] .nav-previous,
html[data-bs-theme="dark"] .nav-next { background:var(--dark-card); }

/* User-posted content images */
.entry-content img,
.post-content img,
.article-content img,
.single-post-content img,
.single-event-content img,
.wp-block-image img,
figure img {
    display:block;
    max-width:100%;
    height:auto;
    margin:1.75rem auto;
    border-radius:16px;
}
.wp-block-image { text-align:center; margin:2rem 0; }
.wp-block-image img { display:inline-block; }
.wp-caption,
figure.wp-caption { max-width:100%; margin:2rem auto; text-align:center; }
.wp-caption-text,
figcaption { margin-top:.75rem; color:#6b7280; font-size:.9rem; line-height:1.5; }
.entry-content iframe,
.post-content iframe,
.article-content iframe,
.single-post-content iframe,
.single-event-content iframe,
.entry-content video,
.post-content video { max-width:100%; border-radius:16px; }
.aligncenter { display:block; margin-left:auto; margin-right:auto; }
.alignleft { float:left; margin:0 1.5rem 1rem 0; }
.alignright { float:right; margin:0 0 1rem 1.5rem; }

.comment-card .comment-reply-title,
.comment-card .comments-title { font-weight:1000; letter-spacing:-.04em; }
.comment-card input,
.comment-card textarea { border-radius:16px; border-color:rgba(148,163,184,.35); }
.comment-card .submit { background:var(--brand); color:#fff; border:0; border-radius:999px; padding:.75rem 1.4rem; font-weight:900; }
.comment-avatar { width:52px; height:52px; border-radius:18px; background:linear-gradient(135deg,var(--brand),var(--brand-2)); display:grid; place-items:center; color:#fff; font-weight:1000; }

@media(max-width:767.98px){
    .story-hero-card .story-hero{min-height:520px;height:520px;}
    .story-hero-overlay{background:linear-gradient(0deg,rgba(0,0,0,.88) 0%,rgba(0,0,0,.38) 72%,rgba(0,0,0,.12) 100%);}
    .story-hero-card .story-title{font-size:clamp(2rem,10vw,3rem);}
    .nav-links{grid-template-columns:1fr;}
    .nav-next{text-align:left;}
    .alignleft,.alignright{float:none; display:block; margin:1.5rem auto;}
}

/* =========================================================
   7. ADS / ROTATING ADS
========================================================= */
.rotating-ad { position:relative; border-radius:22px; overflow:hidden; background:transparent; }
.rotating-ad img { display:block; width:100%; height:auto; max-width:100%; opacity:0; animation:adSwap 20s infinite; }
.rotating-ad img:not(:first-of-type) { position:absolute; inset:0; }
.rotating-ad img:nth-of-type(1) { animation-delay:0s; }
.rotating-ad img:nth-of-type(2) { animation-delay:5s; }
.rotating-ad img:nth-of-type(3) { animation-delay:10s; }
.rotating-ad img:nth-of-type(4) { animation-delay:15s; }
@keyframes adSwap { 0%{opacity:0;} 4%,24%{opacity:1;} 28%,100%{opacity:0;} }
.ad-label { position:absolute; top:12px; left:12px; background:rgba(0,0,0,.65); color:#fff; border-radius:999px; padding:.35rem .7rem; font-size:.72rem; font-weight:900; z-index:2; backdrop-filter:blur(8px); }

/* =========================================================
   8. EVENTS ARCHIVE - MATCHES EVENTS LIST HTML
========================================================= */
.champion-events-archive { background:#fff; }
.champion-events-archive .event-filter-card { padding:1rem; margin-bottom:1.5rem; }
.champion-events-archive .event-search-input { min-height:56px; border-radius:999px; border:1px solid rgba(148,163,184,.35); padding-left:1.25rem; }
.champion-events-archive .event-list-card { display:block!important; background:#fff; border:0; border-radius:var(--card-radius); box-shadow:var(--shadow); overflow:hidden; }
.champion-events-archive .event-list-heading { padding:1.5rem; border-bottom:1px solid rgba(148,163,184,.22); }
.champion-events-archive .event-list-heading .section-title { font-size:clamp(1.8rem,3vw,2.35rem); line-height:1.08; }

.champion-events-archive .event-row-image {
    display:grid!important;
    grid-template-columns:180px 86px minmax(0,1fr) 150px!important;
    align-items:center!important;
    gap:1.5rem!important;
    padding:1.35rem;
    border-bottom:1px solid rgba(148,163,184,.22);
    transition:.18s ease;
}
.champion-events-archive .event-row-image:hover { background:rgba(237,32,36,.035); }
.champion-events-archive .event-row-image:last-child { border-bottom:0; }
.champion-events-archive .event-thumb-link { display:block; width:180px!important; max-width:180px!important; }
.champion-events-archive .event-thumb { width:100%; height:132px; object-fit:cover; border-radius:22px; box-shadow:0 10px 24px rgba(15,23,42,.10); display:block; }
.champion-events-archive .event-date-box { width:86px; height:86px; border-radius:22px; display:grid; place-items:center; color:#fff; background:linear-gradient(135deg,var(--brand),var(--brand-2)); box-shadow:0 14px 26px rgba(237,32,36,.23); font-weight:1000; line-height:1; text-align:center; }
.champion-events-archive .event-date-box small { display:block; text-transform:uppercase; letter-spacing:.08em; font-size:.72rem; }
.champion-events-archive .event-date-box span { display:block; font-size:2rem; }
.champion-events-archive .event-content { min-width:0!important; width:auto!important; }
.champion-events-archive .event-title { font-size:1.35rem; font-weight:1000; letter-spacing:-.035em; margin-bottom:.25rem; line-height:1.15; white-space:normal!important; word-break:normal!important; overflow-wrap:normal!important; }
.champion-events-archive .event-title a { color:inherit; text-decoration:none; }
.champion-events-archive .event-title a:hover { color:var(--brand); }
.champion-events-archive .event-meta { display:flex; flex-wrap:wrap; gap:.85rem; color:var(--muted); font-weight:750; font-size:.92rem; }
.champion-events-archive .event-excerpt { color:var(--muted); margin:.65rem 0 0; max-width:720px; }
.champion-events-archive .event-action { width:150px!important; }
.champion-events-archive .event-action .btn { white-space:nowrap; }
.champion-events-archive .featured-event-img { max-height:250px; object-fit:cover; }

html[data-bs-theme="dark"] .champion-events-archive { background:var(--dark-bg); }
html[data-bs-theme="dark"] .champion-events-archive .event-row-image:hover { background:rgba(237,32,36,.08); }

@media(max-width:991.98px){
    .champion-events-archive .event-row-image { grid-template-columns:130px 70px minmax(0,1fr)!important; gap:1rem!important; align-items:start!important; }
    .champion-events-archive .event-thumb-link { width:130px!important; max-width:130px!important; }
    .champion-events-archive .event-thumb { height:120px; }
    .champion-events-archive .event-date-box { width:70px; height:70px; }
    .champion-events-archive .event-date-box span { font-size:1.5rem; }
    .champion-events-archive .event-action { grid-column:3; width:auto!important; margin-top:.5rem; }
}
@media(max-width:575.98px){
    .champion-events-archive .event-row-image { display:block!important; }
    .champion-events-archive .event-thumb-link { width:100%!important; max-width:100%!important; }
    .champion-events-archive .event-thumb { width:100%; height:210px; margin-bottom:1rem; }
    .champion-events-archive .event-date-box { margin-bottom:1rem; }
    .champion-events-archive .event-action { width:100%!important; margin-top:1rem; }
}

/* =========================================================
   9. EVENT SINGLE
========================================================= */
.event-detail-hero { width:100%; height:min(58vw,560px); min-height:360px; object-fit:cover; display:block; }
.event-detail-title { font-size:clamp(2.3rem,5vw,4.8rem); line-height:.93; letter-spacing:-.07em; font-weight:1000; }
.event-detail-datebox { width:96px; height:96px; border-radius:24px; display:grid; place-items:center; color:#fff; background:linear-gradient(135deg,var(--brand),var(--brand-2)); font-weight:1000; line-height:1; text-align:center; box-shadow:0 14px 26px rgba(237,32,36,.23); flex:0 0 auto; }
.event-detail-datebox small { display:block; text-transform:uppercase; letter-spacing:.08em; font-size:.76rem; }
.event-detail-datebox span { display:block; font-size:2.2rem; }
.event-detail-body { font-size:1.12rem; line-height:1.8; color:#334155; }
.detail-item { display:flex; gap:.85rem; padding:1rem 0; border-bottom:1px solid rgba(148,163,184,.22); }
.detail-item:last-child { border-bottom:0; }
.detail-icon { width:44px; height:44px; border-radius:15px; display:grid; place-items:center; background:rgba(237,32,36,.10); color:var(--brand); flex:0 0 auto; font-size:1.15rem; }
.event-detail-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:1rem; }
.event-info-tile { display:flex; gap:1rem; align-items:center; padding:1rem; border:1px solid rgba(148,163,184,.22); border-radius:20px; background:rgba(148,163,184,.06); }
html[data-bs-theme="dark"] .event-detail-body { color:#cbd5e1; }
@media(max-width:991.98px){ .event-detail-grid { grid-template-columns:1fr; } }
@media(max-width:575.98px){ .event-detail-hero { min-height:300px; height:330px; } }

/* =========================================================
   10. EVENT CALENDAR PAGE
========================================================= */
.champion-calendar-html-match { background:#fff; color:var(--ink); }
.event-calendar-header { background:transparent!important; padding:40px 0 30px; }
.event-calendar-header .page-title { font-size:clamp(2.5rem,5vw,5rem); font-weight:1000; letter-spacing:-.05em; color:var(--ink); margin-bottom:10px; }
.event-calendar-header .page-kicker { color:var(--brand); font-weight:900; text-transform:uppercase; letter-spacing:.08em; }
.event-calendar-header .page-lead { max-width:700px; margin:auto; color:var(--muted); }

.calendar-toolbar { display:flex; align-items:center; justify-content:space-between; gap:1rem; flex-wrap:wrap; padding:1.4rem; border-bottom:1px solid rgba(148,163,184,.22); }
.calendar-month-title { font-size:clamp(1.8rem,3vw,2.8rem); letter-spacing:-.055em; font-weight:1000; margin:0; }
.calendar-grid { display:grid; grid-template-columns:repeat(7,minmax(0,1fr)); background:rgba(148,163,184,.18); gap:1px; }
.calendar-day-name { background:#101827; color:#fff; padding:.85rem .5rem; text-align:center; font-weight:900; font-size:.82rem; text-transform:uppercase; letter-spacing:.06em; }
.calendar-cell { background:#fff; min-height:190px; padding:.8rem; position:relative; min-width:0; overflow:hidden; display:flex; flex-direction:column; align-items:stretch; }
.calendar-cell.muted { background:#f8fafc; color:#94a3b8; }
.calendar-cell.today .day-number { background:var(--brand); color:#fff; }
.day-number { width:32px; height:32px; display:inline-grid; place-items:center; border-radius:999px; font-weight:950; margin-bottom:.5rem; flex:0 0 auto; }
.calendar-event { display:block; text-align:left; border:0; width:100%; max-width:100%; box-sizing:border-box; white-space:normal; overflow-wrap:anywhere; color:inherit; border-radius:12px; padding:.38rem .48rem; margin-top:.35rem; font-size:.72rem; line-height:1.15; font-weight:850; background:rgba(237,32,36,.09); border-left:4px solid var(--brand); transition:.18s ease; text-decoration:none; }
.calendar-event:hover { transform:translateY(-1px); background:rgba(237,32,36,.14); color:var(--brand); }
.mobile-event-list { display:none; }
.mobile-day-card { background:#fff; border-radius:22px; box-shadow:0 10px 28px rgba(15,23,42,.08); border:1px solid rgba(148,163,184,.18); padding:1rem; margin-bottom:1rem; }
.mobile-day-head { display:flex; align-items:center; gap:.85rem; margin-bottom:.75rem; }
.mobile-date-bubble { width:58px; height:58px; border-radius:18px; display:grid; place-items:center; color:#fff; background:linear-gradient(135deg,var(--brand),var(--brand-2)); font-weight:1000; line-height:1; text-align:center; flex:0 0 auto; }
.mobile-date-bubble small { display:block; text-transform:uppercase; font-size:.66rem; letter-spacing:.08em; }
.mobile-date-bubble span { display:block; font-size:1.45rem; }
.mobile-event-pill { display:block; width:100%; text-align:left; border:0; color:inherit; padding:.75rem .85rem; border-radius:16px; background:rgba(237,32,36,.07); border:1px solid rgba(237,32,36,.10); font-weight:850; margin-top:.5rem; text-decoration:none; }
.event-popup-img { width:100%; height:260px; object-fit:cover; border-radius:24px; box-shadow:0 14px 34px rgba(15,23,42,.16); }
.event-popup-date { width:86px; height:86px; border-radius:22px; display:grid; place-items:center; color:#fff; background:linear-gradient(135deg,var(--brand),var(--brand-2)); font-weight:1000; line-height:1; text-align:center; box-shadow:0 14px 26px rgba(237,32,36,.23); flex:0 0 auto; }
.event-popup-date small { display:block; text-transform:uppercase; letter-spacing:.08em; font-size:.72rem; }
.event-popup-date span { display:block; font-size:2rem; }
html[data-bs-theme="dark"] .champion-calendar-html-match { background:var(--dark-bg); color:#e8edf5; }
html[data-bs-theme="dark"] .event-calendar-header .page-title { color:#fff; }
html[data-bs-theme="dark"] .calendar-cell,
html[data-bs-theme="dark"] .mobile-day-card { background:var(--dark-card)!important; color:#e8edf5; box-shadow:0 20px 55px rgba(0,0,0,.35); }
html[data-bs-theme="dark"] .calendar-cell.muted { background:#0b1220; color:#64748b; }
@media(max-width:991.98px){ .calendar-desktop-wrap { display:none; } .mobile-event-list { display:block; } .calendar-grid { display:none!important; } }
@media(max-width:575.98px){ .event-popup-img { height:210px; } }

/* =========================================================
   11. FORMS / SEARCH MODAL
========================================================= */
.form-control,
.event-search-input,
.modal-search-input { border-radius:16px; border-color:rgba(148,163,184,.35); }
.modal-search-input { border-radius:999px; min-height:64px; font-size:1.2rem; padding-left:1.5rem; }



/* Mobile navbar logo uses image, not site title text */
.navbar-mobile-logo {
    display: inline-flex;
    align-items: center;
    max-width: 190px;
    padding: 0;
}

.navbar-mobile-logo img,
.navbar-mobile-logo .custom-logo,
.navbar-mobile-logo .site-logo {
    display: block;
    width: auto !important;
    max-width: 190px !important;
    height: auto !important;
    max-height: 52px !important;
    object-fit: contain !important;
}

/* =========================================================
   Contact Page Template
   Uses same light/dark pattern as archive/template pages
========================================================= */
.champion-contact-page {
    background: #fff;
    color: var(--ink);
}

/* Keep this hero matched to the archive/page header style. Do not force a dark card here. */
.champion-contact-hero {
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
    color: var(--ink) !important;
    padding: 3.25rem 0 2rem !important;
    min-height: 0 !important;
    border-radius: 0 !important;
    overflow: visible;
}

.champion-contact-hero .page-title {
    color: var(--ink) !important;
}

.champion-contact-hero .page-title span {
    color: var(--brand) !important;
}

.champion-contact-hero .page-kicker {
    color: var(--brand) !important;
}

.champion-contact-hero .page-lead {
    color: var(--muted) !important;
}

.champion-contact-info-card,
.champion-contact-form-card {
    border: 0;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow);
    padding: 32px;
}

.champion-contact-form-card {
    background: #fff;
    color: var(--ink);
}

.champion-contact-info-card {
    background: linear-gradient(145deg, #111827, #1f2937);
    color: #e5e7eb;
    position: relative;
    overflow: hidden;
}

.champion-contact-info-card:after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -80px;
    bottom: -80px;
    background: rgba(237, 32, 36, .18);
    border-radius: 999px;
    pointer-events: none;
}

.champion-contact-info-card > * {
    position: relative;
    z-index: 2;
}

.champion-contact-info-card h2 {
    color: #fff;
    font-size: 34px;
    font-weight: 1000;
    letter-spacing: -.045em;
    margin: 18px 0 14px;
}

.champion-contact-info-card p {
    color: #d1d5db;
    font-size: 16px;
    line-height: 1.7;
}

.champion-contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand);
    color: #fff;
    border-radius: 999px;
    padding: 8px 13px;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.champion-contact-detail {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.champion-contact-detail strong,
.champion-contact-detail span,
.champion-contact-detail a {
    display: block;
}

.champion-contact-detail strong {
    color: #fff;
    font-size: 14px;
    margin-bottom: 3px;
}

.champion-contact-detail span {
    color: #d1d5db;
}

.champion-contact-detail a {
    color: #fff;
    text-decoration: none;
    font-weight: 800;
}

.champion-contact-detail a:hover {
    color: #fff;
    opacity: .86;
}

.champion-contact-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 14px;
    background: rgba(237, 32, 36, .22);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 900;
}

.champion-contact-note {
    margin-top: 18px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 18px;
    padding: 18px;
    line-height: 1.6;
    color: #e5e7eb;
}

.champion-contact-note strong {
    color: #fff;
}

.champion-contact-form-heading h2 {
    color: var(--ink);
    font-size: 32px;
    font-weight: 1000;
    letter-spacing: -.045em;
    margin: 16px 0 8px;
}

.champion-contact-form-heading p {
    color: var(--muted);
    margin-bottom: 24px;
}

.champion-contact-form label {
    display: block;
    font-weight: 900;
    color: var(--ink);
    margin-bottom: 8px;
}

.champion-contact-form label span {
    color: var(--brand);
}

.champion-contact-form label small {
    color: var(--muted);
    font-weight: 700;
}

.champion-contact-form .form-control {
    min-height: 52px;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, .45);
    background: #fff;
    color: var(--ink);
    box-shadow: none;
}

.champion-contact-form textarea.form-control {
    min-height: 170px;
}

.champion-contact-form .form-control::placeholder {
    color: #94a3b8;
}

.champion-contact-form .form-control:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 .2rem rgba(237, 32, 36, .12);
}

.champion-contact-submit {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
    font-weight: 900;
    padding-left: 32px;
    padding-right: 32px;
}

.champion-contact-submit:hover,
.champion-contact-submit:focus {
    background: #c91015;
    border-color: #c91015;
    color: #fff;
}

.champion-honeypot {
    position: absolute !important;
    left: -99999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

html[data-bs-theme="dark"] .champion-contact-page {
    background: var(--dark-bg);
    color: #e8edf5;
}

html[data-bs-theme="dark"] .champion-contact-hero,
html[data-bs-theme="dark"] .champion-contact-hero .page-title {
    color: #e8edf5 !important;
}

html[data-bs-theme="dark"] .champion-contact-hero .page-lead {
    color: #aeb8c7 !important;
}

html[data-bs-theme="dark"] .champion-contact-form-card {
    background: var(--dark-card) !important;
    color: #e8edf5;
    box-shadow: 0 20px 55px rgba(0,0,0,.35);
}

html[data-bs-theme="dark"] .champion-contact-form-heading h2,
html[data-bs-theme="dark"] .champion-contact-form label {
    color: #e8edf5;
}

html[data-bs-theme="dark"] .champion-contact-form-heading p,
html[data-bs-theme="dark"] .champion-contact-form label small {
    color: #aeb8c7;
}

html[data-bs-theme="dark"] .champion-contact-form .form-control {
    background: #0b1220;
    border-color: rgba(148, 163, 184, .28);
    color: #e8edf5;
}

html[data-bs-theme="dark"] .champion-contact-form .form-control::placeholder {
    color: #64748b;
}

html[data-bs-theme="dark"] .champion-contact-form .form-control:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 .2rem rgba(237, 32, 36, .18);
}

html[data-bs-theme="dark"] .champion-contact-info-card {
    box-shadow: 0 20px 55px rgba(0,0,0,.35);
}

html[data-bs-theme="dark"] .cf-turnstile {
    color-scheme: dark;
}

@media (max-width: 767px) {
    .champion-contact-info-card,
    .champion-contact-form-card {
        padding: 24px;
        border-radius: 20px;
    }

    .champion-contact-info-card h2,
    .champion-contact-form-heading h2 {
        font-size: 28px;
    }
}

/* =========================================================
   Submit event css
========================================================= */
.champion-submit-event-page .page-hero { padding-bottom: 2.5rem !important; }
.champion-submit-event-card h2 { font-size: clamp(1.9rem, 3vw, 2.65rem); font-weight: 1000; letter-spacing: -.055em; }
.champion-submit-event-form label { display: block; font-weight: 900; color: var(--ink); margin-bottom: 8px; }
.champion-submit-event-form label span { color: var(--brand); }
.champion-submit-event-form label small { color: var(--muted); font-weight: 750; }
.champion-submit-event-form .form-control,
.champion-submit-event-form .form-select { min-height: 52px; border-radius: 16px; border-color: rgba(148,163,184,.42); background: #fff; color: var(--ink); }
.champion-submit-event-form textarea.form-control { min-height: 190px; }
.champion-submit-event-form .form-control:focus,
.champion-submit-event-form .form-select:focus { border-color: var(--brand); box-shadow: 0 0 0 .2rem rgba(237,32,36,.12); }
.champion-field-note { color: var(--muted); font-size: .9rem; font-weight: 700; }
.champion-upload-box { background: rgba(148,163,184,.08); border: 1px solid rgba(148,163,184,.18); border-radius: 20px; padding: 18px; }
.champion-turnstile-wrap { background: rgba(148,163,184,.08); border: 1px solid rgba(148,163,184,.18); border-radius: 20px; padding: 18px; }
.champion-submit-event-side-card { background: linear-gradient(145deg, #111827, #1f2937); color: #e5e7eb; overflow: hidden; position: relative; }
.champion-submit-event-side-card h4 { color: #fff; }
.champion-submit-event-side-card .text-muted { color: #d1d5db !important; }
.champion-submit-event-checklist { list-style: none; padding-left: 0; display: grid; gap: .75rem; }
.champion-submit-event-checklist li { display: flex; gap: .55rem; align-items: center; font-weight: 800; }
.champion-submit-event-checklist i { color: var(--brand); }
.champion-honeypot { position: absolute !important; left: -99999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
html[data-bs-theme="dark"] .champion-submit-event-form label { color: #e8edf5; }
html[data-bs-theme="dark"] .champion-submit-event-form .form-control,
html[data-bs-theme="dark"] .champion-submit-event-form .form-select { background: #0b1220; color: #e8edf5; border-color: rgba(148,163,184,.28); }
html[data-bs-theme="dark"] .champion-upload-box,
html[data-bs-theme="dark"] .champion-turnstile-wrap { background: rgba(15,23,42,.7); border-color: rgba(148,163,184,.22); }
/* Submit Event - File Upload */
.champion-event-form input[type="file"],
.champion-submit-event-form input[type="file"],
.champion-file-upload {
    min-height: 52px;
    height: 52px;
    border: 1px solid #cbd5e1;
    border-radius: 14px;
    background: #fff;
    width: 100%;
    padding: 0;
    overflow: hidden;
}

.champion-event-form input[type="file"]::file-selector-button,
.champion-submit-event-form input[type="file"]::file-selector-button,
.champion-file-upload::file-selector-button {
    height: 60px;
    border: 0;
    border-right: 1px solid #cbd5e1;
    background: #f8fafc;
    padding: 0 18px;
	padding-left: 30px!important;
    font-weight: 800;
    cursor: pointer;
    margin-right: 15px;
}

.champion-event-form input[type="file"]:focus,
.champion-submit-event-form input[type="file"]:focus,
.champion-file-upload:focus {
    border-color: #ed2024;
    box-shadow: 0 0 0 .2rem rgba(237,32,36,.12);
}
/* ==========================================
   Submit Event File Upload 
========================================== */

html[data-bs-theme="dark"] input[type="file"] {
    background: var(--dark-card);
    color: #e8edf5;
    border-color: rgba(148,163,184,.25);
}

html[data-bs-theme="dark"] input[type="file"]::file-selector-button {
    background: #1f2937;
    color: #ffffff;
    border: 0;
    border-right: 1px solid rgba(148,163,184,.25);
}

html[data-bs-theme="dark"] input[type="file"]:hover::file-selector-button,
html[data-bs-theme="dark"] input[type="file"]:focus::file-selector-button,
html[data-bs-theme="dark"] input[type="file"]:active::file-selector-button {
    background: #374151;
    color: #ffffff;
}

html[data-bs-theme="dark"] input[type="file"]:hover,
html[data-bs-theme="dark"] input[type="file"]:focus {
    color: #e8edf5;
}


/* =========================================================
   Single Event Hero Image Fix
   Keep single posts untouched. Only affects single event pages.
========================================================= */
.champion-event-single .champion-event-hero-card {
    background: #000 !important;
    overflow: hidden;
}

/* Let event hero height be controlled by the uploaded image ratio instead of cropping it. */
.champion-event-single .champion-event-hero-img,
.champion-event-single .story-hero-card .story-hero.champion-event-hero-img {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    display: block !important;
    object-fit: contain !important;
    object-position: center center !important;
    transform: none !important;
}

/* Keep the cinematic text overlay, but do not force the image to a giant fixed height. */
.champion-event-single .story-hero-overlay {
    align-items: flex-end;
    padding: clamp(1.25rem, 3vw, 2.5rem);
    background:
        linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.46) 44%, rgba(0,0,0,.08) 100%),
        linear-gradient(0deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.20) 55%, rgba(0,0,0,.02) 100%);
}

@media (max-width: 767.98px) {
    .champion-event-single .story-hero-card .story-hero.champion-event-hero-img {
        height: auto !important;
        min-height: 0 !important;
    }

    .champion-event-single .story-hero-overlay {
        padding: 1.25rem;
    }
}
.single-event-hero-wrap {
    position: relative;
}

.event-hero-zoom {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    background: rgba(0,0,0,.68);
    color: #fff;
    display: grid;
    place-items: center;
    opacity: 0;
    transform: translateY(-6px);
    transition: .2s ease;
    z-index: 5;
    text-decoration: none;
}

.single-event-hero-wrap:hover .event-hero-zoom {
    opacity: 1;
    transform: translateY(0);
}

.event-hero-zoom:hover {
    background: var(--brand);
    color: #fff;
}

/* =========================================================
   Single Event Hero Zoom Modal Fix
   Only affects single event template.
========================================================= */
.champion-event-single .single-event-hero-wrap,
.champion-event-single .champion-event-hero-card {
    position: relative !important;
}

.champion-event-single .event-hero-zoom {
    position: absolute !important;
    top: 18px !important;
    right: 18px !important;
    width: 46px !important;
    height: 46px !important;
    border-radius: 999px !important;
    background: rgba(0,0,0,.72) !important;
    color: #fff !important;
    display: grid !important;
    place-items: center !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-6px) !important;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease, background .2s ease !important;
    z-index: 20 !important;
    text-decoration: none !important;
    border: 1px solid rgba(255,255,255,.18) !important;
    backdrop-filter: blur(8px);
}

.champion-event-single .event-hero-zoom i {
    color: #fff !important;
    font-size: 1.2rem;
    line-height: 1;
}

.champion-event-single .single-event-hero-wrap:hover .event-hero-zoom,
.champion-event-single .champion-event-hero-card:hover .event-hero-zoom,
.champion-event-single .event-hero-zoom:focus {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.champion-event-single .event-hero-zoom:hover {
    background: var(--brand) !important;
    color: #fff !important;
}

.champion-event-image-modal {
    z-index: 999999;
}

.champion-event-image-modal .modal-dialog {
    max-width: min(1200px, calc(100vw - 32px));
}

.champion-event-modal-img {
    width: 100%;
    height: auto;
    max-height: 88vh;
    object-fit: contain;
    background: #000;
}


/* =========================================================
   Single Post Image Zoom + Gallery
========================================================= */
.champion-single-hero-wrap { position: relative; }

.champion-image-zoom-btn {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(0,0,0,.72);
    color: #fff;
    display: grid;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: .2s ease;
    z-index: 30;
    backdrop-filter: blur(8px);
}

.champion-single-hero-wrap:hover .champion-image-zoom-btn,
.champion-image-zoom-btn:focus {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.champion-image-zoom-btn:hover {
    background: var(--brand);
    color: #fff;
}

.content-body img.champion-clickable-content-image {
    cursor: zoom-in;
    transition: transform .22s ease, box-shadow .22s ease;
}

.content-body img.champion-clickable-content-image:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(15,23,42,.18);
}

.champion-story-lightbox { z-index: 999999; }
.champion-story-lightbox .modal-dialog { max-width: min(1200px, calc(100vw - 32px)); }
.champion-story-lightbox .modal-content { position: relative; }
.champion-lightbox-img {
    width: 100%;
    height: auto;
    max-height: 88vh;
    object-fit: contain;
    background: #000;
    border-radius: 24px;
    box-shadow: 0 30px 90px rgba(0,0,0,.55);
}

.champion-lightbox-close {
    position: absolute;
    right: 0;
    top: -46px;
    z-index: 5;
}

.champion-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.2);
    background: rgba(0,0,0,.62);
    color: #fff;
    display: grid;
    place-items: center;
    z-index: 6;
    font-size: 1.35rem;
    transition: .18s ease;
}

.champion-lightbox-prev { left: 18px; }
.champion-lightbox-next { right: 18px; }
.champion-lightbox-nav:hover { background: var(--brand); color: #fff; }

.champion-lightbox-caption {
    color: #fff;
    text-align: center;
    font-weight: 800;
    margin-top: 12px;
    text-shadow: 0 2px 14px rgba(0,0,0,.65);
}

@media (max-width: 767.98px) {
    .champion-image-zoom-btn {
        opacity: 1;
        visibility: visible;
        transform: none;
        width: 42px;
        height: 42px;
    }

    .champion-lightbox-nav {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
}

/* =========================================================
   Champion Comments
========================================================= */
.champion-comments-area .comment-reply-title,
.champion-comments-title {
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    font-weight: 1000;
    letter-spacing: -.055em;
}

.champion-comment-list,
.champion-comment-list ol.children {
    list-style: none;
    padding-left: 0;
}

.champion-comment-list ol.children {
    margin-left: 42px;
    margin-top: 16px;
}

.champion-comment-card {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 16px;
    padding: 22px;
    border: 1px solid rgba(148,163,184,.22);
    border-radius: 24px;
    background: rgba(248,250,252,.82);
    margin-bottom: 16px;
}

.champion-comment-avatar-img {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    box-shadow: 0 10px 26px rgba(15,23,42,.12);
}

.champion-comment-author {
    font-size: 1rem;
    font-weight: 1000;
    color: var(--ink);
}

.champion-comment-date {
    color: var(--muted);
    font-size: .86rem;
    font-weight: 750;
    text-decoration: none;
}

.champion-comment-date:hover { color: var(--brand); }
.champion-comment-text { color: #334155; line-height: 1.75; }
.champion-comment-text p:last-child { margin-bottom: 0; }

.champion-comment-reply a {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: .45rem .8rem;
    background: rgba(237,32,36,.09);
    color: var(--brand);
    text-decoration: none;
    font-weight: 900;
    font-size: .82rem;
}

.champion-comment-reply a:hover {
    background: var(--brand);
    color: #fff;
}

.champion-comment-form {
    margin-top: 24px;
    padding: 26px;
    border: 1px solid rgba(148,163,184,.22);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(15,23,42,.06);
}

.champion-comment-form .form-control {
    min-height: 52px;
    border-radius: 16px;
    border-color: rgba(148,163,184,.42);
}

.champion-comment-form textarea.form-control { min-height: 160px; }
.champion-comment-form .form-control:focus { border-color: var(--brand); box-shadow: 0 0 0 .2rem rgba(237,32,36,.12); }
.champion-comment-turnstile { padding-top: 4px; }

html[data-bs-theme="dark"] .champion-comment-card,
html[data-bs-theme="dark"] .champion-comment-form {
    background: #0b1220;
    border-color: rgba(148,163,184,.22);
    color: #e8edf5;
}

html[data-bs-theme="dark"] .champion-comment-author,
html[data-bs-theme="dark"] .champion-comment-text,
html[data-bs-theme="dark"] .champion-comment-form label,
html[data-bs-theme="dark"] .champion-comment-form .comment-reply-title {
    color: #e8edf5;
}

html[data-bs-theme="dark"] .champion-comment-date,
html[data-bs-theme="dark"] .champion-comment-note {
    color: #aeb8c7 !important;
}

html[data-bs-theme="dark"] .champion-comment-form .form-control {
    background: #080b12;
    border-color: rgba(148,163,184,.28);
    color: #e8edf5;
}

html[data-bs-theme="dark"] .champion-comment-form .form-control::placeholder { color: #64748b; }
html[data-bs-theme="dark"] .champion-comment-turnstile { color-scheme: dark; }

@media (max-width: 575.98px) {
    .champion-comment-card {
        grid-template-columns: 1fr;
    }

    .champion-comment-list ol.children {
        margin-left: 18px;
    }
}

/* Fix comment reply title / cancel reply link */
.comment-reply-title {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.comment-reply-title small {
    display: inline-flex;
    align-items: center;
    margin-left: 0;
    font-size: .9rem;
    line-height: 1;
}

.comment-reply-title small a,
#cancel-comment-reply-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(237,32,36,.08);
    color: var(--brand);
    border: 1px solid rgba(237,32,36,.22);
    border-radius: 999px;
    padding: 7px 12px;
    font-size: .82rem;
    font-weight: 900;
    text-decoration: none;
    letter-spacing: 0;
}

#cancel-comment-reply-link:hover {
    background: var(--brand);
    color: #fff;
}

/* =========================================================
   Champion Sidebar Upgrade
   Premium sidebar cards + awesome tags
========================================================= */
.champion-sidebar-wrap {
    position: relative;
}

.champion-sidebar-stack {
    display: grid;
    gap: 0px;
}

.news-sidebar .sidebar-card,
.champion-sidebar-wrap .sidebar-card,
.champion-sidebar-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, .18) !important;
    border-radius: 26px !important;
    background:
        radial-gradient(circle at top right, rgba(237, 32, 36, .08), transparent 34%),
        linear-gradient(180deg, #ffffff, #fbfdff) !important;
    box-shadow: 0 18px 42px rgba(15, 23, 42, .08) !important;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.news-sidebar .sidebar-card::before,
.champion-sidebar-wrap .sidebar-card::before,
.champion-sidebar-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--brand), var(--brand-2));
}

.news-sidebar .sidebar-card:hover,
.champion-sidebar-wrap .sidebar-card:hover,
.champion-sidebar-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 54px rgba(15, 23, 42, .12) !important;
    border-color: rgba(237, 32, 36, .22) !important;
}
.champion-recent-post,
.sidebar-story {
    position: relative;
    padding: .72rem !important;
    border-radius: 20px !important;
    background: rgba(248, 250, 252, .72);
    border: 1px solid transparent;
    transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.champion-recent-post:hover,
.sidebar-story:hover {
    background: #fff;
    border-color: rgba(237, 32, 36, .16);
    box-shadow: 0 14px 30px rgba(15, 23, 42, .08);
    transform: translateY(-2px);
}

.recent-thumb,
.sidebar-story-thumb {
    border-radius: 18px !important;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .10);
}

.champion-recent-title,
.sidebar-story strong {
    font-weight: 950 !important;
    letter-spacing: -.02em;
}

/* Native category/list widgets */
.sidebar-card ul:not(.category-pills),
.champion-sidebar-card ul:not(.category-pills) {
    display: grid;
    gap: 9px;
}

.sidebar-card ul:not(.category-pills) li,
.champion-sidebar-card ul:not(.category-pills) li {
    margin: 0 !important;
}

.sidebar-card ul:not(.category-pills) li a,
.champion-sidebar-card ul:not(.category-pills) li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 16px;
    background: rgba(248, 250, 252, .75);
    border: 1px solid rgba(148, 163, 184, .16);
    color: #334155;
    font-weight: 850;
    text-decoration: none;
}

.sidebar-card ul:not(.category-pills) li a::after,
.champion-sidebar-card ul:not(.category-pills) li a::after {
    content: "›";
    color: var(--brand);
    font-size: 1.15rem;
    line-height: 1;
    transition: transform .18s ease;
}

.sidebar-card ul:not(.category-pills) li a:hover,
.champion-sidebar-card ul:not(.category-pills) li a:hover {
    background: rgba(237, 32, 36, .08);
    border-color: rgba(237, 32, 36, .18);
    color: var(--brand);
}

.sidebar-card ul:not(.category-pills) li a:hover::after,
.champion-sidebar-card ul:not(.category-pills) li a:hover::after {
    transform: translateX(3px);
}

/* Awesome tag cloud */
.sidebar-card .tagcloud,
.champion-sidebar-card .tagcloud,
.wp-block-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.sidebar-card .tagcloud a,
.champion-sidebar-card .tagcloud a,
.wp-block-tag-cloud a,
.category-pills a {
    position: relative;
    display: inline-flex !important;
    align-items: center;
    gap: 7px;
    padding: 9px 13px !important;
    border-radius: 999px !important;
    background:
        linear-gradient(180deg, #ffffff, #f8fafc) !important;
    border: 1px solid rgba(148, 163, 184, .26) !important;
    color: #334155 !important;
    font-size: .82rem !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    text-decoration: none !important;
    box-shadow: 0 8px 20px rgba(15, 23, 42, .055);
    overflow: hidden;
}

.sidebar-card .tagcloud a::before,
.champion-sidebar-card .tagcloud a::before,
.wp-block-tag-cloud a::before,
.category-pills a::before {
    content: "#";
    color: var(--brand);
    font-weight: 1000;
}

.sidebar-card .tagcloud a::after,
.champion-sidebar-card .tagcloud a::after,
.wp-block-tag-cloud a::after,
.category-pills a::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(237,32,36,.12), rgba(255,138,0,.10));
    opacity: 0;
    transition: opacity .18s ease;
    z-index: 0;
}

.sidebar-card .tagcloud a span,
.champion-sidebar-card .tagcloud a span,
.wp-block-tag-cloud a span,
.category-pills a span,
.sidebar-card .tagcloud a,
.champion-sidebar-card .tagcloud a,
.wp-block-tag-cloud a,
.category-pills a {
    z-index: 1;
}

.sidebar-card .tagcloud a:hover,
.champion-sidebar-card .tagcloud a:hover,
.wp-block-tag-cloud a:hover,
.category-pills a:hover {
    transform: translateY(-2px);
    border-color: rgba(237, 32, 36, .34) !important;
    color: var(--brand) !important;
    box-shadow: 0 14px 30px rgba(237, 32, 36, .12);
}

.sidebar-card .tagcloud a:hover::after,
.champion-sidebar-card .tagcloud a:hover::after,
.wp-block-tag-cloud a:hover::after,
.category-pills a:hover::after {
    opacity: 1;
}

/* Search widget polish */
.sidebar-card .wp-block-search,
.champion-sidebar-card .wp-block-search,
.sidebar-card form.search-form {
    display: grid;
    gap: 10px;
}

.sidebar-card .wp-block-search__inside-wrapper,
.champion-sidebar-card .wp-block-search__inside-wrapper {
    display: flex;
    gap: 8px;
}

.sidebar-card input[type="search"],
.champion-sidebar-card input[type="search"],
.sidebar-card .search-field {
    min-height: 48px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, .34);
    padding: 0 15px;
    width: 100%;
}

.sidebar-card .wp-block-search__button,
.champion-sidebar-card .wp-block-search__button,
.sidebar-card .search-submit {
    min-height: 48px;
    border-radius: 999px;
    border: 0;
    background: var(--brand);
    color: #fff;
    font-weight: 900;
    padding: 0 16px;
}

.sidebar-card .wp-block-search__button:hover,
.champion-sidebar-card .wp-block-search__button:hover,
.sidebar-card .search-submit:hover {
    background: #c91015;
}

html[data-bs-theme="dark"] .news-sidebar .sidebar-card,
html[data-bs-theme="dark"] .champion-sidebar-wrap .sidebar-card,
html[data-bs-theme="dark"] .champion-sidebar-card {
    background:
        radial-gradient(circle at top right, rgba(237, 32, 36, .18), transparent 36%),
        linear-gradient(180deg, #111827, #0b1220) !important;
    border-color: rgba(148, 163, 184, .18) !important;
    color: #e8edf5;
}

html[data-bs-theme="dark"] .sidebar-card .widget-title,
html[data-bs-theme="dark"] .champion-sidebar-title,
html[data-bs-theme="dark"] .sidebar-title,
html[data-bs-theme="dark"] .champion-recent-title,
html[data-bs-theme="dark"] .sidebar-story strong {
    color: #e8edf5 !important;
}

html[data-bs-theme="dark"] .champion-recent-post,
html[data-bs-theme="dark"] .sidebar-story,
html[data-bs-theme="dark"] .sidebar-card ul:not(.category-pills) li a,
html[data-bs-theme="dark"] .champion-sidebar-card ul:not(.category-pills) li a,
html[data-bs-theme="dark"] .sidebar-card .tagcloud a,
html[data-bs-theme="dark"] .champion-sidebar-card .tagcloud a,
html[data-bs-theme="dark"] .wp-block-tag-cloud a,
html[data-bs-theme="dark"] .category-pills a {
    background: rgba(15, 23, 42, .72) !important;
    border-color: rgba(148, 163, 184, .18) !important;
    color: #dbe4f0 !important;
}

html[data-bs-theme="dark"] .champion-recent-post:hover,
html[data-bs-theme="dark"] .sidebar-story:hover,
html[data-bs-theme="dark"] .sidebar-card ul:not(.category-pills) li a:hover,
html[data-bs-theme="dark"] .champion-sidebar-card ul:not(.category-pills) li a:hover,
html[data-bs-theme="dark"] .sidebar-card .tagcloud a:hover,
html[data-bs-theme="dark"] .champion-sidebar-card .tagcloud a:hover,
html[data-bs-theme="dark"] .wp-block-tag-cloud a:hover,
html[data-bs-theme="dark"] .category-pills a:hover {
    background: rgba(237, 32, 36, .12) !important;
    color: #fff !important;
}

html[data-bs-theme="dark"] .sidebar-card input[type="search"],
html[data-bs-theme="dark"] .champion-sidebar-card input[type="search"],
html[data-bs-theme="dark"] .sidebar-card .search-field {
    background: #080b12;
    color: #e8edf5;
    border-color: rgba(148, 163, 184, .25);
}

@media (max-width: 991.98px) {
    .champion-sidebar-stack {
        position: static !important;
    }
}
.sidebar-title,
.widget-title {
    border-bottom: 1px solid rgba(148,163,184,.25);
    padding-bottom: 12px;
    margin-bottom: 18px;
    font-size: 1.4rem;
    font-weight: 1000;
    position: relative;
}

.sidebar-title::after,
.widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 60px;
    height: 3px;
    background: var(--brand);
}
/* =========================================
   Champion Sponsored Ad Badge
========================================= */

.champion-sponsored-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;

    display: inline-flex;
    align-items: center;
    gap: 6px;

    padding: 5px 10px;
    border-radius: 999px;

    background: rgba(15, 23, 42, 0.88);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;

    box-shadow: 0 4px 12px rgba(0,0,0,.15);
    pointer-events: none;
}

.champion-sponsored-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ed2024;
    display: inline-block;
}
/* =========================================
   Event Details Sidebar Style
========================================= */
.event-details-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.event-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    transition: all .2s ease;
}

.event-detail-item:hover {
    border-color: #ed2024;
    box-shadow: 0 6px 18px rgba(15,23,42,.08);
}

.event-detail-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;
    background: rgba(237,32,36,.08);
    color: #ed2024;
    font-size: 1.1rem;
}

.event-detail-content {
    flex: 1;
}

.event-detail-label {
    display: block;
    margin-bottom: 3px;

    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #6b7280;
}

.event-detail-value {
    font-size: .95rem;
    font-weight: 600;
    color: #111827;
    line-height: 1.5;
}
/* =========================================
   Dark Mode - Event Details
========================================= */
html[data-bs-theme="dark"] .event-detail-item {
    background: #1b1f2a;
    border-color: rgba(255,255,255,.08);
}

html[data-bs-theme="dark"] .event-detail-item:hover {
    border-color: #ed2024;
    box-shadow: 0 8px 24px rgba(0,0,0,.35);
}

html[data-bs-theme="dark"] .event-detail-icon {
    background: rgba(237,32,36,.15);
    color: #ff5a5f;
}

html[data-bs-theme="dark"] .event-detail-label {
    color: #9ca3af;
}

html[data-bs-theme="dark"] .event-detail-value {
    color: #f8fafc;
}
/* =========================================================
   Champion Community Map Pages
========================================================= */
.champion-community-map-hero {
    min-height: 520px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: clamp(1.5rem,4vw,3rem);
    color: #fff;
}

.champion-community-map-hero-content {
    max-width: 860px;
    position: relative;
    z-index: 2;
}

.champion-community-map-lead {
    color: rgba(255,255,255,.88);
    font-size: 1.14rem;
    max-width: 760px;
}

.champion-countdown-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding: 1.25rem;
    border-radius: var(--card-radius);
    background:
        radial-gradient(circle at top right, rgba(237,32,36,.12), transparent 36%),
        #fff;
    box-shadow: var(--shadow);
}

.champion-countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(82px, 1fr));
    gap: .75rem;
}

.champion-countdown-grid div {
    min-width: 82px;
    border-radius: 20px;
    background: #101827;
    color: #fff;
    text-align: center;
    padding: .85rem .75rem;
}

.champion-countdown-grid strong {
    display: block;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    line-height: 1;
    font-weight: 1000;
}

.champion-countdown-grid span {
    display: block;
    margin-top: .35rem;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 900;
    color: rgba(255,255,255,.75);
}

.champion-community-google-map {
    width: 100%;
    height: 560px;
    border-radius: 22px;
    background: #f1f5f9;
    overflow: hidden;
}

.champion-community-list {
    display: grid;
    gap: 1rem;
}

.champion-community-list-item {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    border: 1px solid rgba(148,163,184,.22);
    border-radius: 22px;
    background: rgba(248,250,252,.72);
    transition: .18s ease;
}

.champion-community-list-item:hover {
    border-color: rgba(237,32,36,.35);
    box-shadow: 0 14px 32px rgba(15,23,42,.08);
    transform: translateY(-1px);
}

.champion-community-list-item img,
.champion-community-list-placeholder {
    width: 120px;
    height: 92px;
    border-radius: 18px;
    object-fit: cover;
    background: rgba(237,32,36,.08);
}

.champion-community-list-placeholder {
    display: grid;
    place-items: center;
    color: var(--brand);
    font-size: 2rem;
}

.champion-community-list-item h3 {
    font-size: 1.15rem;
    font-weight: 1000;
    letter-spacing: -.035em;
    margin: 0 0 .25rem;
}

.champion-community-list-item p {
    color: var(--muted);
}

.champion-community-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    color: var(--muted);
    font-size: .86rem;
    font-weight: 800;
    margin-bottom: .5rem;
}

.champion-community-description {
    font-size: .95rem;
    line-height: 1.6;
}

.champion-map-sidebar {
    top: 110px;
    display: grid;
    gap: 1rem;
}

.champion-map-submit-card,
.champion-map-vote-card {
    padding: 24px;
}

.champion-map-submit-card h3,
.champion-map-vote-card h3 {
    font-weight: 1000;
    letter-spacing: -.045em;
}

.champion-vote-category-list {
    display: grid;
    gap: .55rem;
}

.champion-vote-category-list span {
    display: flex;
    align-items: center;
    padding: .75rem .85rem;
    border-radius: 16px;
    background: rgba(237,32,36,.08);
    color: var(--ink);
    font-weight: 850;
}

.champion-map-info-window {
    max-width: 275px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.champion-map-info-window img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 10px;
}

.champion-map-info-window h3 {
    margin: 0 0 6px;
    font-size: 1rem;
    font-weight: 900;
}

.champion-map-info-window p {
    margin: 0 0 7px;
    color: #475569;
    line-height: 1.45;
}

.champion-map-info-window a {
    color: #ed2024;
    font-weight: 900;
    text-decoration: none;
}

/* Simple snow for Christmas page, auto stops after 15 seconds by JS */
.champion-snow-wrap {
    pointer-events: none;
    position: fixed;
    inset: 0;
    z-index: 9998;
    overflow: hidden;
}

.champion-snowflake {
    position: absolute;
    top: -20px;
    color: rgba(255,255,255,.9);
    text-shadow: 0 2px 8px rgba(0,0,0,.25);
    animation-name: championSnowFall;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes championSnowFall {
    to { transform: translate3d(var(--snow-drift), 110vh, 0) rotate(360deg); }
}

html[data-bs-theme="dark"] .champion-countdown-card,
html[data-bs-theme="dark"] .champion-community-map-card,
html[data-bs-theme="dark"] .champion-community-list-item {
    background: var(--dark-card) !important;
    color: #e8edf5;
}

html[data-bs-theme="dark"] .champion-community-list-item {
    border-color: rgba(148,163,184,.22);
}

html[data-bs-theme="dark"] .champion-community-list-item p,
html[data-bs-theme="dark"] .champion-community-meta,
html[data-bs-theme="dark"] .champion-community-description {
    color: #aeb8c7;
}

html[data-bs-theme="dark"] .champion-vote-category-list span {
    background: rgba(237,32,36,.13);
    color: #e8edf5;
}

@media (max-width: 991.98px) {
    .champion-countdown-card { align-items: stretch; flex-direction: column; }
    .champion-countdown-grid { width: 100%; }
    .champion-map-sidebar { position: static !important; }
}

@media (max-width: 767.98px) {
    .champion-community-map-hero { min-height: 460px; }
    .champion-community-google-map { height: 460px; }
    .champion-community-list-item { grid-template-columns: 1fr; }
    .champion-community-list-item img,
    .champion-community-list-placeholder { width: 100%; height: 190px; }
    .champion-map-focus-btn { width: 100%; }
}

@media (max-width: 575.98px) {
    .champion-countdown-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

/* JS-dependent focus state */
.champion-community-list-item.is-map-focused {
    border-color: var(--brand);
    box-shadow: 0 16px 36px rgba(237,32,36,.14);
}

/* =========================================================
   Cookie Consent + Accessibility Helpers
========================================================= */
.champion-skip-link {
    position: absolute;
    left: 12px;
    top: -80px;
    z-index: 1000000;
    background: var(--brand);
    color: #fff;
    padding: 12px 18px;
    border-radius: 0 0 12px 12px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(15,23,42,.22);
}

.champion-skip-link:focus {
    top: 0;
    color: #fff;
    outline: 3px solid #fff;
    outline-offset: 2px;
}

#championCookieBanner.champion-cookie-banner {
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    max-width: none !important;
    z-index: 2147483000 !important;
    background: linear-gradient(135deg, #0b1020 0%, #111827 55%, #1f2937 100%) !important;
    color: #fff !important;
    border-top: 5px solid var(--brand) !important;
    box-shadow: 0 -18px 55px rgba(0,0,0,.35) !important;
    padding: 0 !important;
    margin: 0 !important;
}

#championCookieBanner .champion-cookie-banner-inner {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.champion-cookie-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border-radius: 16px;
    background: rgba(237,32,36,.18);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.25rem;
    border: 1px solid rgba(255,255,255,.12);
}

.champion-cookie-copy {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    min-width: 0;
}

#championCookieBanner h3 {
    color: #fff !important;
    margin: 0 0 4px !important;
    font-size: 1.05rem;
    line-height: 1.2;
    font-weight: 1000;
    letter-spacing: -.02em;
}

#championCookieBanner p {
    margin: 0 !important;
    color: rgba(255,255,255,.82) !important;
    font-size: .94rem;
    line-height: 1.55;
}

.champion-cookie-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.champion-cookie-privacy {
    color: #fff !important;
    font-weight: 850;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,.42);
    white-space: nowrap;
}

.champion-cookie-privacy:hover,
.champion-cookie-privacy:focus {
    color: #fff !important;
    border-bottom-color: var(--brand);
}

#championCookieAccept {
    appearance: none;
    border: 0 !important;
    background: var(--brand) !important;
    color: #fff !important;
    border-radius: 999px !important;
    padding: 12px 24px !important;
    font-weight: 1000 !important;
    line-height: 1 !important;
    white-space: nowrap;
    box-shadow: 0 12px 26px rgba(237,32,36,.28);
    cursor: pointer;
}

#championCookieAccept:hover,
#championCookieAccept:focus {
    filter: brightness(.93);
    outline: 3px solid rgba(255,255,255,.32);
    outline-offset: 2px;
}

body.champion-cookie-visible {
    padding-bottom: var(--champion-cookie-height, 104px);
}

@media (max-width: 767.98px) {
    #championCookieBanner .champion-cookie-banner-inner {
        align-items: stretch;
        flex-direction: column;
        gap: 14px;
        padding: 16px;
    }

    .champion-cookie-copy {
        gap: 12px;
    }

    .champion-cookie-icon {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
        border-radius: 14px;
    }

    .champion-cookie-actions {
        width: 100%;
        justify-content: space-between;
        gap: 12px;
    }

    #championCookieAccept {
        flex: 1 1 auto;
    }
}



/* =========================================================
   Champion Accessibility + Cookie Bar
   Clean built-in ADA helpers, not a heavy plugin.
========================================================= */
.champion-skip-link {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 1000000;
    transform: translateY(-160%);
    background: var(--brand);
    color: #fff;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 16px 38px rgba(15,23,42,.25);
}

.champion-skip-link:focus,
.champion-skip-link:focus-visible {
    transform: translateY(0);
    color: #fff;
    outline: 3px solid #fff;
    outline-offset: 3px;
}

:focus-visible {
    outline: 3px solid var(--brand);
    outline-offset: 3px;
    border-radius: 6px;
}

.navbar-toggler:focus,
.btn:focus-visible,
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--brand) !important;
    outline-offset: 3px;
    box-shadow: none !important;
}

.champion-cookie-banner {
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    z-index: 999998 !important;
    background: #0b1020;
    color: #fff;
    border-top: 5px solid var(--brand);
    box-shadow: 0 -18px 45px rgba(15,23,42,.35);
    padding: 18px 0;
}

.champion-cookie-banner[hidden] {
    display: none !important;
}

.champion-cookie-banner-inner {
    width: min(1320px, calc(100% - 32px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.champion-cookie-copy {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    min-width: 0;
}

.champion-cookie-icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: rgba(237,32,36,.18);
    color: #fff;
    display: grid;
    place-items: center;
    flex: 0 0 46px;
    font-size: 1.3rem;
}

.champion-cookie-banner h3 {
    margin: 0 0 5px;
    color: #fff;
    font-size: 1.08rem;
    font-weight: 1000;
    letter-spacing: -.02em;
}

.champion-cookie-banner p {
    margin: 0;
    color: rgba(255,255,255,.84);
    line-height: 1.55;
    font-weight: 650;
}

.champion-cookie-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.champion-cookie-privacy {
    color: #fff;
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.champion-cookie-privacy:hover {
    color: #fff;
    opacity: .85;
}

#championCookieAccept {
    border: 0;
    border-radius: 999px;
    background: var(--brand);
    color: #fff;
    padding: 12px 24px;
    font-weight: 1000;
    white-space: nowrap;
}

#championCookieAccept:hover {
    filter: brightness(.94);
}

body.champion-cookie-visible {
    padding-bottom: var(--champion-cookie-height, 96px);
}

.champion-a11y-widget {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 999997;
}

body.champion-cookie-visible .champion-a11y-widget {
    bottom: calc(var(--champion-cookie-height, 96px) + 18px);
}

.champion-a11y-toggle {
    width: 54px;
    height: 54px;
    border: 0;
    border-radius: 999px;
    background: var(--brand);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.55rem;
    box-shadow: 0 18px 38px rgba(15,23,42,.24);
}

.champion-a11y-panel {
    position: absolute;
    right: 0;
    bottom: 68px;
    width: min(300px, calc(100vw - 36px));
    background: #fff;
    color: var(--ink);
    border: 1px solid rgba(148,163,184,.28);
    border-radius: 22px;
    box-shadow: 0 24px 70px rgba(15,23,42,.25);
    padding: 14px;
}

.champion-a11y-panel[hidden] {
    display: none !important;
}

.champion-a11y-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 6px 4px 12px;
    border-bottom: 1px solid rgba(148,163,184,.22);
    margin-bottom: 10px;
}

.champion-a11y-panel-head strong {
    font-size: 1rem;
    font-weight: 1000;
}

.champion-a11y-close {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 999px;
    background: rgba(148,163,184,.14);
    color: inherit;
    display: grid;
    place-items: center;
}

.champion-a11y-panel button[data-champion-a11y] {
    width: 100%;
    border: 0;
    border-radius: 14px;
    background: transparent;
    color: inherit;
    padding: 11px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 850;
    text-align: left;
}

.champion-a11y-panel button[data-champion-a11y]:hover,
.champion-a11y-panel button[data-champion-a11y]:focus-visible {
    background: rgba(237,32,36,.09);
    color: var(--brand);
}

.champion-a11y-panel .champion-a11y-reset {
    border-top: 1px solid rgba(148,163,184,.18);
    margin-top: 6px;
}

body.champion-a11y-text-large {
    font-size: 112%;
}

body.champion-a11y-underline-links a:not(.btn):not(.category-badge):not(.soft-pill):not(.share-btn) {
    text-decoration: underline !important;
    text-underline-offset: .18em;
    text-decoration-thickness: 2px;
}

body.champion-a11y-grayscale {
    filter: grayscale(1);
}

body.champion-a11y-contrast {
    --ink: #000;
    --muted: #283445;
    background: #fff !important;
    color: #000 !important;
}

body.champion-a11y-contrast .content-card,
body.champion-a11y-contrast .story-card,
body.champion-a11y-contrast .sidebar-card,
body.champion-a11y-contrast .post-card,
body.champion-a11y-contrast .event-card,
body.champion-a11y-contrast .newsletter-card {
    background: #fff !important;
    color: #000 !important;
    border: 2px solid #000 !important;
    box-shadow: none !important;
}

body.champion-a11y-contrast a {
    color: #0000ee !important;
}

body.champion-a11y-contrast .btn,
body.champion-a11y-contrast button,
body.champion-a11y-contrast .category-badge {
    border: 2px solid currentColor !important;
}

body.champion-a11y-reduce-motion *,
body.champion-a11y-reduce-motion *::before,
body.champion-a11y-reduce-motion *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .001ms !important;
    }
}

html[data-bs-theme="dark"] .champion-a11y-panel {
    background: var(--dark-card);
    color: #e8edf5;
    border-color: rgba(148,163,184,.22);
    box-shadow: 0 24px 70px rgba(0,0,0,.48);
}

html[data-bs-theme="dark"] .champion-a11y-close {
    background: rgba(255,255,255,.08);
}

html[data-bs-theme="dark"] .champion-cookie-banner {
    background: #05070c;
}

.champion-accessibility-statement h2 {
    color: var(--ink);
}

.champion-accessibility-contact {
    border-top: 1px solid rgba(148,163,184,.25);
    padding-top: 1.25rem;
}

.champion-accessibility-contact h3 {
    font-size: 1.25rem;
    font-weight: 1000;
    letter-spacing: -.03em;
}

@media (max-width: 767.98px) {
    .champion-cookie-banner-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .champion-cookie-copy {
        align-items: flex-start;
    }

    .champion-cookie-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .champion-cookie-actions a,
    #championCookieAccept {
        width: 100%;
        text-align: center;
    }

    .champion-a11y-widget {
        right: 14px;
        bottom: 14px;
    }

    body.champion-cookie-visible .champion-a11y-widget {
        bottom: calc(var(--champion-cookie-height, 150px) + 14px);
    }
}

/* =========================================================
   Champion Accessibility Text Size Fix
   Explicitly targets article/post/page content that already has fixed font sizes.
========================================================= */
body.champion-a11y-text-large .content-body,
body.champion-a11y-text-large .entry-content,
body.champion-a11y-text-large .post-content,
body.champion-a11y-text-large .article-content,
body.champion-a11y-text-large .single-post-content,
body.champion-a11y-text-large .single-event-content,
body.champion-a11y-text-large .page-content,
body.champion-a11y-text-large .champion-contact-form-card,
body.champion-a11y-text-large .champion-submit-event-card,
body.champion-a11y-text-large .champion-comment-text {
    font-size: 1.25rem !important;
    line-height: 1.9 !important;
}

body.champion-a11y-text-large .content-body p,
body.champion-a11y-text-large .entry-content p,
body.champion-a11y-text-large .post-content p,
body.champion-a11y-text-large .article-content p,
body.champion-a11y-text-large .single-post-content p,
body.champion-a11y-text-large .single-event-content p,
body.champion-a11y-text-large .page-content p,
body.champion-a11y-text-large .content-body li,
body.champion-a11y-text-large .entry-content li,
body.champion-a11y-text-large .post-content li,
body.champion-a11y-text-large .article-content li,
body.champion-a11y-text-large .single-post-content li,
body.champion-a11y-text-large .single-event-content li,
body.champion-a11y-text-large .page-content li {
    font-size: 1.25rem !important;
    line-height: 1.9 !important;
}

body.champion-a11y-text-large .story-card-excerpt,
body.champion-a11y-text-large .event-excerpt,
body.champion-a11y-text-large .page-lead,
body.champion-a11y-text-large .meta-row,
body.champion-a11y-text-large .text-muted,
body.champion-a11y-text-large .sidebar-story strong,
body.champion-a11y-text-large .sidebar-story span,
body.champion-a11y-text-large .champion-recent-title,
body.champion-a11y-text-large .champion-comment-date {
    font-size: 1.08rem !important;
    line-height: 1.65 !important;
}

body.champion-a11y-text-large .form-control,
body.champion-a11y-text-large .form-select,
body.champion-a11y-text-large label,
body.champion-a11y-text-large button,
body.champion-a11y-text-large .btn {
    font-size: 1.05rem !important;
}


/* =========================================================
   Champion Footer Widgets Upgrade
========================================================= */
.champion-site-footer {
    background:
        radial-gradient(circle at top left, rgba(237,32,36,.14), transparent 32%),
        linear-gradient(180deg, #070a11 0%, #05070c 100%);
    color: #ffffff;
}

.champion-site-footer .champion-footer-widgets {
    align-items: flex-start;
}

.champion-footer-widget {
    color: rgba(255,255,255,.78);
    font-size: .95rem;
    line-height: 1.7;
}

.champion-footer-brand-widget {
    max-width: 640px;
}

.champion-footer-brand-widget .site-logo,
.champion-footer-brand-widget img {
    width: auto;
    max-width: 260px;
    height: auto;
}

.champion-footer-widget p {
    color: rgba(255,255,255,.76);
    margin-bottom: 0;
}

.champion-footer-widget .widget-title,
.champion-footer-widget h5,
.champion-footer-widget .footer-widget-title {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 950;
    letter-spacing: .045em;
    text-transform: uppercase;
    margin: 0 0 1rem;
    padding-bottom: .75rem;
    position: relative;
}

.champion-footer-widget .widget-title::after,
.champion-footer-widget h2::after,
.champion-footer-widget h3::after,
.champion-footer-widget h4::after,
.champion-footer-widget .footer-widget-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 42px;
    height: 3px;
    border-radius: 999px;
    background: var(--brand);
}
.champion-footer-widget ul,
.champion-footer-widget .menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: .45rem;
}

.champion-footer-widget li {
    margin: 0;
}

.champion-footer-widget a {
    color: rgba(255,255,255,.78);
    text-decoration: none;
    font-weight: 750;
}

.champion-footer-link-widget a {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .22rem 0;
}

.champion-footer-link-widget a::before {
    content: "›";
    color: var(--brand);
    font-size: 1.15rem;
    font-weight: 1000;
    line-height: 1;
}

.champion-footer-widget a:hover,
.champion-footer-widget a:focus {
    color: #ffffff;
}

.champion-footer-social-wrap {
    padding-top: 1.35rem;
}

.champion-footer-social-title {
    color: rgba(255,255,255,.62);
    font-size: .78rem;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: .8rem;
}

.champion-footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
}

.champion-footer-social-link {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: inline-grid !important;
    place-items: center;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    color: #ffffff !important;
    font-size: 1.1rem;
    text-decoration: none !important;
    transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.champion-footer-social-link::before {
    display: none !important;
    content: none !important;
}

.champion-footer-social-link:hover,
.champion-footer-social-link:focus {
    background: var(--brand);
    border-color: var(--brand);
    color: #ffffff !important;
    transform: translateY(-2px);
}

.champion-site-footer hr {
    opacity: .35;
}

.champion-site-footer .small {
    color: rgba(255,255,255,.62);
}

@media (max-width: 991.98px) {
    .champion-footer-brand-widget {
        max-width: 100%;
    }
}
/* =========================================================
   Top Strip Social
========================================================= */

.top-strip-left{
    display:flex;
    align-items:center;
    gap:18px;
}

.top-strip-social{
    display:flex;
    align-items:center;
    gap:8px;
}

.top-strip-social a{
    width:30px;
    height:30px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#fff;
    background:rgba(255,255,255,.10);
    transition:.2s;
}

.top-strip-social a:hover{
    background:var(--brand);
    color:#fff;
    transform:translateY(-2px);
}

.top-strip-tagline{
    display:flex;
    align-items:center;
    gap:8px;
    color:#fff;
    font-size:.84rem;
    font-weight:700;
    white-space:nowrap;
}

.top-strip-tagline i{
    color:#ffc107;
    font-size:.9rem;
}

.top-strip-tagline strong{
    color:#fff;
    font-weight:900;
}

@media (max-width:991.98px){

    .top-strip-tagline{
        display:none;
    }

    .top-strip-social{
        gap:6px;
    }

    .top-strip-social a{
        width:28px;
        height:28px;
        font-size:.85rem;
    }

}
/* Lights of Havasu / Seasonal Header Links */
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

.top-strip-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.top-strip-seasonal {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.seasonal-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.seasonal-link:hover,
.seasonal-link:focus {
    transform: translateY(-1px);
    filter: brightness(1.12);
    text-decoration: none;
}

.seasonal-link-lights {
    color: #ffd56a;
    text-shadow: 0 0 8px rgba(255, 213, 106, 0.75), 0 0 18px rgba(255, 116, 24, 0.45);
}

.seasonal-link-lights span {
    font-family: 'Great Vibes', cursive;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.seasonal-link-lights i {
    color: #fff4b8;
    font-size: 16px;
}

.seasonal-link-halloween {
    color: #ff9f1c;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(255, 132, 0, 0.55);
}

.seasonal-link-halloween i {
    color: #ff6a00;
    font-size: 16px;
}
.animated_lights {
	width: 140px;
	margin-right: 5px;
	margin-bottom: 0px;
	padding-bottom: 0px;
	margin-top: -5px!important;
	margin-left: 0px;
}

@media (max-width: 767.98px) {
    .top-strip-left {
        gap: 8px;
    }

    .seasonal-link-lights span {
        font-size: 24px;
    }

    .seasonal-link-halloween {
        font-size: 12px;
    }
}

/* =========================================================
   MOBILE HEADER AD TO NAVBAR SPACING
   Must stay at the END of champion.css.
========================================================= */
@media (max-width: 991.98px) {
    .ad-header.champion-ad-header {
        padding-top: .65rem !important;
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
        line-height: 0 !important;
    }

    .ad-header.champion-ad-header > .container,
    .ad-header.champion-ad-header .masthead-row,
    .ad-header.champion-ad-header .masthead-wide-ad,
    .ad-header.champion-ad-header .champion-mobile-top-ad,
    .ad-header.champion-ad-header .champion-header-wide-ad {
        padding-bottom: 0 !important;
        margin-bottom: 20px !important;
		margin-top: 10px!important;
        min-height: 0 !important;
        line-height: 0 !important;
    }

    .ad-header.champion-ad-header .champion-mobile-top-ad img {
        display: block !important;
        margin: 0 auto !important;
        padding: 0 !important;
        vertical-align: bottom !important;
    }

    nav.navbar.champion-navbar {
        margin-top: 0 !important;
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    nav.navbar.champion-navbar > .container {
        min-height: 54px !important;
    }
}

/* =========================================================
   DESKTOP HEADER SPACING + NAVBAR HEIGHT
   Desktop only. Mobile remains unchanged.
========================================================= */
@media (min-width: 992px) {
    .ad-header.champion-ad-header {
        padding-top: 1.25rem !important;
        padding-bottom: 1.25rem !important;
    }

    nav.navbar.champion-navbar {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    nav.navbar.champion-navbar > .container {
        min-height: 68px !important;
    }
}

/* =========================================================
   HEADER ADS: MATCHED HEIGHTS
   Desktop/tablet: both ad slots stay exactly the same height.
   Mobile: small ad stays hidden and wide ad remains responsive.
========================================================= */
@media (min-width: 992px) {
    .masthead-small-ad,
    .masthead-wide-ad {
        height: 90px !important;
        min-height: 90px !important;
        max-height: 90px !important;
        align-self: center !important;
        display: flex !important;
        align-items: center !important;
    }

    .masthead-small-ad {
        justify-content: center !important;
    }

    .masthead-wide-ad {
        justify-content: flex-end !important;
    }

    .masthead-small-ad > a,
    .masthead-wide-ad > a,
    .masthead-wide-ad .champion-header-wide-ad,
    .masthead-wide-ad [class*="ad-zone"],
    .masthead-wide-ad [class*="ad-slider"],
    .masthead-wide-ad .slick-list,
    .masthead-wide-ad .slick-track,
    .masthead-wide-ad .swiper,
    .masthead-wide-ad .swiper-wrapper,
    .masthead-wide-ad .swiper-slide {
        height: 90px !important;
        min-height: 90px !important;
        max-height: 90px !important;
        display: flex !important;
        align-items: center !important;
    }

    .masthead-small-ad img,
    .masthead-wide-ad img,
    .masthead-wide-ad .champion-top-right-ad-img,
    .masthead-wide-ad .ad-img {
        width: auto !important;
        max-width: 100% !important;
        height: 90px !important;
        min-height: 90px !important;
        max-height: 90px !important;
        object-fit: contain !important;
        object-position: center center !important;
        display: block !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }
}

@media (max-width: 991.98px) {
    .masthead-small-ad {
        display: none !important;
    }

    .masthead-wide-ad,
    .masthead-wide-ad .champion-header-wide-ad,
    .masthead-wide-ad .champion-header-wide-ad > * {
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
    }

    .masthead-wide-ad img,
    .masthead-wide-ad .champion-top-right-ad-img,
    .masthead-wide-ad .ad-img {
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        object-fit: contain !important;
    }
}

/* =========================================================
   FINAL SPONSORED BADGE FIX
   Keep this at the end of champion.css.
========================================================= */
.masthead-wide-ad .champion-sponsored-badge {
    position: absolute !important;
    top: 8px !important;
    left: 8px !important;
    right: auto !important;
    bottom: auto !important;

    width: auto !important;
    min-width: 0 !important;
    max-width: max-content !important;

    height: 22px !important;
    min-height: 22px !important;
    max-height: 22px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 auto !important;
    align-self: auto !important;

    margin: 0 !important;
    padding: 0 9px !important;
    gap: 5px !important;

    border: 0 !important;
    border-radius: 999px !important;
    box-sizing: border-box !important;

    font-size: 9px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    letter-spacing: .45px !important;
    white-space: nowrap !important;

    transform: none !important;
    z-index: 30 !important;
}

.masthead-wide-ad .champion-sponsored-badge::before {
    width: 5px !important;
    height: 5px !important;
    min-width: 5px !important;
    min-height: 5px !important;
    max-width: 5px !important;
    max-height: 5px !important;
    flex: 0 0 5px !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 50% !important;
}

.masthead-wide-ad .champion-header-wide-ad {
    position: relative !important;
}

/* =========================================================
   FINAL SMALL HEADER AD CLEANUP
   Removes letterbox/border effect without changing ad alignment
   or the Sponsored pill.
========================================================= */
@media (min-width: 992px) {
    .masthead-small-ad,
    .masthead-small-ad > a {
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        outline: 0 !important;
        overflow: visible !important;
    }

    .masthead-small-ad .small-ad-img {
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        outline: 0 !important;
        padding: 0 !important;
        margin: 0 auto !important;
    }
}

/* =========================================================
   HOMEPAGE HERO ROTATION STABILITY
   Keeps rotating messages bottom-aligned and prevents layout shift.
========================================================= */
.home .hero-card,
.home .rsm-home-hero,
.home .rsm-hero-shell {
    min-height: 620px;
}

.home .hero-content {
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.home .rsm-hero-messages {
    position: relative;
    width: 100%;
    min-height: 250px;
    display: flex;
    align-items: flex-end;
}

.home .rsm-hero-message,
.home .rsm-hero-message-bottom {
    width: 100%;
    margin-top: auto;
    align-self: flex-end;
}

.home .rsm-hero-message .hero-title,
.home .rsm-hero-message .rsm-hero-lead {
    max-width: 100%;
}

@media (max-width: 991.98px) {
    .home .hero-card,
    .home .rsm-home-hero,
    .home .rsm-hero-shell {
        min-height: 560px;
    }

    .home .rsm-hero-messages {
        min-height: 280px;
    }
}

@media (max-width: 767.98px) {
    .home .hero-card,
    .home .rsm-home-hero,
    .home .rsm-hero-shell {
        min-height: 560px;
    }

    .home .hero-content {
        justify-content: flex-end;
    }

    .home .rsm-hero-messages {
        min-height: 300px;
        align-items: flex-end;
    }

    .home .hero-title,
    .home .rsm-hero-message .hero-title {
        font-size: clamp(2.65rem, 12vw, 4rem) !important;
        line-height: .92 !important;
    }

    .home .rsm-hero-lead {
        font-size: 1.08rem !important;
        line-height: 1.5;
    }
}
/* Images */
.content-body img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;

    border-radius: 20px;
    overflow: hidden;

    box-shadow:
        0 18px 45px rgba(0,0,0,.14);

    transition: transform .35s ease,
                box-shadow .35s ease;
}

.content-body img:hover {
    transform: translateY(-2px);
    box-shadow:
        0 26px 55px rgba(0,0,0,.18);
}

/* Figure wrapper */
.content-body figure,
.content-body .wp-block-image {
    margin: 2rem 0;
    overflow: visible;
}

/* Caption */
.content-body figcaption,
.content-body .wp-element-caption {
    margin-top: .85rem;
    text-align: center;
    color: #6c757d;
    font-size: .9rem;
    line-height: 1.6;
}

/* Dark mode */
[data-bs-theme="dark"] .content-body figcaption,
body.dark-mode .content-body figcaption,
[data-bs-theme="dark"] .content-body .wp-element-caption,
body.dark-mode .content-body .wp-element-caption {
    color: rgba(255,255,255,.72);
}

/* =========================================================
   RESPONSIVE CONTAINER WIDTH FIX
   Keep Bootstrap's centered max-width on desktop.
   On tablets and phones, including landscape orientation,
   allow containers to use the full available screen width.
========================================================= */
@media (max-width: 991.98px) {
    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl,
    .container-xxl {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    /* Sections already designed to touch the viewport can opt out
       of the standard mobile gutter without affecting desktop. */
    .container-fluid {
        width: 100% !important;
        max-width: 100% !important;
    }
}
/* =========================================================
   Loading Page
========================================================= */
html.rsm-loader-enabled, html.rsm-loader-enabled body {
  min-height: 100%;
}
body.rsm-loader-active {
  overflow: hidden;
}
.rsm-page-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 1;
  visibility: visible;
  transition: opacity .45s ease, visibility .45s ease, max-height .45s ease, padding .45s ease, margin .45s ease;
  isolation: isolate;
}
.rsm-page-loader--home {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
}
.rsm-page-loader.is-leaving {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.rsm-page-loader[hidden] {
  display: none !important;
}
html.rsm-home-intro-seen .rsm-page-loader--home {
  display: none !important;
}
.rsm-page-loader--home {
  background:
    radial-gradient(circle at 68% 28%, rgba(111, 77, 255, .22), transparent 31%), radial-gradient(circle at 32% 72%, rgba(0, 155, 220, .14), transparent 34%), linear-gradient(145deg, #080a10 0%, #111621 52%, #080a10 100%);
  color: #fff;
}
.rsm-page-loader--home::before, .rsm-page-loader--home::after {
  content: "";
  position: absolute;
  inset: -25%;
  z-index: -1;
  pointer-events: none;
}
.rsm-page-loader--home::before {
  background:
    linear-gradient(112deg, transparent 38%, rgba(255, 255, 255, .05) 48%, transparent 59%);
  animation: rsmLoaderAmbient 8s ease-in-out infinite alternate;
  filter: blur(18px);
}
.rsm-page-loader--home::after {
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, .45) 0 1px, transparent 1.7px);
  background-size: 72px 72px;
  opacity: .16;
  animation: rsmLoaderStars 18s linear infinite;
}
.rsm-page-loader--content {
  position: relative;
  width: 100%;
  min-height: 220px;
  max-height: 320px;
  margin: 0 0 28px;
  border-radius: 20px;
  background: color-mix(in srgb, var(--bs-body-bg, #fff) 96%, transparent);
  border: 1px solid color-mix(in srgb, currentColor 9%, transparent);
  color: var(--bs-body-color, #1d2430);
  overflow: hidden;
}
.rsm-page-loader--content.is-leaving {
  max-height: 0;
  min-height: 0;
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-width: 0;
}
.rsm-content-loader-shell {
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
}
.rsm-template-loaded-content {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .55s ease, visibility .55s ease;
}
.rsm-template-loaded-content.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.rsm-loader-inner {
  position: relative;
  width: min(420px, 90vw);
  text-align: center;
}
.rsm-loader-logo {
  display: block;
  width: min(285px, 72vw);
  max-height: 105px;
  object-fit: contain;
  margin: 0 auto 24px;
  filter: drop-shadow(0 14px 34px rgba(0, 0, 0, .28));
  animation: rsmLoaderLogoBreath 2.5s ease-in-out infinite;
}
.rsm-loader-copy {
  margin: 0;
  font-size: clamp(.92rem, 2vw, 1.05rem);
  letter-spacing: .035em;
  color: rgba(255, 255, 255, .78);
}
.rsm-loader-progress {
  width: min(220px, 62vw);
  height: 2px;
  margin: 22px auto 0;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, .13);
}
.rsm-loader-progress span {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .95), transparent);
  animation: rsmLoaderProgress 1.55s ease-in-out infinite;
}
.rsm-content-loader-mark {
  position: relative;
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
}
.rsm-content-loader-mark::before, .rsm-content-loader-mark::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.rsm-content-loader-mark::before {
  inset: 0;
  border: 2px solid color-mix(in srgb, currentColor 14%, transparent);
  border-top-color: currentColor;
  animation: rsmLoaderSpin 1s linear infinite;
}
.rsm-content-loader-mark::after {
  inset: 13px;
  background: currentColor;
  opacity: .12;
  animation: rsmLoaderPulse 1.5s ease-in-out infinite;
}
.rsm-content-loader-label {
  margin: 0;
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .02em;
  opacity: .72;
}
@keyframes rsmLoaderLogoBreath {
  0%, 100% {
    opacity: .84;
    transform: translateY(0) scale(.985);
  }
  50% {
    opacity: 1;
    transform: translateY(-4px) scale(1.015);
  }
}
@keyframes rsmLoaderProgress {
  0% {
    transform: translateX(-135%);
  }
  100% {
    transform: translateX(335%);
  }
}
@keyframes rsmLoaderSpin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes rsmLoaderPulse {
  0%, 100% {
    transform: scale(.72);
    opacity: .08;
  }
  50% {
    transform: scale(1);
    opacity: .18;
  }
}
@keyframes rsmLoaderAmbient {
  0% {
    transform: translate3d(-3%, -1%, 0) rotate(-2deg);
    opacity: .48;
  }
  100% {
    transform: translate3d(4%, 2%, 0) rotate(2deg);
    opacity: .82;
  }
}
@keyframes rsmLoaderStars {
  to {
    transform: translate3d(72px, 72px, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .rsm-page-loader *, .rsm-page-loader::before, .rsm-page-loader::after {
    animation: none !important;
  }
}
/* RiverScene Magazine Legal Pages */
.rsm-legal-hero {
    position: relative;
    overflow: hidden;
    min-height: 390px;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 85% 20%, rgba(198, 31, 43, 0.35), transparent 36%),
        linear-gradient(120deg, #08090b 0%, #171a20 55%, #2b1014 100%);
    color: #fff;
}

.rsm-legal-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent);
}

.rsm-legal-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.35), transparent 70%);
}

.rsm-legal-hero__content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    padding: 90px 0 80px;
}

.rsm-legal-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    margin-bottom: 1.2rem;
    padding: .5rem .85rem;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.rsm-legal-hero h1 {
    margin: 0 0 1rem;
    font-size: clamp(2.65rem, 6vw, 5.5rem);
    font-weight: 850;
    line-height: .98;
    letter-spacing: -.055em;
}

.rsm-legal-hero p {
    max-width: 720px;
    margin: 0;
    color: rgba(255,255,255,.78);
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    line-height: 1.65;
}

.rsm-legal-updated {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-top: 1.5rem;
    color: rgba(255,255,255,.62);
    font-size: .92rem;
}

.rsm-legal-body {
    padding: 72px 0 90px;
}

.rsm-legal-sidebar {
    position: sticky;
    top: 110px;
    padding: 1.4rem;
    border: 1px solid var(--rsm-legal-border);
    border-radius: 18px;
    background: var(--rsm-legal-card);
    box-shadow: 0 18px 50px rgba(18, 24, 33, .07);
}

.rsm-legal-sidebar__heading {
    margin-bottom: 1rem;
    font-size: .78rem;
    font-weight: 850;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.rsm-legal-toc ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.rsm-legal-toc li + li {
    margin-top: .35rem;
}

.rsm-legal-toc li.is-subsection {
    padding-left: 1rem;
}

.rsm-legal-toc a {
    display: block;
    padding: .55rem .7rem;
    border-radius: 9px;
    color: var(--rsm-legal-muted);
    font-size: .92rem;
    line-height: 1.35;
    text-decoration: none;
    transition: .2s ease;
}

.rsm-legal-toc a:hover,
.rsm-legal-toc a:focus {
    background: rgba(198, 31, 43, .08);
    color: var(--rsm-legal-accent);
}

.rsm-legal-toc__empty {
    margin: 0;
    color: var(--rsm-legal-muted);
    font-size: .9rem;
}

.rsm-legal-help {
    display: flex;
    gap: .75rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--rsm-legal-border);
}

.rsm-legal-help > i {
    color: var(--rsm-legal-accent);
    font-size: 1.15rem;
}

.rsm-legal-help strong,
.rsm-legal-help a {
    display: block;
}

.rsm-legal-help a {
    margin-top: .2rem;
    color: var(--rsm-legal-muted);
    font-size: .88rem;
    text-decoration: none;
}

.rsm-legal-content {
    padding: clamp(1.5rem, 4vw, 3.4rem);
    border: 1px solid var(--rsm-legal-border);
    border-radius: 22px;
    background: var(--rsm-legal-card);
    box-shadow: 0 20px 60px rgba(18, 24, 33, .07);
}

.rsm-legal-content > *:first-child {
    margin-top: 0;
}

.rsm-legal-content h2,
.rsm-legal-content h3 {
    scroll-margin-top: 130px;
    color: var(--rsm-legal-ink);
}

.rsm-legal-content h2 {
    margin: 2.5rem 0 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--rsm-legal-border);
    font-size: clamp(1.5rem, 3vw, 2.05rem);
    font-weight: 800;
    letter-spacing: -.025em;
}

.rsm-legal-content h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.rsm-legal-content h3 {
    margin: 1.8rem 0 .75rem;
    font-size: 1.2rem;
    font-weight: 800;
}

.rsm-legal-content p,
.rsm-legal-content li {
    color: var(--rsm-legal-muted);
    font-size: 1rem;
    line-height: 1.8;
}

.rsm-legal-content ul,
.rsm-legal-content ol {
    padding-left: 1.25rem;
}

.rsm-legal-content a {
    color: var(--rsm-legal-accent);
    font-weight: 650;
    text-underline-offset: 3px;
}

.rsm-legal-content blockquote {
    margin: 1.8rem 0;
    padding: 1.25rem 1.4rem;
    border-left: 4px solid var(--rsm-legal-accent);
    border-radius: 0 12px 12px 0;
    background: rgba(198, 31, 43, .06);
}

.rsm-legal-footer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.5rem;
}

.rsm-legal-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    min-height: 48px;
    padding: .75rem 1.1rem;
    border: 1px solid transparent;
    border-radius: 11px;
    font-weight: 750;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.rsm-legal-button:hover {
    transform: translateY(-2px);
}

.rsm-legal-button--primary {
    background: linear-gradient(135deg, var(--rsm-legal-accent), var(--rsm-legal-accent-dark));
    color: #fff;
    box-shadow: 0 12px 28px rgba(198, 31, 43, .22);
}

.rsm-legal-button--secondary {
    border-color: var(--rsm-legal-border);
    background: var(--rsm-legal-card);
    color: var(--rsm-legal-ink);
}

body.dark-mode .rsm-legal-page,
body[data-bs-theme="dark"] .rsm-legal-page,
html[data-bs-theme="dark"] .rsm-legal-page {
    --rsm-legal-ink: #f2f4f7;
    --rsm-legal-muted: #adb3bd;
    --rsm-legal-border: rgba(255,255,255,.09);
    --rsm-legal-card: #15181d;
    --rsm-legal-soft: #0c0e11;
}

@media (max-width: 991.98px) {
    .rsm-legal-sidebar {
        position: static;
    }

    .rsm-legal-hero {
        min-height: 330px;
    }
}

@media (max-width: 575.98px) {
    .rsm-legal-body {
        padding: 42px 0 60px;
    }

    .rsm-legal-hero__content {
        padding: 70px 0 60px;
    }

    .rsm-legal-content,
    .rsm-legal-sidebar {
        border-radius: 15px;
    }

    .rsm-legal-footer-actions,
    .rsm-legal-button {
        width: 100%;
    }
}

@media print {
    header,
    footer,
    .rsm-legal-sidebar,
    .rsm-legal-footer-actions,
    .rsm-legal-hero__overlay {
        display: none !important;
    }

    .rsm-legal-page,
    .rsm-legal-body,
    .rsm-legal-content {
        background: #fff !important;
        color: #000 !important;
        box-shadow: none !important;
        border: 0 !important;
    }

    .rsm-legal-hero {
        min-height: auto;
        background: #fff !important;
        color: #000 !important;
    }

    .rsm-legal-hero__content {
        padding: 0 0 25px;
    }

    .rsm-legal-hero p,
    .rsm-legal-updated,
    .rsm-legal-content p,
    .rsm-legal-content li {
        color: #222 !important;
    }
}
/* =========================================================
   ARTICLE ADS — REMOVE MOBILE WHITE BOX
   Keep at the very bottom of champion.css
========================================================= */
@media (max-width: 767.98px) {

    .champion-article-ad-wrap,
    .champion-article-ad-wrap > *,
    .champion-article-ad,
    .champion-article-ad > *,
    .champion-article-ad-wrap a,
    .champion-article-ad-wrap picture,
    .champion-article-ad-wrap figure,
    .champion-article-ad-wrap [class*="ad-zone"],
    .champion-article-ad-wrap [class*="ad-slide"],
    .champion-article-ad-wrap [class*="ad-slider"],
    .champion-article-ad-wrap [class*="carousel"],
    .champion-article-ad-wrap [class*="swiper"],
    .champion-article-ad-wrap [class*="slick"] {
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        outline: 0 !important;

        padding-top: 0 !important;
        padding-bottom: 0 !important;

        min-height: 0 !important;
        height: auto !important;

        line-height: 0 !important;
    }

    .champion-article-ad-wrap {
        display: block !important;
        overflow: hidden !important;
    }

    .champion-article-ad-wrap img {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;

        margin: 0 !important;
        padding: 0 !important;

        background: transparent !important;
        border: 0 !important;
        vertical-align: bottom !important;
    }

    .champion-article-ad-wrap figure,
    .champion-article-ad-wrap picture,
    .champion-article-ad-wrap a {
        margin: 0 !important;
    }

    .champion-article-ad-wrap::before,
    .champion-article-ad-wrap::after,
    .champion-article-ad::before,
    .champion-article-ad::after {
        display: none !important;
        content: none !important;
    }
}
.champion-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 99999;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0,0,0,.65);
    opacity: 1 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.champion-lightbox-close:hover {
    background: rgba(0,0,0,.85);
}

.champion-lightbox-close:focus {
    box-shadow: none;
}

.champion-lightbox-close.btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%);
}