/* ============================================================================
   Janhit Samwad — custom theme overrides (classic)
   Red + yellow news palette and UI/UX polish.
   Loaded after style-3.1.min.css and _css_config, so these rules win.
   Safe to delete this file (and its <link> in classic/partials/_head.php)
   to fully revert.
   ========================================================================== */

:root {
    /* Brand palette ---------------------------------------------------------- */
    --vr-theme-color: #d81f26;          /* primary accent: links, buttons, active */
    --vr-block-color: #a5131a;          /* deep red: topbar + section header bars */
    --vr-mega-menu-color: #a5131a;

    --vr-brand-red: #d81f26;
    --vr-brand-red-dark: #a5131a;
    --vr-brand-red-darker: #7d0d13;
    --vr-brand-yellow: #ffd200;         /* accent stripe / highlights */
    --vr-brand-yellow-deep: #f5b100;    /* yellow text on light bg (AA contrast) */
    --vr-brand-navy: #16233f;           /* pulled from the logo, used sparingly */

    --vr-topbar-text-color: #ffe0e0;
    --vr-topbar-text-color-hover: #ffffff;

    /* Rounded corners a touch softer across the board */
    --border-radius: 0.5rem;
    --border-radius-lg: 0.75rem;
    --vr-card-shadow: 0 6px 18px rgba(17, 17, 19, 0.06);
}

