/* Site chrome styles (header, nav, footer) shared across every public page. */
/* Extracted from inline <style> blocks that were previously duplicated in every page's HTML response. */

/* ==== Header ==== */
.client-logo-img img {
    width: 100% !important;
    height: 80px !important;
    object-fit: contain !important;
    object-position: center !important;
    max-width: 100%;
}

/* Scroll Progress Circle - Bottom Left with "Top" text inside - Smaller Size */
.scroll-progress-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
}

.scroll-progress-container:hover {
    transform: scale(1.1);
}

.scroll-progress-container:active {
    transform: scale(0.95);
}

.scroll-progress-container.show {
    opacity: 1;
    visibility: visible;
}

.scroll-progress-svg {
    width: 50px;
    height: 50px;
    transform: rotate(-90deg);
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
    position: absolute;
}

.scroll-progress-bg {
    fill: none;
    stroke: rgba(0,0,0,0.1);
    stroke-width: 4;
    stroke-linecap: round;
}

.scroll-progress-fill {
    fill: none;
    stroke: url(#scrollGradient);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    transition: stroke-dashoffset 0.1s ease;
}

.scroll-top-text-inside {
    position: absolute;
    font-size: 9px;
    font-weight: 700;
    color: #F48221;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    z-index: 10;
    pointer-events: none;
    text-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.btn-view,
.btn-view-job {
    padding: 8px 16px;
    background: linear-gradient(135deg, #F48221 0%, #D96A0A 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-view:hover,
.btn-view-job:hover {
    background: linear-gradient(135deg,rgb(255, 255, 255) 0%,rgb(255, 255, 255) 100%);

    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(78, 77, 77, 0.3);
}

@media (max-width: 768px) {
    .scroll-progress-container {
        display: none !important;
    }
    
    .scroll-progress-svg {
        width: 45px;
        height: 45px;
    }
    
    .scroll-progress-bg,
    .scroll-progress-fill {
        stroke-width: 3.5;
    }
    
    .scroll-top-text-inside {
        font-size: 8px;
    }
}

/* Updated Social Media Follow Icon Styles */
.clb-social-holder {
    list-style: none;
    padding: 0;
    margin: 0;
}

.clb-social-holder li {
    display: inline-block;
    margin: 0 8px;
    vertical-align: middle;
}

.clb-social-holder-follow {
    font-size: 13px;
    font-weight: 600;
    color: #F48221;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-right: 5px !important;
}

/* Remove "/" separators from vertical social media links on the right side */
.elements-bar.right .clb-social-holder li a:after {
    content: none !important;
    display: none !important;
}


.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    line-height: 1;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-linkedin {
    background: linear-gradient(135deg, #e4405f 0%, #f77737 50%, #fccc63 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(228, 64, 95, 0.3);
}

.social-linkedin:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(228, 64, 95, 0.4);
    background: linear-gradient(135deg, #fccc63 0%, #f77737 50%, #e4405f 100%);
}

.social-facebook {
    background: linear-gradient(135deg, #e4405f 0%, #f77737 50%, #fccc63 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(228, 64, 95, 0.3);
}

.social-facebook:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(228, 64, 95, 0.4);
    background: linear-gradient(135deg, #fccc63 0%, #f77737 50%, #e4405f 100%);
}

.social-instagram {
    background: linear-gradient(135deg, #e4405f 0%, #f77737 50%, #fccc63 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(228, 64, 95, 0.3);
}

.social-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(228, 64, 95, 0.4);
    background: linear-gradient(135deg, #fccc63 0%, #f77737 50%, #e4405f 100%);
}

.social-telegram {
    background: linear-gradient(135deg, #e4405f 0%, #f77737 50%, #fccc63 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(228, 64, 95, 0.3);
}

.social-telegram:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.4);
    background: linear-gradient(135deg, #fccc63 0%, #f77737 50%, #e4405f 100%);
}

.social-link i,
.social-link svg {
    color: #ffffff;
    fill: currentColor;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    line-height: 1;
}

.social-link:hover i,
.social-link:hover svg {
    transform: scale(1.15) rotate(5deg);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Footer Social Icons */
.footer-social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    line-height: 1;
}

.footer-social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.footer-social-link:hover::before {
    left: 100%;
}

.footer-social-link i {
    color: #ffffff;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    line-height: 1;
    z-index: 1;
    position: relative;
}

.footer-social-link:hover i {
    transform: scale(1.15) rotate(5deg);
}

.footer-social-linkedin {
    background: linear-gradient(135deg, #e4405f 0%, #f77737 50%, #fccc63 100%);
    box-shadow: 0 4px 15px rgba(228, 64, 95, 0.3);
}

.footer-social-linkedin:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(228, 64, 95, 0.4);
    background: linear-gradient(135deg, #fccc63 0%, #f77737 50%, #e4405f 100%);
}

.footer-social-facebook {
    background: linear-gradient(135deg, #e4405f 0%, #f77737 50%, #fccc63 100%);
    box-shadow: 0 4px 15px rgba(228, 64, 95, 0.3);
}

.footer-social-facebook:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(228, 64, 95, 0.4);
    background: linear-gradient(135deg, #fccc63 0%, #f77737 50%, #e4405f 100%);
}

.footer-social-instagram {
    background: linear-gradient(135deg, #e4405f 0%, #f77737 50%, #fccc63 100%);
    box-shadow: 0 4px 15px rgba(228, 64, 95, 0.3);
}

.footer-social-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(228, 64, 95, 0.4);
    background: linear-gradient(135deg, #fccc63 0%, #f77737 50%, #e4405f 100%);
}

.footer-social-telegram {
    background: linear-gradient(135deg, #e4405f 0%, #f77737 50%, #fccc63 100%);
    box-shadow: 0 4px 15px rgba(228, 64, 95, 0.3);
}

.footer-social-telegram:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.4);
    background: linear-gradient(135deg, #fccc63 0%, #f77737 50%, #e4405f 100%);
}

.footer-social-link svg {
    z-index: 1;
    position: relative;
}

/* Dynamic platforms from admin (same visual as existing icons) */
.footer-social-youtube,
.footer-social-twitter,
.footer-social-whatsapp,
.footer-social-generic {
    background: linear-gradient(135deg, #e4405f 0%, #f77737 50%, #fccc63 100%);
    box-shadow: 0 4px 15px rgba(228, 64, 95, 0.3);
}

.footer-social-youtube:hover,
.footer-social-twitter:hover,
.footer-social-whatsapp:hover,
.footer-social-generic:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(228, 64, 95, 0.4);
    background: linear-gradient(135deg, #fccc63 0%, #f77737 50%, #e4405f 100%);
}

.social-youtube,
.social-twitter,
.social-whatsapp,
.social-generic {
    background: linear-gradient(135deg, #e4405f 0%, #f77737 50%, #fccc63 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(228, 64, 95, 0.3);
}

.social-youtube:hover,
.social-twitter:hover,
.social-whatsapp:hover,
.social-generic:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(228, 64, 95, 0.4);
    background: linear-gradient(135deg, #fccc63 0%, #f77737 50%, #e4405f 100%);
}

@media (max-width: 768px) {
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .footer-social-link {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .clb-social-holder-follow {
        font-size: 12px;
    }
}

/* Navbar white styling when hero overlays are present */
.challenge-detail-hero ~ * .header,
.submit-hero ~ * .header,
.challenges-hero ~ * .header,
.jobs-hero ~ * .header,
.job-detail-hero ~ * .header,
.internships-hero ~ * .header,
.internship-detail-hero ~ * .header,
.apply-hero ~ * .header,
.talent-hero ~ * .header,
.dashboard-hero ~ * .header,
.registration-hero ~ * .header,
.edit-hero ~ * .header,
.products-hero ~ * .header,
.clb-page-headline ~ * .header,
body:has(.challenge-detail-hero) .header,
body:has(.submit-hero) .header,
body:has(.challenges-hero) .header,
body:has(.jobs-hero) .header,
body:has(.job-detail-hero) .header,
body:has(.internships-hero) .header,
body:has(.internship-detail-hero) .header,
body:has(.apply-hero) .header,
body:has(.talent-hero) .header,
body:has(.dashboard-hero) .header,
body:has(.registration-hero) .header,
body:has(.edit-hero) .header,
body:has(.products-hero) .header,
body:has(.news-hero) .header,
body:has(.clb-page-headline) .header {
    color: #ffffff !important;
}

body:has(.challenge-detail-hero) .header .menu-link span,
body:has(.submit-hero) .header .menu-link span,
body:has(.challenges-hero) .header .menu-link span,
body:has(.jobs-hero) .header .menu-link span,
body:has(.job-detail-hero) .header .menu-link span,
body:has(.internships-hero) .header .menu-link span,
body:has(.internship-detail-hero) .header .menu-link span,
body:has(.apply-hero) .header .menu-link span,
body:has(.talent-hero) .header .menu-link span,
body:has(.dashboard-hero) .header .menu-link span,
body:has(.registration-hero) .header .menu-link span,
body:has(.edit-hero) .header .menu-link span,
body:has(.products-hero) .header .menu-link span,
body:has(.news-hero) .header .menu-link span,
body:has(.clb-page-headline) .header .menu-link span {
    color: #ffffff !important;
}

body:has(.challenge-detail-hero) .header .hamburger,
body:has(.submit-hero) .header .hamburger,
body:has(.challenges-hero) .header .hamburger,
body:has(.jobs-hero) .header .hamburger,
body:has(.job-detail-hero) .header .hamburger,
body:has(.internships-hero) .header .hamburger,
body:has(.internship-detail-hero) .header .hamburger,
body:has(.apply-hero) .header .hamburger,
body:has(.talent-hero) .header .hamburger,
body:has(.dashboard-hero) .header .hamburger,
body:has(.registration-hero) .header .hamburger,
body:has(.edit-hero) .header .hamburger,
body:has(.products-hero) .header .hamburger,
body:has(.news-hero) .header .hamburger,
body:has(.clb-page-headline) .header .hamburger {
    border-color: rgba(255, 255, 255, 0.3) !important;
}

body:has(.challenge-detail-hero) .header .hamburger ._shape,
body:has(.submit-hero) .header .hamburger ._shape,
body:has(.challenges-hero) .header .hamburger ._shape,
body:has(.jobs-hero) .header .hamburger ._shape,
body:has(.job-detail-hero) .header .hamburger ._shape,
body:has(.internships-hero) .header .hamburger ._shape,
body:has(.internship-detail-hero) .header .hamburger ._shape,
body:has(.apply-hero) .header .hamburger ._shape,
body:has(.talent-hero) .header .hamburger ._shape,
body:has(.dashboard-hero) .header .hamburger ._shape,
body:has(.registration-hero) .header .hamburger ._shape,
body:has(.edit-hero) .header .hamburger ._shape,
body:has(.products-hero) .header .hamburger ._shape,
body:has(.news-hero) .header .hamburger ._shape,
body:has(.clb-page-headline) .header .hamburger ._shape {
    background-color: #ffffff !important;
}

body.has-hero-overlay .header,
body.has-hero-overlay .header .menu-link span,
body.has-hero-overlay .header .menu-link {
    color: #ffffff !important;
}

body.has-hero-overlay .header .hamburger {
    border-color: rgba(255, 255, 255, 0.3) !important;
}

body.has-hero-overlay .header .hamburger ._shape {
    background-color: #ffffff !important;
}

/* Navbar counters are now enabled */

/* Dropdown menu enhancements */
.has-submenu {
    position: relative;
}

.has-submenu > .menu-link {
    cursor: pointer;
}

.has-submenu-icon {
    margin-left: 8px;
    font-size: 0.75em;
    transition: transform 0.3s ease;
    vertical-align: middle;
}

.has-submenu.open .has-submenu-icon,
.has-submenu.visible .has-submenu-icon,
.has-submenu:hover .has-submenu-icon {
    transform: rotate(180deg);
}

.sub-nav,
.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #ffffff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    padding: 8px 0;
    margin-top: 10px;
    z-index: 1000;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

/* All dropdowns work on click (not hover) - same behavior as Account */
.has-submenu:hover > .sub-nav,
.has-submenu:hover > .sub-menu {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-10px) !important;
}

.has-submenu.open > .sub-nav,
.has-submenu.open > .sub-menu,
.has-submenu.visible > .sub-nav,
.has-submenu.visible > .sub-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

/* Keep dropdown open when clicking inside */
.has-submenu.open .sub-menu:hover,
.has-submenu.open .sub-nav:hover {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.sub-nav .menu-link,
.sub-menu .menu-link {
    display: block;
    padding: 12px 24px;
    color: #1a202c !important;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.sub-nav .menu-link:hover,
.sub-menu .menu-link:hover {
    background: linear-gradient(90deg, rgba(244, 130, 33, 0.1) 0%, transparent 100%);
    color: #F48221 !important;
    padding-left: 28px;
}

/* Ensure dropdown text is always dark, even when navbar is white */
.sub-nav .menu-link span,
.sub-menu .menu-link span {
    color: #1a202c !important;
}

.sub-nav .menu-link:hover span,
.sub-menu .menu-link:hover span {
    color: #F48221 !important;
}

/* Account menu container - positioned to the right */
.account-menu-container {
    display: flex;
    align-items: center;
    margin-left: auto;
}

/* Account menu wrapper - positioned absolutely outside navbar on the absolute far right */
.account-menu-wrapper {
    position: fixed;
    top: 25px;
    right: 26px;
    z-index: 10001;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.account-menu-wrapper #account-menu {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
}

/* Account avatar styling */
.account-avatar-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.account-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e2e8f0;
    display: block;
}

.account-avatar-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F48221 0%, #D96A0A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e2e8f0;
    color: #ffffff;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.account-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
}

.account-menu-item {
    position: relative;
}

.account-menu-item .sub-nav,
.account-menu-item .sub-menu {
    right: 0;
    left: auto;
}

/* Account menu - click to open, stays open until click outside or on item */
.account-menu-item:hover > .sub-nav,
.account-menu-item:hover > .sub-menu {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-10px) !important;
}

.account-menu-item.open > .sub-nav,
.account-menu-item.open > .sub-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

/* Smooth transition for account menu */
.account-submenu {
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease !important;
}

/* Ensure account menu stays visible when open and clicked inside */
.account-menu-item.open .account-submenu:hover,
.account-menu-item.open .account-submenu:active {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Desktop: Account menu wrapper positioning */
@media screen and (min-width: 769px) {
    .account-menu-wrapper {
        position: fixed;
        top: 30px;
        right: 20px;
        z-index: 10001;
    }
    
    .mbl-overlay-container {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        width: 100%;
        height: 100%;
    }
    
    .nav-container-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        width: 100%;
        flex: 1;
    }
    
    #mega-menu-wrap {
        flex: 1;
    }
}

/* Mobile: Account menu wrapper positioning */
@media screen and (max-width: 768px) {
    .account-menu-wrapper {
        position: fixed;
        top: 30px;
        bottom: auto;
        right: 23px;
        z-index: 10001;
    }
    
    /* Hide the full background overlay - only show white rectangle container */
    .menu-mbl-overlay .mbl-overlay-bg {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }
    
    /* Make sure the overlay container itself doesn't have background covering the whole screen */
    .menu-mbl-overlay {
        background: transparent !important;
    }
    
    /* Ensure white rectangle container is visible and properly positioned */
    .menu-mbl-overlay .mbl-overlay-container {
        background-color: #fff !important;
        position: relative !important;
        z-index: 1 !important;
    }
    
    /* Lower mobile overlay menu to avoid covering Vintage logo */
    .mbl-overlay-container {
        padding-top: 100px !important;
        margin-top: 20px !important;
    }
    
    /* Ensure close bar doesn't overlap logo */
    .close-bar {
        margin-top: 20px !important;
        padding-top: 20px !important;
    }
    
    .account-menu-item .sub-nav,
    .account-menu-item .sub-menu {
        right: 0;
        left: auto;
        width: auto;
        min-width: 200px;
        position: absolute;
        top: 100%;
        bottom: auto;
        margin-top: 10px;
    }
    
    .account-menu-item:hover > .sub-nav,
    .account-menu-item:hover > .sub-menu {
        display: none !important;
    }
    
    .account-menu-item.open > .sub-nav,
    .account-menu-item.open > .sub-menu {
        display: block !important;
    }
}

/* Mobile dropdown styling */
@media screen and (max-width: 768px) {
    .sub-nav,
    .sub-menu {
        position: static;
        display: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.05);
        border-radius: 0;
        padding: 0;
        margin: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: none;
    }

    .has-submenu.open > .sub-nav,
    .has-submenu.open > .sub-menu,
    .has-submenu.visible > .sub-nav,
    .has-submenu.visible > .sub-menu {
        display: block;
    }

    .sub-nav .menu-link,
    .sub-menu .menu-link {
        padding: 12px 20px 12px 50px;
        font-size: 14px;
    }

    .sub-nav .menu-link:hover,
    .sub-menu .menu-link:hover {
        padding-left: 50px;
    }

    .has-submenu-icon {
        float: right;
        margin-top: 3px;
    }

    .account-menu .sub-nav,
    .account-menu .sub-menu {
        right: auto;
        left: 0;
    }
}

/* Desktop - all dropdowns work on click (not hover) */
@media screen and (min-width: 769px) {
    /* Icon rotation only when open */
    .header:not(.-mobile) .has-submenu.open .has-submenu-icon {
        transform: rotate(180deg);
    }
    
    /* Hover effect on toggle button */
    .header:not(.-mobile) .has-submenu > a:hover {
        color: #F48221;
    }
    
    /* No hover on dropdowns - only click to open */
    .header:not(.-mobile) .has-submenu:not(.open):hover > .sub-nav,
    .header:not(.-mobile) .has-submenu:not(.open):hover > .sub-menu {
        display: none !important;
    }
}

/* Navbar white styling when hero overlays are present */
body.has-hero-overlay .header,
body.has-hero-overlay .header .menu-link span,
body.has-hero-overlay .header .menu-link {
    color: #ffffff !important;
}

/* Dropdown menus always have dark text, even when navbar is white */
body.has-hero-overlay .sub-nav .menu-link,
body.has-hero-overlay .sub-menu .menu-link,
body.has-hero-overlay .sub-nav .menu-link span,
body.has-hero-overlay .sub-menu .menu-link span {
    color: #1a202c !important;
}

body.has-hero-overlay .sub-nav .menu-link:hover,
body.has-hero-overlay .sub-menu .menu-link:hover,
body.has-hero-overlay .sub-nav .menu-link:hover span,
body.has-hero-overlay .sub-menu .menu-link:hover span {
    color: #F48221 !important;
}

body.has-hero-overlay .header .hamburger {
    border-color: rgba(255, 255, 255, 0.3) !important;
}

body.has-hero-overlay .header .hamburger ._shape {
    background-color: #ffffff !important;
}

/* Modern browser support with :has() */
body:has(.challenge-detail-hero) .header,
body:has(.submit-hero) .header,
body:has(.challenges-hero) .header,
body:has(.jobs-hero) .header,
body:has(.job-detail-hero) .header,
body:has(.internships-hero) .header,
body:has(.internship-detail-hero) .header,
body:has(.apply-hero) .header,
body:has(.talent-hero) .header,
body:has(.dashboard-hero) .header,
body:has(.registration-hero) .header,
body:has(.edit-hero) .header,
body:has(.products-hero) .header,
body:has(.news-hero) .header,
body:has(.clb-page-headline) .header {
    color: #ffffff !important;
}

body:has(.challenge-detail-hero) .header .menu-link span,
body:has(.submit-hero) .header .menu-link span,
body:has(.challenges-hero) .header .menu-link span,
body:has(.jobs-hero) .header .menu-link span,
body:has(.job-detail-hero) .header .menu-link span,
body:has(.internships-hero) .header .menu-link span,
body:has(.internship-detail-hero) .header .menu-link span,
body:has(.apply-hero) .header .menu-link span,
body:has(.talent-hero) .header .menu-link span,
body:has(.dashboard-hero) .header .menu-link span,
body:has(.registration-hero) .header .menu-link span,
body:has(.edit-hero) .header .menu-link span,
body:has(.products-hero) .header .menu-link span,
body:has(.news-hero) .header .menu-link span,
body:has(.clb-page-headline) .header .menu-link span {
    color: #ffffff !important;
}

body:has(.challenge-detail-hero) .header .hamburger,
body:has(.submit-hero) .header .hamburger,
body:has(.challenges-hero) .header .hamburger,
body:has(.jobs-hero) .header .hamburger,
body:has(.job-detail-hero) .header .hamburger,
body:has(.internships-hero) .header .hamburger,
body:has(.internship-detail-hero) .header .hamburger,
body:has(.apply-hero) .header .hamburger,
body:has(.talent-hero) .header .hamburger,
body:has(.dashboard-hero) .header .hamburger,
body:has(.registration-hero) .header .hamburger,
body:has(.edit-hero) .header .hamburger,
body:has(.products-hero) .header .hamburger,
body:has(.news-hero) .header .hamburger,
body:has(.clb-page-headline) .header .hamburger {
    border-color: rgba(255, 255, 255, 0.3) !important;
}

body:has(.challenge-detail-hero) .header .hamburger ._shape,
body:has(.submit-hero) .header .hamburger ._shape,
body:has(.challenges-hero) .header .hamburger ._shape,
body:has(.jobs-hero) .header .hamburger ._shape,
body:has(.job-detail-hero) .header .hamburger ._shape,
body:has(.internships-hero) .header .hamburger ._shape,
body:has(.internship-detail-hero) .header .hamburger ._shape,
body:has(.apply-hero) .header .hamburger ._shape,
body:has(.talent-hero) .header .hamburger ._shape,
body:has(.dashboard-hero) .header .hamburger ._shape,
body:has(.registration-hero) .header .hamburger ._shape,
body:has(.edit-hero) .header .hamburger ._shape,
body:has(.products-hero) .header .hamburger ._shape,
body:has(.news-hero) .header .hamburger ._shape,
body:has(.clb-page-headline) .header .hamburger ._shape {
    background-color: #ffffff !important;
}

/* Dropdown menus always have dark text, even when navbar is white */
body:has(.challenge-detail-hero) .sub-nav .menu-link,
body:has(.submit-hero) .sub-nav .menu-link,
body:has(.challenges-hero) .sub-nav .menu-link,
body:has(.jobs-hero) .sub-nav .menu-link,
body:has(.job-detail-hero) .sub-nav .menu-link,
body:has(.internships-hero) .sub-nav .menu-link,
body:has(.internship-detail-hero) .sub-nav .menu-link,
body:has(.apply-hero) .sub-nav .menu-link,
body:has(.talent-hero) .sub-nav .menu-link,
body:has(.dashboard-hero) .sub-nav .menu-link,
body:has(.registration-hero) .sub-nav .menu-link,
body:has(.edit-hero) .sub-nav .menu-link,
body:has(.products-hero) .sub-nav .menu-link,
body:has(.news-hero) .sub-nav .menu-link,
body:has(.clb-page-headline) .sub-nav .menu-link,
body:has(.challenge-detail-hero) .sub-menu .menu-link,
body:has(.submit-hero) .sub-menu .menu-link,
body:has(.challenges-hero) .sub-menu .menu-link,
body:has(.jobs-hero) .sub-menu .menu-link,
body:has(.job-detail-hero) .sub-menu .menu-link,
body:has(.internships-hero) .sub-menu .menu-link,
body:has(.internship-detail-hero) .sub-menu .menu-link,
body:has(.apply-hero) .sub-menu .menu-link,
body:has(.talent-hero) .sub-menu .menu-link,
body:has(.dashboard-hero) .sub-menu .menu-link,
body:has(.registration-hero) .sub-menu .menu-link,
body:has(.edit-hero) .sub-menu .menu-link,
body:has(.products-hero) .sub-menu .menu-link,
body:has(.news-hero) .sub-menu .menu-link,
body:has(.clb-page-headline) .sub-menu .menu-link {
    color: #1a202c !important;
}

body:has(.challenge-detail-hero) .sub-nav .menu-link span,
body:has(.submit-hero) .sub-nav .menu-link span,
body:has(.challenges-hero) .sub-nav .menu-link span,
body:has(.jobs-hero) .sub-nav .menu-link span,
body:has(.job-detail-hero) .sub-nav .menu-link span,
body:has(.internships-hero) .sub-nav .menu-link span,
body:has(.internship-detail-hero) .sub-nav .menu-link span,
body:has(.apply-hero) .sub-nav .menu-link span,
body:has(.talent-hero) .sub-nav .menu-link span,
body:has(.dashboard-hero) .sub-nav .menu-link span,
body:has(.registration-hero) .sub-nav .menu-link span,
body:has(.edit-hero) .sub-nav .menu-link span,
body:has(.products-hero) .sub-nav .menu-link span,
body:has(.news-hero) .sub-nav .menu-link span,
body:has(.clb-page-headline) .sub-nav .menu-link span,
body:has(.challenge-detail-hero) .sub-menu .menu-link span,
body:has(.submit-hero) .sub-menu .menu-link span,
body:has(.challenges-hero) .sub-menu .menu-link span,
body:has(.jobs-hero) .sub-menu .menu-link span,
body:has(.job-detail-hero) .sub-menu .menu-link span,
body:has(.internships-hero) .sub-menu .menu-link span,
body:has(.internship-detail-hero) .sub-menu .menu-link span,
body:has(.apply-hero) .sub-menu .menu-link span,
body:has(.talent-hero) .sub-menu .menu-link span,
body:has(.dashboard-hero) .sub-menu .menu-link span,
body:has(.registration-hero) .sub-menu .menu-link span,
body:has(.edit-hero) .sub-menu .menu-link span,
body:has(.products-hero) .sub-menu .menu-link span,
body:has(.news-hero) .sub-menu .menu-link span,
body:has(.clb-page-headline) .sub-menu .menu-link span {
    color: #1a202c !important;
}

body:has(.challenge-detail-hero) .sub-nav .menu-link:hover,
body:has(.submit-hero) .sub-nav .menu-link:hover,
body:has(.challenges-hero) .sub-nav .menu-link:hover,
body:has(.jobs-hero) .sub-nav .menu-link:hover,
body:has(.job-detail-hero) .sub-nav .menu-link:hover,
body:has(.internships-hero) .sub-nav .menu-link:hover,
body:has(.internship-detail-hero) .sub-nav .menu-link:hover,
body:has(.apply-hero) .sub-nav .menu-link:hover,
body:has(.talent-hero) .sub-nav .menu-link:hover,
body:has(.dashboard-hero) .sub-nav .menu-link:hover,
body:has(.registration-hero) .sub-nav .menu-link:hover,
body:has(.edit-hero) .sub-nav .menu-link:hover,
body:has(.products-hero) .sub-nav .menu-link:hover,
body:has(.news-hero) .sub-nav .menu-link:hover,
body:has(.clb-page-headline) .sub-nav .menu-link:hover,
body:has(.challenge-detail-hero) .sub-menu .menu-link:hover,
body:has(.submit-hero) .sub-menu .menu-link:hover,
body:has(.challenges-hero) .sub-menu .menu-link:hover,
body:has(.jobs-hero) .sub-menu .menu-link:hover,
body:has(.job-detail-hero) .sub-menu .menu-link:hover,
body:has(.internships-hero) .sub-menu .menu-link:hover,
body:has(.internship-detail-hero) .sub-menu .menu-link:hover,
body:has(.apply-hero) .sub-menu .menu-link:hover,
body:has(.talent-hero) .sub-menu .menu-link:hover,
body:has(.dashboard-hero) .sub-menu .menu-link:hover,
body:has(.registration-hero) .sub-menu .menu-link:hover,
body:has(.edit-hero) .sub-menu .menu-link:hover,
body:has(.products-hero) .sub-menu .menu-link:hover,
body:has(.news-hero) .sub-menu .menu-link:hover,
body:has(.clb-page-headline) .sub-menu .menu-link:hover {
    color: #F48221 !important;
}

.clb-page-headline::before {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%) !important;
}

.clb-page-headline::after {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%) !important;
}

body:has(.alert-error, .alert-success, .alert-danger, .error-class, .success-class) .loader {
    display: none !important;
}

/* Session flash on this response: keep loader off (ajax-flash can remove alerts and break body:has(...) alone). */
body.vt-has-flash .loader {
    display: none !important;
    width: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
}
body.vt-has-flash .header,
body.vt-has-flash .site-content,
body.vt-has-flash .main-section,
body.vt-has-flash .clb-social,
body.vt-has-flash .purchase-theme {
    opacity: 1 !important;
    visibility: visible !important;
}

/* ==== Navigation ==== */
  /* Navigation numbering styles - matches navigation color */
  .nav.with-counters .nav-item {
    position: relative;
  }

  .nav.with-counters .nav-item>a>span:before {
    position: absolute;
    top: -8px;
    right: 0;
    font-size: 0.75em;
    font-weight: 600;
    background: transparent;
    color: currentColor;
    /* Matches parent menu-link color */
    opacity: 1;
    z-index: 1;
    padding: 0;
    margin: 0;
    line-height: 1;
  }

  /* Individual numbering for each menu item */
  .nav.with-counters .nav-item:nth-child(1)>a>span:before {
    content: "01";
  }

  .nav.with-counters .nav-item:nth-child(2)>a>span:before {
    content: "02";
  }

  .nav.with-counters .nav-item:nth-child(3)>a>span:before {
    content: "03";
  }

  .nav.with-counters .nav-item:nth-child(4)>a>span:before {
    content: "04";
  }

  .nav.with-counters .nav-item:nth-child(5)>a>span:before {
    content: "05";
  }

  .nav.with-counters .nav-item:nth-child(6)>a>span:before {
    content: "06";
  }

  .nav.with-counters .nav-item:nth-child(7)>a>span:before {
    content: "07";
  }

  .nav.with-counters .nav-item:nth-child(8)>a>span:before {
    content: "08";
  }

  .nav.with-counters .nav-item:nth-child(9)>a>span:before {
    content: "09";
  }

  /* Active (current) navigation item */
  .nav.with-counters .menu-link.is-active,
  .nav.with-counters .nav-item.is-active>.menu-link {
    color: #F48221 !important;
  }

  .nav.with-counters .menu-link.is-active span,
  .nav.with-counters .nav-item.is-active>.menu-link span {
    color: #F48221 !important;
  }

  .nav.with-counters .nav-item.is-active>.menu-link span:before {
    color: #F48221 !important;
  }

  /* Ensure dropdown sub-items have no numbering */
  .nav.with-counters .nav-item.has-submenu .sub-nav .nav-item>a>span:before,
  .nav.with-counters .nav-item.has-submenu .sub-nav .nav-item>a:before {
    display: none !important;
    content: none !important;
  }

  /* Navigation wrapper - flexbox for layout */
  .nav-container-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    position: relative;
    gap: 30px;
  }
 .account-menu-wrapper {
    position: relative;
    top: auto;
    right: auto;
    z-index: 100;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .account-menu-wrapper #account-menu {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
  }

  .account-menu-wrapper .account-menu-item {
    margin: 0;
    padding: 0;
  }

  /* Account menu container - positioned to the absolute right end */
  #account-menu {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    list-style: none;
  }

  /* Dropdown menu styling */
  .has-submenu {
    position: relative;
  }

  .has-submenu>.menu-link {
    cursor: pointer;
    position: relative;
  }

  .has-submenu-icon {
    margin-left: 8px;
    font-size: 0.75em;
    transition: transform 0.2s ease;
    vertical-align: middle;
  }

  .has-submenu.open .has-submenu-icon,
  .has-submenu.visible .has-submenu-icon {
    transform: rotate(180deg);
  }

  .sub-nav,
  .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #ffffff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    padding: 8px 0;
    margin-top: 10px;
    z-index: 1000;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  }

  /* Services and Career dropdowns - click to open (not hover), same behavior as Account */
  .has-submenu:hover>.sub-nav,
  .has-submenu:hover>.sub-menu {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-10px) !important;
  }

  .has-submenu.open>.sub-nav,
  .has-submenu.open>.sub-menu,
  .has-submenu.visible>.sub-nav,
  .has-submenu.visible>.sub-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
  }

  /* Keep dropdown open when clicking inside */
  .has-submenu.open .sub-menu:hover,
  .has-submenu.open .sub-nav:hover,
  .has-submenu.open .sub-menu:active,
  .has-submenu.open .sub-nav:active {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .sub-nav .menu-link,
  .sub-menu .menu-link {
    display: block;
    padding: 12px 24px;
    color: #1a202c !important;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
  }

  .sub-nav .menu-link:hover,
  .sub-menu .menu-link:hover {
    background: linear-gradient(90deg, rgba(244, 130, 33, 0.1) 0%, transparent 100%);
    color: #F48221 !important;
    padding-left: 28px;
  }

  /* Ensure dropdown text is always dark */
  .sub-nav .menu-link span,
  .sub-menu .menu-link span {
    color: #1a202c !important;
  }

  .sub-nav .menu-link:hover span,
  .sub-menu .menu-link:hover span {
    color: #F48221 !important;
  }

  /* Account menu - click to open, stays open until click outside or on item */
  .account-menu-item {
    position: relative;
    margin-top: 0;
    /* Reset any inherited margin */
  }

  .account-menu-item .sub-nav,
  .account-menu-item .sub-menu {
    right: 0;
    left: auto;
    top: 100%;
    bottom: auto;
  }

  /* Account avatar styling */
  .account-avatar-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .account-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e2e8f0;
    display: block;
  }

  .account-avatar-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F48221 0%, #D96A0A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e2e8f0;
    color: #ffffff;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .account-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  /* #masthead #account-menu .account-menu-item > .account-toggle,
  #masthead #account-menu .account-menu-item > .account-toggle > span,
  #masthead #account-menu .account-menu-item > .account-toggle:hover,
  #masthead #account-menu .account-menu-item > .account-toggle:hover > span,
  #masthead #account-menu .account-menu-item > .account-toggle:focus,
  #masthead #account-menu .account-menu-item > .account-toggle:focus > span,
  #masthead #account-menu .account-menu-item.open > .account-toggle,
  #masthead #account-menu .account-menu-item.open > .account-toggle > span {
    color: #000000 !important;
  } */
  /* Account menu - NO hover, only click to toggle */
  .account-menu-item:hover>.sub-nav,
  .account-menu-item:hover>.sub-menu {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-10px) !important;
  }

  .account-menu-item.open>.sub-nav,
  .account-menu-item.open>.sub-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
  }

  /* Keep dropdown open when hovered or clicked inside */
  .account-menu-item.open .account-submenu:hover,
  .account-menu-item.open .account-submenu:active {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  /* Smooth transition for account menu */
  .account-submenu {
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease !important;
  }

  /* Mobile responsiveness */
  @media screen and (max-width: 768px) {
    .nav-container-wrapper {
      flex-direction: column;
      align-items: flex-start;
    }

    /* Account menu wrapper - mobile positioning inside header flow */
    .account-menu-wrapper {
      position: relative;
      top: auto;
      bottom: auto;
      right: auto;
      z-index: 100;
    }

    /* Hide the full background overlay - only show white rectangle container */
    .menu-mbl-overlay .mbl-overlay-bg {
      display: none !important;
      opacity: 0 !important;
      visibility: hidden !important;
    }

    /* Make sure the overlay container itself doesn't have background covering the whole screen */
    .menu-mbl-overlay {
      background: transparent !important;
    }

    /* Ensure white rectangle container is visible and properly positioned */
    .menu-mbl-overlay .mbl-overlay-container {
      background-color: #fff !important;
      position: relative !important;
      z-index: 1 !important;
      max-height: calc(100vh - 20px) !important;
      overflow-y: auto !important;
      -webkit-overflow-scrolling: touch;
    }

    /* Lower mobile overlay menu to avoid covering Vintage logo */
    .mbl-overlay-container {
      padding-top: 70px !important;
      margin-top: 10px !important;
    }
    #primary-menu {
      padding-bottom: 120px !important;
    }

    /* Ensure close bar doesn't overlap logo */
    .close-bar {
      margin-top: 10px !important;
      padding-top: 10px !important;
    }

    .sub-nav,
    .sub-menu {
      position: static;
      display: none;
      box-shadow: none;
      background: rgba(0, 0, 0, 0.05);
      border-radius: 0;
      padding: 0;
      margin: 0;
      opacity: 1;
      visibility: visible;
      transform: none;
      transition: none;
      width: 100%;
    }

    .has-submenu.open>.sub-nav,
    .has-submenu.open>.sub-menu,
    .has-submenu.visible>.sub-nav,
    .has-submenu.visible>.sub-menu {
      display: block;
    }

    .sub-nav .menu-link,
    .sub-menu .menu-link {
      padding: 12px 20px 12px 50px;
      font-size: 14px;
    }

    .sub-nav .menu-link:hover,
    .sub-menu .menu-link:hover {
      padding-left: 50px;
    }

    .has-submenu-icon {
      float: right;
      margin-top: 3px;
    }    .account-menu-item .sub-nav,
    .account-menu-item .sub-menu {
      right: 20px !important;
      left: auto !important;
      width: auto;
      min-width: 200px;
      position: fixed !important; /* Critical to escape header overflow clipping on phones */
      top: 80px !important; /* Anchors exactly under the header */
      bottom: auto;
      margin-top: 0 !important;
      background: #ffffff !important; /* Match mobile menu card style */
      border-radius: 8px; /* Clean edge */
      box-shadow: 0 4px 15px rgba(0,0,0,0.15) !important;
      padding: 10px 0 !important;
      z-index: 100000 !important;
    }
    .account-menu-item .sub-nav .menu-link,
    .account-menu-item .sub-menu .menu-link {
        padding: 10px 20px !important;
        color: #1a202c !important;
        display: block !important;
    }
    .account-menu-item .sub-nav .menu-link span,
    .account-menu-item .sub-menu .menu-link span {
        color: #1a202c !important;
    }
    /* Rescue the inner List Items from being purged by the global theme's mobile-header-hider */
    #masthead #account-menu-wrapper .sub-menu li,
    #masthead #account-menu-wrapper .sub-nav li,
    #masthead #account-menu-wrapper .sub-menu .nav-item,
    #masthead #account-menu-wrapper .sub-nav .nav-item {
        display: block !important;
        width: 100% !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
    }
    
    .account-menu-item:hover>.sub-nav,
    .account-menu-item:hover>.sub-menu {
      display: none !important;
    }

    .account-menu-item.open>.sub-nav,
    .account-menu-item.open>.sub-menu {
      display: block !important;
      visibility: visible !important;
      opacity: 1 !important;
      transform: none !important;
      pointer-events: auto !important;
    }
    .header.-mobile #account-menu .account-menu-item>.sub-nav,
    .header.-mobile #account-menu .account-menu-item>.sub-menu {
      height: auto !important;
      overflow: visible !important;
      padding-left: 0 !important;
    }
    .header.-mobile #account-menu .account-menu-item.open>.sub-nav,
    .header.-mobile #account-menu .account-menu-item.open>.sub-menu {
      height: auto !important;
      overflow: visible !important;
    }
  }

  /* Desktop - all dropdowns work on click (not hover) */
  @media screen and (min-width: 769px) {

    /* Icon rotation only when open */
    .has-submenu.open .has-submenu-icon {
      transform: rotate(180deg);
    }

    /* Hover effect on toggle button */
    .has-submenu>a:hover {
      color: #F48221;
    }

    /* No hover on dropdowns - only click */
    .has-submenu:not(.open):hover>.sub-nav,
    .has-submenu:not(.open):hover>.sub-menu {
      display: none !important;
    }
  }

  /* Custom responsive visibility classes */
  @media screen and (max-width: 768px) {
    .hide-on-mbl {
      display: none !important;
    }

    .show-on-mbl {
      display: block !important;
    }
  }

  @media screen and (min-width: 769px) {
    .show-on-mbl {
      display: none !important;
    }
  }

  @media screen and (max-width: 768px) {

    #masthead .mbl-overlay .menu-link,
    #masthead .mbl-overlay .menu-link span {
      color: #1a202c !important;
    }

    #masthead .mbl-overlay .menu-link.is-active,
    #masthead .mbl-overlay .menu-link.is-active span,
    #masthead .mbl-overlay .menu-link:hover,
    #masthead .mbl-overlay .menu-link:hover span {
      color: #F48221 !important;
    }

    #masthead .mbl-overlay .sub-nav .menu-link,
    #masthead .mbl-overlay .sub-nav .menu-link span,
    #masthead .mbl-overlay .sub-menu .menu-link,
    #masthead .mbl-overlay .sub-menu .menu-link span {
      color: #1a202c !important;
    }

    #masthead .mbl-overlay .sub-nav .menu-link:hover,
    #masthead .mbl-overlay .sub-nav .menu-link:hover span,
    #masthead .mbl-overlay .sub-menu .menu-link:hover,
    #masthead .mbl-overlay .sub-menu .menu-link:hover span {
      color: #F48221 !important;
    }
    
    /* Native Account Avatar fix for mobile specifically */
    .account-menu-wrapper {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        z-index: 100 !important;
        overflow: visible !important;
    }
  }

/* ==== Footer ==== */
/* Make Telegram icon white */
.telegram-icon circle {
  fill: white !important;
}
