/*
|--------------------------------------------------------------------------
| UnivColl Publications - Publisher Header CSS
|--------------------------------------------------------------------------
| Laptop/Desktop fix version:
| 1) subtle attention animation for 4 primary buttons
| 2) stable mega dropdown hover bridge
| 3) fixed viewport-centered mega menus, no left/right cut
| 4) scrollable large dropdowns
| 5) desktop menu remains desktop on laptop widths; mobile only below 980px
|--------------------------------------------------------------------------
*/

.ucp-site-header{
    position:sticky;
    top:0;
    z-index:99999;
    width:100%;
    background:#fff;
    border-bottom:1px solid rgba(10,35,66,.10);
    box-shadow:0 10px 32px rgba(7,26,51,.10);
}
.ucp-site-header a{text-decoration:none}
.ucp-site-header button{font:inherit}

/* TOP BAR */
.ucp-topbar{
    background:var(--header-gradient,linear-gradient(135deg,#071A33 0%,#0A2342 55%,#123B63 100%));
    color:#fff;
    font-size:13px;
}
.ucp-topbar-inner{
    min-height:36px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
}
.ucp-topbar-left,.ucp-topbar-right{
    display:flex;
    align-items:center;
    gap:16px;
    flex-wrap:wrap;
}
.ucp-topbar-left span,.ucp-topbar-right a{
    display:inline-flex;
    align-items:center;
    gap:7px;
    color:rgba(255,255,255,.92);
    font-weight:800;
    white-space:nowrap;
}
.ucp-topbar-left span:before{
    content:"";
    width:6px;
    height:6px;
    border-radius:50%;
    background:var(--gold,#D4AF37);
    box-shadow:0 0 0 3px rgba(212,175,55,.16);
}
.ucp-topbar-right a:hover{color:var(--soft-gold,#F2D27A)}

/* BRAND BAR */
.ucp-brandbar{
    background:rgba(255,255,255,.98);
    backdrop-filter:saturate(170%) blur(14px);
}
.ucp-brandbar-inner{
    min-height:92px;
    display:flex;
    align-items:center;
    gap:22px;
}
.ucp-brand{
    display:flex;
    align-items:center;
    gap:14px;
    min-width:320px;
    flex:0 0 auto;
    color:var(--navy,#0A2342);
}
.ucp-brand-logo-wrap{
    width:66px;
    height:66px;
    display:grid;
    place-items:center;
    flex:0 0 auto;
    border-radius:20px;
    background:var(--header-gradient,linear-gradient(135deg,#071A33 0%,#0A2342 55%,#123B63 100%));
    border:1px solid rgba(212,175,55,.38);
    box-shadow:0 14px 34px rgba(7,26,51,.18);
    overflow:hidden;
}
.ucp-brand-logo{
    width:56px;
    height:56px;
    object-fit:contain;
    display:block;
}
.ucp-brand-text{
    display:grid;
    gap:4px;
    line-height:1.15;
    min-width:0;
}
.ucp-brand-text strong{
    color:var(--navy,#0A2342);
    font-size:24px;
    font-weight:950;
    letter-spacing:-.035em;
    line-height:1.05;
}
.ucp-brand-text small{
    color:var(--steel,#5F6B7A);
    font-size:13px;
    font-weight:800;
    line-height:1.35;
}

/* PRIMARY QUICK ACTIONS */
.ucp-quick-actions{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    flex-wrap:wrap;
}
.ucp-quick-actions-desktop{flex:1 1 auto}
.ucp-quick-actions-mobile{display:none;padding-bottom:12px}

.ucp-quick-actions a{
    position:relative;
    isolation:isolate;
    min-width:172px;
    min-height:34px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:6px 18px;
    border:2px solid var(--gold,#D4AF37);
    background:#fff;
    color:#111827;
    font-family:Georgia,"Times New Roman",serif;
    font-size:18px;
    font-weight:500;
    line-height:1;
    overflow:hidden;
    transition:.22s ease;
    animation:ucpQuickBorderPulse 3.8s ease-in-out infinite;
}
.ucp-quick-actions a:before{
    content:"";
    position:absolute;
    inset:-2px;
    z-index:-1;
    background:linear-gradient(120deg,transparent 0%,rgba(242,210,122,.32) 35%,rgba(212,175,55,.42) 50%,rgba(242,210,122,.32) 65%,transparent 100%);
    transform:translateX(-120%);
    animation:ucpQuickSoftShine 5.5s ease-in-out infinite;
}
.ucp-quick-actions a:hover{
    background:var(--gold,#D4AF37);
    color:var(--deep,#071A33);
    transform:translateY(-1px);
    box-shadow:0 10px 22px rgba(212,175,55,.22);
    animation-play-state:paused;
}
.ucp-quick-actions a:nth-child(2){animation-delay:.35s}
.ucp-quick-actions a:nth-child(3){animation-delay:.7s}
.ucp-quick-actions a:nth-child(4){animation-delay:1.05s}
.ucp-quick-actions a:nth-child(2):before{animation-delay:.3s}
.ucp-quick-actions a:nth-child(3):before{animation-delay:.6s}
.ucp-quick-actions a:nth-child(4):before{animation-delay:.9s}

@keyframes ucpQuickBorderPulse{
    0%,100%{border-color:#D4AF37;box-shadow:0 0 0 rgba(212,175,55,0)}
    50%{border-color:#F2D27A;box-shadow:0 0 0 3px rgba(212,175,55,.10)}
}
@keyframes ucpQuickSoftShine{
    0%,78%,100%{transform:translateX(-120%)}
    88%{transform:translateX(120%)}
}

/* MOBILE CONTACT + TOGGLE */
.ucp-mobile-contact{
    display:none;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
}
.ucp-mobile-contact a{
    display:inline-flex;
    align-items:center;
    gap:6px;
    min-height:34px;
    padding:0 10px;
    border-radius:999px;
    color:var(--navy,#0A2342);
    background:rgba(10,35,66,.06);
    border:1px solid rgba(10,35,66,.12);
    font-size:12px;
    font-weight:900;
    white-space:nowrap;
}
.ucp-mobile-contact b{
    font-size:15px;
    line-height:1;
    color:var(--gold,#D4AF37);
}
.ucp-mobile-toggle{
    display:none;
    width:50px;
    height:48px;
    border:1px solid rgba(10,35,66,.14);
    border-radius:16px;
    background:#fff;
    cursor:pointer;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:5px;
    flex:0 0 auto;
    box-shadow:0 8px 22px rgba(7,26,51,.08);
}
.ucp-mobile-toggle span{
    width:23px;
    height:2px;
    display:block;
    border-radius:999px;
    background:var(--navy,#0A2342);
    transition:.2s ease;
}
.ucp-site-header.ucp-mobile-open .ucp-mobile-toggle span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.ucp-site-header.ucp-mobile-open .ucp-mobile-toggle span:nth-child(2){opacity:0}
.ucp-site-header.ucp-mobile-open .ucp-mobile-toggle span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* NAVIGATION */
.ucp-navrow{
    background:#fff;
    border-top:1px solid rgba(10,35,66,.08);
}
.ucp-navrow-inner{
    min-height:52px;
    display:flex;
    align-items:center;
    justify-content:center;
}
.ucp-main-nav{width:100%}
.ucp-nav-list{
    margin:0;
    padding:0;
    list-style:none;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:4px;
}
.ucp-nav-item{position:relative}
.ucp-nav-link,.ucp-nav-trigger,.ucp-nav-publish{
    min-height:42px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:7px;
    padding:0 12px;
    border:0;
    border-radius:999px;
    background:transparent;
    color:var(--navy,#0A2342);
    font-size:14px;
    font-weight:900;
    cursor:pointer;
    white-space:nowrap;
    text-decoration:none;
    transition:.18s ease;
}
.ucp-nav-trigger{appearance:none;-webkit-appearance:none}
.ucp-nav-link:hover,.ucp-nav-trigger:hover,.ucp-nav-link.active,.ucp-nav-trigger.active{
    background:rgba(212,175,55,.17);
    color:var(--deep,#071A33);
}
.ucp-nav-publish{
    margin:0 6px;
    color:var(--deep,#071A33);
    background:var(--gold-gradient,linear-gradient(135deg,#D4AF37 0%,#F2D27A 100%));
    box-shadow:0 10px 22px rgba(212,175,55,.22);
}
.ucp-nav-publish:hover{
    transform:translateY(-1px);
    box-shadow:0 14px 28px rgba(212,175,55,.30);
}
.ucp-nav-caret{
    width:7px;
    height:7px;
    display:inline-block;
    border-right:2px solid currentColor;
    border-bottom:2px solid currentColor;
    transform:rotate(45deg) translateY(-2px);
    opacity:.75;
}

/* HOVER BRIDGE: dropdown won't disappear while moving cursor downward */
.ucp-nav-dropdown:after{
    content:"";
    position:absolute;
    left:-16px;
    right:-16px;
    top:100%;
    height:24px;
    display:block;
    z-index:100001;
}

/* VIEWPORT-CENTERED MEGA MENU */
.ucp-mega-menu{
    position:fixed;
    top:var(--ucp-mega-top, 170px);
    left:50%;
    transform:translateX(-50%) translateY(8px);
    width:min(1180px,calc(100vw - 40px));
    max-height:calc(100vh - var(--ucp-mega-top, 170px) - 18px);
    overflow-y:auto;
    overscroll-behavior:contain;
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:18px;
    padding:24px;
    background:#fff;
    border:1px solid rgba(10,35,66,.12);
    border-radius:26px;
    box-shadow:0 24px 70px rgba(7,26,51,.22);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:opacity .18s ease, visibility .18s ease, transform .18s ease;
    z-index:100000;
}
.ucp-mega-menu::-webkit-scrollbar{width:9px}
.ucp-mega-menu::-webkit-scrollbar-track{background:#F8F6F0;border-radius:999px}
.ucp-mega-menu::-webkit-scrollbar-thumb{background:#D4AF37;border-radius:999px}
.ucp-nav-dropdown:hover>.ucp-mega-menu,
.ucp-nav-dropdown:focus-within>.ucp-mega-menu{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:translateX(-50%) translateY(0);
}
.ucp-align-right>.ucp-mega-menu,
.ucp-align-right:hover>.ucp-mega-menu,
.ucp-align-right:focus-within>.ucp-mega-menu{
    left:50%;
    right:auto;
    transform:translateX(-50%) translateY(0);
}
.ucp-mega-small{
    width:min(980px,calc(100vw - 40px));
    grid-template-columns:repeat(3,minmax(0,1fr));
}
.ucp-mega-policy{
    width:min(1320px,calc(100vw - 40px));
    grid-template-columns:repeat(5,minmax(0,1fr));
}
.ucp-mega-column{min-width:0}
.ucp-mega-title{
    display:block;
    margin:0 0 10px;
    padding:0 2px 9px;
    color:var(--navy,#0A2342);
    font-size:12px;
    font-weight:950;
    letter-spacing:.08em;
    text-transform:uppercase;
    border-bottom:1px solid rgba(10,35,66,.10);
}
.ucp-mega-column a{
    display:block;
    padding:10px;
    border-radius:14px;
    color:var(--navy,#0A2342);
    font-size:14px;
    font-weight:850;
    line-height:1.25;
    transition:.18s ease;
}
.ucp-mega-column a:hover{
    background:rgba(212,175,55,.16);
    transform:translateX(2px);
}
.ucp-mega-column a span{display:block}
.ucp-mega-column a small{
    display:block;
    margin-top:4px;
    color:var(--muted,#657386);
    font-size:11px;
    line-height:1.35;
    font-weight:700;
}
.ucp-mega-highlight{
    border-radius:22px;
    padding:20px;
    background:var(--header-gradient,linear-gradient(135deg,#071A33 0%,#0A2342 55%,#123B63 100%));
    color:#fff;
    min-height:100%;
    position:relative;
    overflow:hidden;
}
.ucp-mega-highlight strong{
    display:block;
    color:#fff;
    font-size:19px;
    line-height:1.25;
    letter-spacing:-.02em;
    margin-bottom:10px;
}
.ucp-mega-highlight p{
    margin:0 0 16px;
    color:rgba(255,255,255,.80);
    font-size:13px;
    line-height:1.65;
}
.ucp-mega-highlight a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 14px;
    border-radius:999px;
    background:var(--gold-gradient,linear-gradient(135deg,#D4AF37 0%,#F2D27A 100%));
    color:var(--deep,#071A33);
    font-weight:950;
    font-size:13px;
}

/* SCROLLED */
.ucp-site-header.ucp-header-scrolled{box-shadow:0 12px 32px rgba(7,26,51,.14)}
.ucp-site-header.ucp-header-scrolled .ucp-brandbar-inner{min-height:76px}
.ucp-site-header.ucp-header-scrolled .ucp-brand-logo-wrap{width:56px;height:56px}
.ucp-site-header.ucp-header-scrolled .ucp-brand-logo{width:48px;height:48px}

/* LAPTOP COMPACT, STILL DESKTOP MENU */
@media(max-width:1320px){
    .ucp-brand{min-width:278px}
    .ucp-brand-text strong{font-size:21px}
    .ucp-brand-text small{font-size:12px;max-width:250px}
    .ucp-quick-actions{gap:10px}
    .ucp-quick-actions a{min-width:145px;font-size:16px;padding-left:13px;padding-right:13px}
    .ucp-nav-list{gap:2px}
    .ucp-nav-link,.ucp-nav-trigger,.ucp-nav-publish{padding-left:8px;padding-right:8px;font-size:13px}
}
@media(max-width:1120px) and (min-width:981px){
    .ucp-brandbar-inner{gap:14px}
    .ucp-brand{min-width:250px}
    .ucp-brand-logo-wrap{width:58px;height:58px}
    .ucp-brand-logo{width:50px;height:50px}
    .ucp-brand-text strong{font-size:19px}
    .ucp-brand-text small{font-size:11px;max-width:230px}
    .ucp-quick-actions a{min-width:126px;min-height:32px;font-size:15px;padding-left:10px;padding-right:10px}
    .ucp-nav-link,.ucp-nav-trigger,.ucp-nav-publish{padding-left:6px;padding-right:6px;font-size:12.2px}
}

/* MOBILE / TABLET MENU ONLY BELOW 980PX */
@media(max-width:980px){
    .ucp-topbar{display:none}
    .ucp-brandbar-inner{
        min-height:auto;
        padding-top:12px;
        padding-bottom:8px;
        align-items:center;
        gap:10px;
        flex-wrap:wrap;
    }
    .ucp-brand{
        min-width:0;
        flex:1 1 calc(100% - 66px);
    }
    .ucp-brand-logo-wrap{width:58px;height:58px;border-radius:18px}
    .ucp-brand-logo{width:50px;height:50px}
    .ucp-brand-text strong{font-size:21px}
    .ucp-brand-text small{font-size:12px;max-width:320px}
    .ucp-quick-actions-desktop{display:none}
    .ucp-mobile-contact{
        display:flex;
        order:3;
        width:100%;
        margin-left:72px;
    }
    .ucp-mobile-toggle{
        display:flex;
        margin-left:auto;
    }
    .ucp-quick-actions-mobile{
        display:flex;
        justify-content:flex-start;
        gap:8px;
        overflow-x:auto;
        scrollbar-width:none;
    }
    .ucp-quick-actions-mobile::-webkit-scrollbar{display:none}
    .ucp-quick-actions-mobile a{
        min-width:auto;
        min-height:32px;
        padding:6px 12px;
        font-size:14px;
        white-space:nowrap;
    }
    .ucp-navrow{
        display:none;
        position:absolute;
        left:12px;
        right:12px;
        top:calc(100% + 8px);
        background:#fff;
        border:1px solid rgba(10,35,66,.12);
        border-radius:22px;
        box-shadow:var(--shadow,0 18px 45px rgba(7,26,51,.18));
        max-height:calc(100vh - 120px);
        overflow:auto;
        padding:14px;
        z-index:100001;
    }
    .ucp-site-header.ucp-mobile-open .ucp-navrow{display:block}
    .ucp-navrow-inner{min-height:0;display:block}
    .ucp-nav-list{
        display:grid;
        gap:8px;
        width:100%;
        justify-content:stretch;
    }
    .ucp-nav-link,.ucp-nav-trigger,.ucp-nav-publish{
        width:100%;
        min-height:48px;
        justify-content:space-between;
        padding:0 14px;
        border-radius:14px;
        background:rgba(10,35,66,.04);
        color:var(--navy,#0A2342);
        font-size:14px;
        text-align:left;
    }
    .ucp-nav-publish{
        margin:0;
        justify-content:center;
        background:var(--gold-gradient,linear-gradient(135deg,#D4AF37 0%,#F2D27A 100%));
    }
    .ucp-nav-dropdown:after{display:none}
    .ucp-mega-menu,.ucp-mega-small,.ucp-mega-policy{
        position:static;
        width:100%;
        max-height:none;
        overflow:visible;
        transform:none!important;
        opacity:1;
        visibility:visible;
        pointer-events:auto;
        display:none;
        grid-template-columns:1fr;
        margin-top:8px;
        padding:14px;
        border-radius:18px;
        box-shadow:none;
        background:rgba(248,246,240,.82);
    }
    .ucp-nav-dropdown.ucp-submenu-open>.ucp-mega-menu{display:grid}
    .ucp-nav-dropdown.ucp-submenu-open>.ucp-nav-trigger .ucp-nav-caret{transform:rotate(225deg) translateY(-2px)}
    .ucp-mega-highlight{display:none}
    .ucp-mega-column a{
        background:#fff;
        border:1px solid rgba(10,35,66,.08);
        margin-bottom:7px;
    }
}
@media(max-width:640px){
    .ucp-container{width:min(100% - 28px,var(--container,1320px))}
    .ucp-brandbar-inner{padding-top:10px}
    .ucp-brand{gap:10px}
    .ucp-brand-logo-wrap{width:54px;height:54px}
    .ucp-brand-logo{width:46px;height:46px}
    .ucp-brand-text strong{font-size:18px}
    .ucp-brand-text small{font-size:11px;line-height:1.25;max-width:220px}
    .ucp-mobile-contact{margin-left:64px;gap:6px}
    .ucp-mobile-contact a{min-height:30px;padding:0 8px;font-size:11px}
    .ucp-mobile-contact b{font-size:14px}
    .ucp-mobile-toggle{width:46px;height:44px;border-radius:14px}
    .ucp-quick-actions-mobile{padding-top:4px;padding-bottom:10px}
    .ucp-quick-actions-mobile a{font-size:13px;padding:6px 10px}
    .ucp-navrow{left:8px;right:8px;top:calc(100% + 6px);max-height:calc(100vh - 112px);border-radius:18px;padding:12px}
}
@media(max-width:420px){
    .ucp-brand-text small{display:none}
    .ucp-brand-logo-wrap{width:50px;height:50px}
    .ucp-brand-logo{width:42px;height:42px}
    .ucp-mobile-contact{margin-left:0;width:100%;justify-content:flex-start}
    .ucp-mobile-contact a{font-size:10.5px}
    .ucp-quick-actions-mobile a{font-size:12px;padding:6px 9px}
}
/* UnivColl Publications - Mobile Header Fix
   Paste at the BOTTOM of assets/publisher/css/publisher-header.css */
@media (max-width:980px){
 .ucp-site-header{overflow:visible!important;max-width:100vw!important}.ucp-topbar{display:none!important}
 .ucp-brandbar{background:rgba(255,255,255,.985)!important;box-shadow:0 12px 30px rgba(7,26,51,.10)}
 .ucp-brandbar-inner{display:grid!important;grid-template-columns:minmax(0,1fr) auto!important;align-items:center!important;gap:7px 10px!important;min-height:auto!important;padding-top:9px!important;padding-bottom:5px!important}
 .ucp-brand{grid-column:1/2!important;grid-row:1/2!important;min-width:0!important;max-width:100%!important;width:100%!important;gap:8px!important}
 .ucp-brand-logo-wrap{width:48px!important;height:48px!important;border-radius:14px!important}.ucp-brand-logo{width:41px!important;height:41px!important}
 .ucp-brand-text strong{font-size:18px!important;line-height:1.05!important;letter-spacing:-.03em!important;white-space:nowrap!important}.ucp-brand-text small{display:none!important}
 .ucp-mobile-toggle{grid-column:2/3!important;grid-row:1/2!important;display:flex!important;width:42px!important;height:40px!important;border-radius:13px!important;margin:0!important;justify-self:end!important}.ucp-mobile-toggle span{width:21px!important}
 .ucp-mobile-contact{grid-column:1/3!important;grid-row:2/3!important;width:100%!important;margin:0!important;padding:0!important;display:flex!important;flex-wrap:nowrap!important;align-items:center!important;justify-content:flex-start!important;gap:5px!important;overflow-x:auto!important;scrollbar-width:none!important;white-space:nowrap!important}.ucp-mobile-contact::-webkit-scrollbar{display:none!important}
 .ucp-mobile-contact a{flex:0 0 auto!important;min-height:26px!important;max-width:none!important;padding:0 8px!important;border-radius:999px!important;display:inline-flex!important;align-items:center!important;justify-content:center!important;gap:5px!important;background:#F8F6F0!important;border:1px solid rgba(10,35,66,.12)!important;color:var(--navy,#0A2342)!important;font-size:10.3px!important;font-weight:900!important;line-height:1!important;box-shadow:0 5px 14px rgba(7,26,51,.06)}
 .ucp-mobile-contact a b{color:var(--gold,#D4AF37)!important;font-size:12px!important;line-height:1!important}
 .ucp-quick-actions-desktop{display:none!important}.ucp-quick-actions-mobile{display:grid!important;grid-template-columns:repeat(4,minmax(0,1fr))!important;gap:6px!important;width:min(100% - 24px,var(--container,1320px))!important;margin:0 auto!important;padding-top:5px!important;padding-bottom:9px!important;overflow:visible!important}
 .ucp-quick-actions-mobile a{min-width:0!important;width:100%!important;min-height:30px!important;padding:5px 4px!important;font-size:12.2px!important;line-height:1!important;white-space:nowrap!important;text-align:center!important}
 .ucp-site-header.ucp-header-scrolled .ucp-mobile-contact{display:none!important}.ucp-site-header.ucp-header-scrolled .ucp-brandbar-inner{padding-top:6px!important;padding-bottom:4px!important;gap:5px 8px!important}.ucp-site-header.ucp-header-scrolled .ucp-brand-logo-wrap{width:40px!important;height:40px!important;border-radius:12px!important}.ucp-site-header.ucp-header-scrolled .ucp-brand-logo{width:34px!important;height:34px!important}.ucp-site-header.ucp-header-scrolled .ucp-brand-text strong{font-size:17px!important}.ucp-site-header.ucp-header-scrolled .ucp-mobile-toggle{width:40px!important;height:38px!important}.ucp-site-header.ucp-header-scrolled .ucp-quick-actions-mobile{padding-top:3px!important;padding-bottom:6px!important}.ucp-site-header.ucp-header-scrolled .ucp-quick-actions-mobile a{min-height:27px!important;font-size:11.5px!important;padding-top:4px!important;padding-bottom:4px!important}
 .ucp-navrow{display:none!important;position:absolute!important;left:8px!important;right:8px!important;top:calc(100% + 6px)!important;background:#fff!important;border:1px solid rgba(10,35,66,.12)!important;border-radius:18px!important;box-shadow:0 18px 45px rgba(7,26,51,.20)!important;max-height:calc(100vh - 112px)!important;overflow-y:auto!important;overflow-x:hidden!important;padding:12px!important;z-index:100001!important}.ucp-site-header.ucp-mobile-open .ucp-navrow{display:block!important}.ucp-navrow-inner{min-height:0!important;display:block!important}.ucp-nav-list{display:grid!important;gap:8px!important;width:100%!important;justify-content:stretch!important}
 .ucp-nav-link,.ucp-nav-trigger,.ucp-nav-publish{width:100%!important;min-height:46px!important;justify-content:space-between!important;padding:0 14px!important;border-radius:14px!important;background:rgba(10,35,66,.04)!important;color:var(--navy,#0A2342)!important;font-size:14px!important;text-align:left!important}.ucp-nav-publish{justify-content:center!important;background:var(--gold-gradient,linear-gradient(135deg,#D4AF37 0%,#F2D27A 100%))!important}
 .ucp-mega-menu,.ucp-mega-small,.ucp-mega-policy{position:static!important;width:100%!important;max-height:none!important;overflow:visible!important;transform:none!important;opacity:1!important;visibility:visible!important;pointer-events:auto!important;display:none!important;grid-template-columns:1fr!important;margin-top:8px!important;padding:12px!important;border-radius:16px!important;box-shadow:none!important;background:rgba(248,246,240,.86)!important}.ucp-nav-dropdown.ucp-submenu-open>.ucp-mega-menu{display:grid!important}.ucp-mega-highlight{display:none!important}.ucp-mega-column a{background:#fff!important;border:1px solid rgba(10,35,66,.08)!important;margin-bottom:7px!important}
}
@media (max-width:380px){.ucp-brand-text strong{font-size:16px!important}.ucp-quick-actions-mobile a{font-size:11.2px!important}.ucp-mobile-contact a{font-size:9.8px!important;padding-left:6px!important;padding-right:6px!important}}

/* =========================================================
   UnivColl Publications - Menu Dropdown Final Safety Fix
   ========================================================= */

.ucp-nav-dropdown {
    position: relative;
}

.ucp-nav-trigger.ucp-active,
.ucp-nav-dropdown:hover > .ucp-nav-trigger,
.ucp-nav-dropdown:focus-within > .ucp-nav-trigger {
    background: rgba(212,175,55,.17);
    color: var(--deep,#071A33);
}

.ucp-mega-column strong {
    display: block;
    font-weight: 900;
}

.ucp-mega-column small {
    display: block;
    margin-top: 4px;
    color: var(--muted,#657386);
    font-size: 12px;
    line-height: 1.45;
    font-weight: 650;
}

/* Old markup fallback */
.ucp-has-mega:hover > .ucp-mega-menu,
.ucp-has-mega:focus-within > .ucp-mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

@media (max-width:980px) {
    .ucp-nav-dropdown.ucp-submenu-open > .ucp-mega-menu {
        display: grid !important;
    }

    .ucp-nav-trigger {
        cursor: pointer;
    }
}