/* --- Text selection --------------------------------------------------------- */
::selection { background: var(--vr-brand-red); color: #fff; }

/* --- Links --------------------------------------------------------------- */
a:hover { color: var(--vr-brand-red); }

/* keep post-card titles neutral until hover */
.post-item .title a,
.featured-section .title a { color: var(--vr-text-main); }
.post-item .title a:hover,
.featured-section .title a:hover { color: var(--vr-brand-red); }

/* ============================================================================
   Logo — kill the padding, make it large and crisp
   ========================================================================== */
.header-brand {
    padding: 0.35rem 0 !important;
    min-height: 0 !important;
}
.header-brand .logo,
.header-brand .navbar-brand {
    padding: 0 !important;
    margin: 0 !important;
    line-height: 0;
}
.header-brand .logo img,
.header-brand .navbar-brand img.logo {
    height: 92px !important;
    width: auto !important;
    max-width: 380px !important;
    max-height: 92px !important;
    object-fit: contain;
}
.header-brand .col-right { height: auto; }

@media (max-width: 1199.98px) {
    .header-brand .logo img,
    .header-brand .navbar-brand img.logo { height: 74px !important; max-height: 74px !important; }
}

/* Mobile + off-canvas logos — bigger, left-aligned */
.mobile-nav-wrapper .mobile-header {
    padding: 0 0.35rem !important;
    position: fixed;             /* already fixed in theme; kept for the absolute globe */
}
.mobile-nav-wrapper .mobile-header .header-btn {
    flex-shrink: 0;
    color: var(--vr-text-main) !important;
}
.mobile-nav-wrapper .mobile-header .header-btn svg { display: block; }
.mobile-nav-wrapper .mobile-header #searchToggleBtn svg:not(.d-none) { display: block; }
.mobile-nav-wrapper .header-logo {
    display: flex;
    align-items: center;
    min-width: 0;
    margin-right: auto;          /* pull the logo to the left, next to the menu button */
}
.mobile-nav-wrapper .header-logo img {
    height: 3.5rem !important;
    max-height: 3.5rem !important;
    max-width: calc(100vw - 9rem) !important;   /* room for menu btn + globe + search */
    width: auto !important;
}
.mobile-nav-wrapper .offcanvas-logo img {
    height: 2.75rem !important;
    max-height: 2.75rem !important;
    max-width: 12rem !important;
}

/* ============================================================================
   Mobile horizontal-scroll category strip (below the header)
   ========================================================================== */
.mobile-nav-wrapper { --topnav-height: 2.9rem; }

.mobile-nav-wrapper .mobile-topnav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    z-index: 1029;                /* under the header (1040) and search overlay (1030) */
    height: var(--topnav-height);
    background: var(--vr-color-white);
    border-bottom: 2px solid var(--vr-brand-red);
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.mobile-nav-wrapper .mobile-topnav::-webkit-scrollbar { display: none; }

.mobile-nav-wrapper .mobile-topnav-list {
    display: flex;
    align-items: stretch;
    gap: 0;
    height: 100%;
    margin: 0;
    padding: 0 0.5rem;
    list-style: none;
    white-space: nowrap;
    width: max-content;
}
.mobile-nav-wrapper .mobile-topnav-link {
    display: inline-flex;
    align-items: center;
    height: 100%;
    padding: 0 0.85rem;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1;
    color: var(--vr-text-main);
    border-bottom: 3px solid transparent;
    transition: color .15s ease, border-color .15s ease;
}
.mobile-nav-wrapper .mobile-topnav-link:hover { color: var(--vr-brand-red); }
.mobile-nav-wrapper .mobile-topnav-link.is-active {
    color: var(--vr-brand-red);
    border-bottom-color: var(--vr-brand-red);
}

/* push page content clear of the fixed header + strip */
.mobile-nav-wrapper .mobile-header-spacer {
    height: calc(var(--header-height) + var(--topnav-height)) !important;
}

[data-bs-theme="dark"] .mobile-nav-wrapper .mobile-topnav {
    background: var(--vr-gray-925);
}
[data-bs-theme="dark"] .mobile-nav-wrapper .mobile-topnav-link { color: var(--vr-gray-100); }

/* ============================================================================
   Featured-section headings on mobile ("मुख्य समाचार" / "फ़ीचर्ड खबरें")
   ========================================================================== */
.featured-section .fs-mobile-heading {
    margin: 0;
    padding: 8px 16px;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: .01em;
    line-height: 1.2;
    color: #fff;
    background: var(--vr-block-color);
    border-bottom: 3px solid var(--vr-brand-yellow);
}
.featured-section .fs-heading-featured { margin-top: 18px; }

@media (min-width: 992px) {
    .featured-section .fs-mobile-heading { display: none !important; }
}

@media (max-width: 991.98px) {
    .featured-section .fs-grid-wrapper {
        grid-template-areas:
            "head-main"
            "main"
            "head-feat"
            "sub-top"
            "sub-bottom";
    }
    .featured-section .fs-heading-main     { grid-area: head-main; }
    .featured-section .fs-heading-featured { grid-area: head-feat; }
}

/* ============================================================================
   Google Website Translator widget (right of the logo)
   ========================================================================== */
/* neutralise Google's injected top banner + tooltip */
.goog-te-banner-frame.skiptranslate,
.goog-te-gadget-icon,
#goog-gt-tt,
.goog-te-balloon-frame { display: none !important; }
body { top: 0 !important; }
.goog-tooltip, .goog-tooltip:hover { display: none !important; }
.goog-text-highlighted { background: none !important; box-shadow: none !important; }

.gt-wrap { line-height: 0; display: inline-flex; align-items: center; }
.gt-wrap:empty { display: none; }
.gt-wrap .goog-te-gadget {
    display: inline-block !important;   /* Google sometimes ships it inline display:none */
    font-size: 0 !important;
    color: transparent !important;
}
.gt-wrap .goog-te-gadget > div { display: inline-block !important; }
.gt-wrap .goog-te-gadget > span,
.gt-wrap .goog-te-gadget br,
.gt-wrap .goog-te-gadget img { display: none !important; }
.gt-wrap .goog-te-combo {
    margin: 0 !important;
    max-width: 9.5rem !important;
    height: auto !important;
    padding: 0.4rem 1.6rem 0.4rem 0.6rem !important;
    font-family: var(--vr-font-primary, sans-serif) !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    color: var(--vr-text-main) !important;
    background-color: var(--vr-gray-75) !important;
    border: 1.5px solid var(--vr-brand-red) !important;
    border-radius: 999px !important;
    box-shadow: 0 1px 3px rgba(17, 17, 19, 0.08) !important;
    cursor: pointer !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23d81f26' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 0.55rem center !important;
}
.gt-wrap .goog-te-combo:focus {
    outline: none !important;
    border-color: var(--vr-brand-red) !important;
    box-shadow: 0 0 0 3px rgba(216, 31, 38, 0.15) !important;
}

/* variant sitting in the (red) top bar, left of Log In / Sign Up */
.topbar .gt-wrap-topbar { align-self: center; }
.topbar .gt-wrap-topbar .goog-te-combo {
    max-width: 8.5rem !important;
    padding: 0.22rem 1.35rem 0.22rem 0.55rem !important;
    font-size: 0.75rem !important;
    color: var(--vr-text-main) !important;
    background-color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.65) !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18) !important;
}

/* compact globe button inside the mobile header — absolutely pinned just
   left of the search icon so it can never overflow the row */
.gt-wrap-mobile {
    position: absolute;
    right: 3.1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2.3rem;
    height: 2.3rem;
    z-index: 3;
}
.gt-wrap-mobile::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1.5px solid var(--vr-brand-red);
    border-radius: 50%;
    background: var(--vr-color-white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23d81f26' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M3.6 9h16.8M3.6 15h16.8M12 3a17 17 0 0 0 0 18M12 3a17 17 0 0 1 0 18'/%3E%3C/svg%3E") center / 1.2rem no-repeat;
    pointer-events: none;
}
.gt-wrap-mobile .goog-te-gadget,
.gt-wrap-mobile .goog-te-gadget > div,
.gt-wrap-mobile .goog-te-combo {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 50% !important;
    background: transparent !important;
    box-shadow: none !important;
    opacity: 0 !important;       /* invisible but still tappable -> native dropdown */
    cursor: pointer !important;
    -webkit-appearance: menulist !important;
    appearance: auto !important;
}
[data-bs-theme="dark"] .gt-wrap-mobile::before { background-color: var(--vr-gray-900); }

[data-bs-theme="dark"] .gt-wrap .goog-te-combo {
    background-color: var(--vr-gray-900) !important;
    color: var(--vr-gray-100) !important;
    border-color: var(--vr-gray-700) !important;
}
/* mega-menu brand logo (news/magazine layouts) */
.mega-menu-wrapper .navbar-brand .logo { max-height: 52px !important; width: auto !important; }

/* ============================================================================
   Top bar
   ========================================================================== */
.topbar {
    --tb-divider: rgba(255, 255, 255, 0.28);
    background-image: linear-gradient(90deg, var(--vr-brand-red-dark), var(--vr-brand-red));
    border-bottom: 3px solid var(--vr-brand-yellow);
}

/* ============================================================================
   Main navigation
   ========================================================================== */
#sticky-menu-wrapper .mega-menu-wrapper {
    box-shadow: 0 2px 10px rgba(17, 17, 19, 0.08) !important;
}
#mega-menu-wrapper .navbar-nav > .nav-item > .nav-link {
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: color .18s ease, background-color .18s ease;
}
#mega-menu-wrapper .navbar-nav > .nav-item > .nav-link:hover {
    color: var(--vr-brand-red) !important;
    background-color: rgba(216, 31, 38, 0.06);
}
#mega-menu-wrapper .navbar-nav > .active > .nav-link { color: var(--vr-brand-red) !important; }
#mega-menu-wrapper .navbar-nav > .active > .nav-link::after,
#mega-menu-wrapper .navbar-nav .nav-item.dropdown:hover .nav-link::after,
#mega-menu-wrapper .navbar-nav > .nav-item > .nav-link:hover::after {
    height: 3px;
    background-color: var(--vr-brand-red);
}

/* search + subscribe */
.search-icon-btn:hover { color: var(--vr-brand-red); }
.btn-nav-subscribe {
    background: var(--vr-brand-red) !important;
    border-color: var(--vr-brand-red) !important;
    color: #fff !important;
    font-weight: 600;
}
.btn-nav-subscribe:hover {
    background: var(--vr-brand-red-dark) !important;
    box-shadow: 0 6px 14px rgba(216, 31, 38, 0.28);
}

/* ============================================================================
   Section headings — red bar + yellow underline stripe
   ========================================================================== */
.section .section-title {
    /* force the yellow accent stripe even when a template sets an inline
       category-coloured border-bottom (e.g. _block_with_tabs.php) */
    border-bottom: 3px solid var(--vr-brand-yellow) !important;
}
.section .section-title .title {
    background-color: var(--vr-block-color);
    font-weight: 700;
    letter-spacing: 0.03em;
    padding-right: 1.75rem;
    clip-path: polygon(0 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
}
.section .section-title .view-all {
    color: var(--vr-brand-red);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 2px 8px;
    border-radius: 999px;
    transition: all .18s ease;
}
.section .section-title .view-all:hover {
    color: var(--vr-brand-red-darker) !important;
    background: var(--vr-brand-yellow);
}

/* ============================================================================
   Buttons
   ========================================================================== */
.btn { border-radius: var(--border-radius); font-weight: 600; }
.btn-custom,
.btn-search,
.btn-load-more-posts {
    background-color: var(--vr-brand-red) !important;
    border-color: var(--vr-brand-red) !important;
    color: #fff !important;
}
.btn-custom:hover, .btn-custom:focus, .btn-custom:active,
.btn-search:hover,
.btn-load-more-posts:hover {
    background-color: var(--vr-brand-red-dark) !important;
    border-color: var(--vr-brand-red-dark) !important;
    box-shadow: 0 8px 16px -4px rgba(216, 31, 38, 0.32) !important;
}
.btn-load-more-posts {
    border-width: 2px !important;
    background: #fff !important;
    color: var(--vr-brand-red) !important;
}
.btn-load-more-posts:hover {
    background: var(--vr-brand-yellow) !important;
    border-color: var(--vr-brand-yellow) !important;
    color: var(--vr-brand-red-darker) !important;
}

/* visible keyboard focus everywhere */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.form-control:focus-visible {
    outline: 3px solid var(--vr-brand-yellow) !important;
    outline-offset: 2px;
    border-radius: 3px;
}

/* ============================================================================
   Cards / post items — hover lift + image zoom
   ========================================================================== */
.post-item .image {
    border-radius: var(--border-radius);
}
.post-item .image img {
    transition: transform .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.post-item:hover .image img { transform: scale(1.06); }

.post-item .title a { transition: color .18s ease; }

.badge-category {
    border-radius: 3px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}

/* featured slider captions get a red accent underline */
.featured-section .fs-item .title { border-left: 4px solid var(--vr-brand-red); padding-left: 10px; }

/* ============================================================================
   Breaking-news bar
   ========================================================================== */
.breaking-news,
.breaking-news-wrapper {
    border-left: 4px solid var(--vr-brand-yellow);
}
.breaking-news .breaking-label,
.breaking-news-label,
.br-news-label {
    background: var(--vr-brand-red) !important;
    color: #fff !important;
    font-weight: 700 !important;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ============================================================================
   Forms
   ========================================================================== */
.form-control:focus,
.form-textarea:focus,
.search-form-control:focus {
    border-color: var(--vr-brand-red) !important;
    box-shadow: 0 0 0 3px rgba(216, 31, 38, 0.15) !important;
}

/* ============================================================================
   Pagination
   ========================================================================== */
.pagination .page-item.active .page-link,
.page-item.active .page-link {
    background-color: var(--vr-brand-red) !important;
    border-color: var(--vr-brand-red) !important;
    color: #fff !important;
}
.page-link { color: var(--vr-text-main); }
.page-link:hover { color: var(--vr-brand-red); }

/* ============================================================================
   Post detail — headings, links, blockquote, tags
   ========================================================================== */
.post-content .post-title { letter-spacing: -0.01em; }
.post-body a,
.entry-content a { color: var(--vr-brand-red); text-underline-offset: 3px; }
.post-body a:hover,
.entry-content a:hover { color: var(--vr-brand-red-dark); }
.post-body blockquote,
.entry-content blockquote {
    border-left: 4px solid var(--vr-brand-red);
    background: rgba(255, 210, 0, 0.08);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}
.tag-item a,
.post-tags a {
    transition: all .18s ease;
    border-radius: 999px;
}
.tag-item a:hover,
.post-tags a:hover {
    background: var(--vr-brand-red) !important;
    color: #fff !important;
    border-color: var(--vr-brand-red) !important;
}

/* ============================================================================
   Footer
   ========================================================================== */
footer .footer,
.site-footer,
footer.footer {
    border-top: 4px solid var(--vr-brand-red);
    box-shadow: inset 0 3px 0 var(--vr-brand-yellow);
}
.footer-widget .widget-title {
    position: relative;
    padding-bottom: 8px;
}
.footer-widget .widget-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--vr-brand-yellow);
}
.footer-widget .footer-posts .post-item-small .title a:hover { color: var(--vr-brand-yellow) !important; }

/* ============================================================================
   Scrollbar + back-to-top
   ========================================================================== */
* { scrollbar-color: var(--vr-brand-red) transparent; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb {
    background: var(--vr-brand-red);
    border-radius: 999px;
    border: 2px solid #fff;
}
::-webkit-scrollbar-thumb:hover { background: var(--vr-brand-red-dark); }

.scroll-to-top,
#scroll-to-top,
.back-to-top {
    background: var(--vr-brand-red) !important;
    color: #fff !important;
    border: 2px solid var(--vr-brand-yellow) !important;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2) !important;
}

/* ============================================================================
   Dark mode tweaks (site currently runs light, kept for completeness)
   ========================================================================== */
[data-bs-theme="dark"] .topbar {
    background-image: linear-gradient(90deg, var(--vr-brand-red-darker), var(--vr-brand-red-dark));
}
[data-bs-theme="dark"] .btn-load-more-posts {
    background: transparent !important;
    color: var(--vr-brand-yellow) !important;
    border-color: var(--vr-brand-yellow) !important;
}

/* ============================================================================
   Bhaskar-style density + newspaper feel  (structure unchanged, CSS only)
   ========================================================================== */

/* tighter vertical rhythm */
.section { margin-bottom: 30px; }
.post-item { margin-bottom: 26px; }
@media (max-width: 767.98px) {
    .section { margin-bottom: 22px; }
    .post-item { margin-bottom: 20px; }
}

/* headlines: heavier, tighter, red on hover (like bhaskar.com) */
.post-item .title,
.post-item-horizontal .title,
.post-item-small .title,
.post-item-mid .title,
.recommended-posts .post-item .title {
    font-weight: 700;
    letter-spacing: -0.005em;
    line-height: 1.35;
}
.post-item .title a,
.post-item-horizontal .title a,
.post-item-small .title a,
.post-item-mid .title a { transition: color .15s ease; }
.post-item .title a:hover,
.post-item-horizontal .title a:hover,
.post-item-small .title a:hover,
.post-item-mid .title a:hover { color: var(--vr-brand-red); }

/* horizontal list: hairline dividers between stories */
.section-content .post-item-horizontal {
    border-bottom: 1px solid var(--vr-gray-200);
    padding-bottom: 18px;
    margin-bottom: 18px;
}
.section-content .post-item-horizontal:last-child {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}
.post-item-horizontal .image { border-radius: var(--border-radius); }

/* compact meta line with a red clock feel */
.post-meta .meta-item .vr-icon { color: var(--vr-brand-red); }
.post-meta .meta-item a.a-username:hover { color: var(--vr-brand-red); }

/* section heading: keep the red tab, make "view all" read like a news "more" link */
.section .section-title .view-all::after {
    content: " \203A";
    font-weight: 700;
}
.section .section-title .title { font-size: var(--vr-fs-md); }

/* featured hero: stronger headline, red category chip */
.featured-section .fs-item .title { font-weight: 800; }

/* article body: comfortable measure + bhaskar-like heading weights */
.entry-content { font-size: 1.05rem; line-height: 1.9; }
.entry-content h2, .entry-content h3, .entry-content h4 {
    font-weight: 700;
    margin-top: 1.6em;
    border-left: 4px solid var(--vr-brand-red);
    padding-left: 12px;
}
.post-content .post-title { font-weight: 800; line-height: 1.3; }

/* ============================================================================
   Editorial byline in the article author box
   ========================================================================== */
.editorial-byline {
    margin: 8px 0 12px;
    padding: 12px 16px;
    background: linear-gradient(90deg, rgba(216,31,38,0.09), rgba(255,210,0,0.12));
    border-left: 5px solid var(--vr-brand-red);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}
.editorial-byline .editorial-author {
    display: block;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--vr-brand-red-dark);
    line-height: 1.3;
}
.editorial-byline .editorial-note {
    display: block;
    margin-top: 2px;
    font-size: var(--vr-fs-md);
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--vr-text-muted);
}
[data-bs-theme="dark"] .editorial-byline .editorial-author { color: #ff6b6b; }

/* ============================================================================
   Footer logo — transparent, no dark box
   ========================================================================== */
.footer-widget .footer-logo {
    margin-bottom: 18px;
}
.footer-widget .footer-logo .logo {
    background: transparent !important;
    height: 66px !important;
    width: auto !important;
    max-width: 260px !important;
    object-fit: contain;
}

/* ============================================================================
   Visitor counter (footer)
   ========================================================================== */
.footer-visitors {
    background: rgba(0, 0, 0, 0.22);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 0;
}
.footer-visitors .visitor-counter {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 14px;
}
.footer-visitors .visitor-counter li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 999px;
    font-size: var(--vr-fs-sm);
}
.footer-visitors .visitor-counter .vc-label {
    color: var(--vr-gray-375);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: var(--vr-fs-xs);
}
.footer-visitors .visitor-counter .vc-value {
    font-weight: 800;
    font-size: 1rem;
    color: #fff;
    background: var(--vr-brand-red);
    border-radius: 6px;
    padding: 1px 8px;
    min-width: 28px;
    text-align: center;
}
.footer-visitors .visitor-counter li:first-child .vc-value {
    background: #1a8f4c; /* "online now" reads as green */
}
@media (max-width: 575.98px) {
    .footer-visitors .visitor-counter { gap: 8px; }
    .footer-visitors .visitor-counter li { padding: 5px 10px; }
}

/* ============================================================================
   Ad / banner slots  (in-house promo banners)
   ========================================================================== */
.container-bn {
    margin: 22px auto;
    overflow: visible !important;
}
.container-bn .bn-content { padding: 0 !important; }

/* keep leaderboard banners inside their column instead of overflowing + clipping */
.container-bn .bn-inner {
    max-width: 100% !important;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(17, 17, 19, 0.10);
    transition: transform .18s ease, box-shadow .18s ease;
}
.container-bn .bn-inner:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(17, 17, 19, 0.16);
}
.container-bn .bn-inner > a { width: 100%; height: 100%; }

/* sidebar banners: full width of the sidebar column */
.bn-sidebar-content .bn-inner { width: 100% !important; }
.bn-sidebar-content .bn-inner > a { min-height: 250px; }

/* header masthead slot beside the logo */
.header-brand .col-right { height: auto !important; overflow: visible !important; }
