/* AUTO-GENERATED by scripts/build_shell_css.py — do not edit by hand.
   Source of truth for the nav, footer and announcement bar on every page.
   Generated ONCE from the inline copies; edit THIS FILE by hand from now on.
   Loads BEFORE each page's own <style>, and before <style id="mobile-opt">. */

/* A shared stylesheet cannot depend on variables the page happens to define.
   Measured before this block existed: 401 of 896 pages were missing at least one
   of these (--r-pill on 401, --navy on 396, --bg-dark on 5), which rendered the
   footer transparent on the webinar and /c/ guide pages. These are defaults, not
   overrides: each page's own <style> loads AFTER this file, so any page that
   defines its own value still wins. */
:root{
  --accent:#2F5BFF;
  --annH:64px;
  --bg-dark:#FAF8F4;
  --blue-50:#EEF3FF;
  --border-dark:#E8E2D6;
  --border-light:#ECE6DC;
  --font-body:'Satoshi','Inter',sans-serif;
  --font-display:'Satoshi','Inter',sans-serif;
  --font-mono:'Satoshi','Inter',sans-serif;
  --navy:#0A1734;
  --r-pill:999px;
  --surface-2:#FFFFFF;
  --text-dark:#0B1424;
  --text-grey:rgba(11,20,36,0.6);
}


.nav { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; padding: 14px 0; transition: background .3s ease, backdrop-filter .3s ease; }
.nav.scrolled { background: rgba(15,15,13,.95); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.nav .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { flex-shrink: 0; display: flex; align-items: center; }
.nav-logo img { height: 28px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 20px; }
.nav-item { position: relative; }
.nav-item > a, .nav-item > button { background: none; border: none; font-family: var(--font-body); font-size: 14px; color: rgba(255,255,255,.7); transition: color .2s; padding: 10px 14px; display: inline-flex; align-items: center; gap: 5px; cursor: pointer; white-space: nowrap; }
.nav-item > a:hover, .nav-item > button:hover, .nav-item:hover > a, .nav-item:hover > button { color: #fff; }
.nav-item .chevron { font-size: 9px; transition: transform .2s; }
.nav-item:hover .chevron { transform: rotate(180deg); }
.nav-item.agentfleet-tab > a { color: var(--accent); font-weight: 500; }
.nav-item.agentfleet-tab > a:hover { color: #fff; }


.nav-dropdown { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px); background: #111E38; border: 1px solid var(--border-dark); border-radius: 12px; padding: 24px 28px; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .2s, transform .2s, visibility .2s; min-width: 240px; box-shadow: 0 20px 60px rgba(0,0,0,.4); max-height: calc(100vh - 100px); overflow-y: auto; overscroll-behavior: contain; }
.nav-dropdown.wide { min-width: 480px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 32px; }
.nav-dropdown.extra-wide { min-width: 560px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px 28px; }
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.nav-dropdown-label { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--text-grey); margin-bottom: 10px; padding-bottom: 6px; border-bottom: 1px solid var(--border-dark); grid-column: 1 / -1; }
.nav-dropdown:not(.mega) a { display: block; font-size: 14px; color: rgba(255,255,255,.65); padding: 7px 0; transition: color .15s, padding-left .15s; }
.nav-dropdown:not(.mega) a:hover { color: var(--accent); }
.nav-dropdown a strong { display: block; font-size: 14px; font-weight: 500; color: rgba(255,255,255,.85); }
.nav-dropdown a:hover strong { color: var(--accent); }
.nav-dd-desc { display: block; font-size: 12px; color: var(--text-grey); line-height: 1.4; margin-top: 2px; }
.nav-dd-sub { padding-left: 16px; border-left: 2px solid var(--border-dark); margin: 4px 0 8px; }
.nav-dd-sub a { font-size: 13px; padding: 4px 0; color: rgba(255,255,255,.5); }
.nav-dd-sub a:hover { color: var(--accent); }

.nav-ctas { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.nav-ctas .btn-orange { padding: 10px 20px; font-size: 14px; }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; transition: .3s; }
        
.nav.mobile-open .nav-hamburger span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
        
.nav.mobile-open .nav-hamburger span:nth-child(2) { opacity: 0; }
        
.nav.mobile-open .nav-hamburger span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@keyframes ann-shimmer { 0% { left: -60%; } 60%, 100% { left: 130%; } }

.footer { background: var(--bg-dark); border-top: 1px solid var(--border-dark); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.footer-col a { font-size: 14px; color: var(--text-grey); transition: color .2s; display: block; line-height: 1.6; }
.footer-col a:hover { color: #fff; }
.footer-logo { display: flex; align-items: center; margin-bottom: 12px; }
.footer-logo img { height: 24px; width: auto; }
.footer-tagline { font-size: 14px; color: var(--text-grey); line-height: 1.6; max-width: 240px; }
.footer-social { display: flex; gap: 16px; margin-top: 8px; align-items: center; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 6px; background: rgba(255,255,255,.06); transition: background .2s; }
.footer-social a:hover { background: rgba(255,255,255,.12); }
.footer-social svg { display: block; }
.footer-certs { display: flex; align-items: center; gap: 18px; margin-top: 20px; flex-wrap: wrap; }
.footer-certs img { height: 42px; width: auto; object-fit: contain; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 24px 0; border-top: 1px solid var(--border-dark); flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12px; color: var(--text-grey); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12px; color: var(--text-grey); transition: color .2s; }
.footer-bottom-links a:hover { color: #fff; }


.nav-progress { position: fixed; top: 0; left: 0; height: 2px; width: 0; background: linear-gradient(90deg, var(--accent), #F5A524); z-index: 1002; pointer-events: none; }
.nav-dropdown { transform: translateX(-50%) translateY(10px) scale(.985); transition: opacity .22s cubic-bezier(.16,1,.3,1), transform .22s cubic-bezier(.16,1,.3,1), visibility .22s; }
.nav-item:hover .nav-dropdown, .nav-item:focus-within .nav-dropdown { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0) scale(1); }
.nav-dropdown:not(.mega)::before { content: ''; position: absolute; top: 0; left: 24px; right: 24px; height: 1px; background: linear-gradient(90deg, transparent, rgba(96,165,250,.55), transparent); }
.nav-item > a, .nav-item > button { position: relative; }
.nav-item > a::after, .nav-item > button::after { content: ''; position: absolute; left: 14px; right: 14px; bottom: 6px; height: 1px; background: #60A5FA; transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.nav-item:hover > a::after, .nav-item:hover > button::after, .nav-item:focus-within > a::after, .nav-item:focus-within > button::after { transform: scaleX(1); }
.nav-dropdown.mega { position: fixed; left: 50%; top: 62px; transform: translateX(-50%) translateY(10px) scale(.99); width: min(1080px, calc(100vw - 48px)); padding: 0; background: #0A111F; border: 1px solid rgba(96,165,250,.22); border-radius: 14px; box-shadow: 0 30px 90px rgba(0,0,0,.55); overflow: visible; max-height: none; }
.nav-item:hover .nav-dropdown.mega, .nav-item:focus-within .nav-dropdown.mega { transform: translateX(-50%) translateY(0) scale(1); }
.nav-dropdown.mega::after { content: ''; position: absolute; top: -22px; left: 0; right: 0; height: 22px; }
.nd-inner { display: grid; grid-template-columns: 210px 1fr 280px; min-height: 230px; }
.mega.no-rail .nd-inner { grid-template-columns: 1fr 280px; }
.nd-rail { display: flex; flex-direction: column; gap: 2px; padding: 18px 12px; border-right: 1px solid var(--border-dark); }
.nd-rail-label { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-grey); padding: 0 14px 10px; }
.nd-tab { display: flex; justify-content: space-between; align-items: center; gap: 10px; background: none; border: none; text-align: left; font-family: var(--font-body); font-size: 13.5px; color: rgba(255,255,255,.7); padding: 11px 14px; border-radius: 8px; cursor: pointer; transition: background .15s, color .15s; }
.nd-tab span { color: var(--text-grey); font-size: 11px; transition: transform .15s, color .15s; }
.nd-tab:hover, .nd-tab.active { background: rgba(59,130,246,.12); color: #fff; }
.nd-tab.active span { color: #60A5FA; transform: translateX(2px); }
.nd-grid { padding: 18px 22px; min-width: 0; }
.nd-group-label { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-grey); padding: 10px 12px 4px; grid-column: 1 / -1; }
.nd-pane { display: none; grid-template-columns: 1fr 1fr; gap: 2px 24px; align-content: start; }
.nd-pane.active { display: grid; }
.nav-dropdown .nd-pane a { display: block; padding: 9px 12px; border-radius: 8px; transition: background .15s; }
.nav-dropdown .nd-pane a:hover { background: rgba(255,255,255,.045); }
.nav-dropdown .nd-pane a strong { display: block; font-size: 13.5px; font-weight: 500; color: rgba(255,255,255,.88); }
.nav-dropdown .nd-pane a:hover strong { color: #60A5FA; }
.nd-feature { border-left: 1px solid var(--border-dark); padding: 18px; display: flex; flex-direction: column; gap: 14px; }
.nd-promo { display: block; background: rgba(59,130,246,.07); border: 1px solid rgba(96,165,250,.25); border-radius: 12px; padding: 18px; transition: border-color .2s; }
.nd-promo:hover { border-color: var(--accent); }
.nd-promo-title { display: block; font-family: var(--font-display); font-size: 20px; font-weight: 700; color: #fff; margin: 0 0 6px; }
.nd-promo-desc { display: block; font-size: 12.5px; color: var(--text-grey); line-height: 1.55; }
.nd-promo-link { display: block; margin-top: 12px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .04em; color: #60A5FA; }
.nav-dropdown:not(.mega) a,.nav-dropdown a strong,.nav-dd-sub a,.nav-dropdown .nd-pane a strong,.nd-promo-title,.nd-cta strong{color:var(--text-dark)}

.nd-promo{ position:relative; overflow:hidden; background:#0A1734; border:1px solid rgba(255,255,255,.14); border-radius:14px; transition:border-color .2s, transform .2s; }
.nd-promo::before{ content:''; position:absolute; inset:0; pointer-events:none; background:radial-gradient(50% 70% at 20% 10%, rgba(47,91,255,.4), transparent 60%), radial-gradient(45% 60% at 88% 95%, rgba(255,106,61,.2), transparent 60%); }
.nd-promo::after{ content:''; position:absolute; inset:0; pointer-events:none; opacity:.4; mix-blend-mode:soft-light; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='150'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
.nd-promo > *{ position:relative; z-index:1; }
.nd-promo:hover{ border-color:rgba(47,91,255,.55); transform:translateY(-2px); }
.nd-promo-logo{ display:block; max-height:32px; max-width:170px; width:auto; height:auto; object-fit:contain; margin-bottom:12px; }
.nd-promo-title{ color:#fff; }
.nd-promo-desc{ color:rgba(255,255,255,.72); }
.nd-promo-link{ color:#93B4FF; }
.nd-cta { display: block; margin-top: auto; font-size: 12.5px; color: var(--text-grey); line-height: 1.5; padding: 16px 4px 2px; border: none; border-top: 1px solid var(--border-dark); border-radius: 0; transition: color .2s; }
.nd-cta:hover { color: #fff; }
.nd-cta strong { color: #fff; display: block; margin-top: 2px; font-size: 13px; }

.nav-item>a,.nav-item>button{color:rgba(11,20,36,.66)}
.nav.scrolled{background:rgba(250,248,244,.9)!important;border-bottom:1px solid var(--border-dark);backdrop-filter:saturate(180%) blur(12px);-webkit-backdrop-filter:saturate(180%) blur(12px)}
.nav-hamburger span{background:var(--text-dark)}


.nav-dropdown{background:var(--surface-2);border-color:var(--border-dark);box-shadow:0 20px 60px rgba(10,23,52,.12)}
.nav-dropdown a:hover,.nd-cta:hover{color:var(--accent)}


.nav-dropdown.mega{ background:var(--surface-2); border:1px solid var(--border-dark); border-radius:16px; box-shadow:0 24px 70px rgba(10,23,52,.14),0 2px 8px rgba(10,23,52,.05); }
.nav-dropdown.mega .nd-inner{ min-height:252px; }
.nd-rail{ padding:22px 14px; }
.nd-rail-label,.nd-group-label{ color:var(--text-grey); }
.nd-tab{ color:rgba(11,20,36,.62); font-size:14px; padding:12px 14px; }
.nd-tab:hover,.nd-tab.active{ background:var(--blue-50); color:var(--text-dark); }
.nd-tab.active span{ color:var(--accent); }
.nd-grid{ padding:24px 26px; }
.nd-pane{ gap:4px 28px; }
.nav-dropdown .nd-pane a{ padding:11px 12px; }
.nav-dropdown .nd-pane a strong{ font-size:14.5px; color:var(--text-dark); }
.nav-dropdown .nd-pane a:hover{ background:var(--blue-50); }
.nav-dropdown .nd-pane a:hover strong{ color:var(--accent); }
.nav-dd-desc{ color:var(--text-grey); }
.nd-feature{ border-left:1px solid var(--border-dark); padding:22px; }
.nd-cta{ color:var(--text-grey); border-top:1px solid var(--border-dark); }
.nd-cta strong{ color:var(--text-dark); }

.nav-item>a::after,.nav-item>button::after{ background:var(--accent); }
.nav-dropdown:not(.mega)::before{ background:linear-gradient(90deg,transparent,rgba(47,91,255,.4),transparent); }

/* The footer is light, so its column headings must be ink, not the #fff the
   base rule inherits from the old dark footer. This used to come from a
   page-level GROUPED selector (.hero-headline,...,.footer-col-title{...}),
   which only 470 of 896 pages carried; the other 426 rendered the headings
   white on cream and invisible. It belongs here, with the footer. */
.footer-col-title{color:var(--text-dark)}
.footer-col a:hover,.footer-bottom-links a:hover{color:var(--text-dark)}


.footer-social a{background:rgba(11,20,36,.05)}
.footer-social a:hover{background:rgba(11,20,36,.1)}
.footer-social svg,.footer-social svg path{fill:var(--text-grey)}


.nav.over-hero{ background:rgba(10,17,33,.28)!important; -webkit-backdrop-filter:blur(18px) saturate(160%); backdrop-filter:blur(18px) saturate(160%); border-bottom:1px solid rgba(255,255,255,.12); box-shadow:0 1px 24px rgba(7,12,24,.25); }
.nav.over-hero .nav-item>a, .nav.over-hero .nav-item>button, .nav.over-hero .ss-trigger{ color:rgba(255,255,255,.85); }
.nav.over-hero .nav-item>a:hover, .nav.over-hero .nav-item:hover>a, .nav.over-hero .nav-item>button:hover, .nav.over-hero .nav-item:hover>button, .nav.over-hero .ss-trigger:hover{ color:#fff; }
.nav.over-hero .nav-item.agentfleet-tab>a{ color:#A9C0FF; }
.nav.over-hero .nav-item.agentfleet-tab>a:hover{ color:#fff; }
.nav.over-hero .nav-item>a::after, .nav.over-hero .nav-item>button::after{ background:#fff; }
.nav.over-hero .nav-logo img{ filter:brightness(0) invert(1); }
.nav.over-hero .nav-hamburger span{ background:#fff; }

.ann{ position:fixed; top:0; left:0; width:100%; min-height:64px; z-index:1100; display:block; padding:0; background:linear-gradient(115deg,#0A1734 0%,#1838BE 54%,#2F5BFF 100%); border-bottom:1px solid rgba(255,255,255,.10); font-family:var(--font-display); overflow:hidden; }
.ann-slide{ position:absolute; inset:0; display:flex; align-items:center; justify-content:space-between; gap:20px; padding:0 40px; opacity:0; visibility:hidden; transition:opacity .55s ease; }
.ann-slide.is-active{ opacity:1; visibility:visible; }
.ann-gartner{ height:26px; width:auto; display:block; }
.ann-logo{ height:26px; width:auto; max-width:190px; object-fit:contain; display:block; }
body.ann-off .ann{ display:none; }
.ann-inner{ display:flex; align-items:center; gap:14px; }
.ann-badge{ font-family:var(--font-mono); font-size:10px; font-weight:700; letter-spacing:.11em; text-transform:uppercase; color:var(--accent); background:rgba(255,255,255,.9); padding:5px 11px; border-radius:999px; white-space:nowrap; box-shadow:0 1px 3px rgba(10,23,52,.12); }
.ann-text{ display:flex; flex-direction:column; line-height:1.2; }
.ann-text strong{ font-size:15px; font-weight:700; color:#fff; }
.ann-sub{ font-size:12px; color:rgba(255,255,255,.72); margin-top:1px; }
.ann-cta{ display:inline-flex; align-items:center; gap:9px; background:#fff; color:var(--navy,#0A1734); font-family:var(--font-display); font-size:13.5px; font-weight:600; padding:10px 22px; border-radius:999px; white-space:nowrap; box-shadow:0 4px 14px rgba(7,12,24,.28); transition:transform .2s ease, box-shadow .2s ease; }
.ann-cta:hover{ transform:translateY(-1px); box-shadow:0 7px 20px rgba(7,12,24,.34); color:var(--navy,#0A1734); }
.ann-cta span{ transition:transform .2s ease; }
.ann-cta:hover span{ transform:translateX(3px); }
.ann-link{ font-family:var(--font-mono); font-size:12px; letter-spacing:.03em; color:var(--accent); white-space:nowrap; transition:color .2s; }
.ann-link:hover{ color:#fff; }
.ann-x{ position:absolute; right:16px; top:50%; transform:translateY(-50%); background:none; border:0; color:rgba(255,255,255,.55); font-size:20px; line-height:1; cursor:pointer; transition:color .2s; }
.ann-x:hover{ color:#fff; }

.nav{ top:calc(var(--annH) + 12px)!important; padding:0!important; background:none!important; border:none!important; border-bottom:none!important; box-shadow:none!important; -webkit-backdrop-filter:none!important; backdrop-filter:none!important; transition:top .3s ease!important; }
.nav .container{ max-width:1180px; margin:0 auto; padding:9px 12px 9px 22px; gap:14px; border-radius:var(--r-pill,999px); background:rgba(255,255,255,.72); -webkit-backdrop-filter:blur(18px) saturate(180%); backdrop-filter:blur(18px) saturate(180%); border:1px solid var(--border-dark); box-shadow:0 12px 40px rgba(10,23,52,.13); transition:background .3s, box-shadow .3s, border-color .3s; }
.nav.scrolled .container{ background:rgba(255,255,255,.9); box-shadow:0 14px 46px rgba(10,23,52,.18); }
.nav.over-hero .container{ background:rgba(10,17,33,.42); border-color:rgba(255,255,255,.14); box-shadow:0 12px 40px rgba(7,12,24,.4); }
.nav.over-hero.scrolled .container{ background:rgba(10,17,33,.6); }
.nav-dropdown.mega{ top:calc(100% + 8px)!important; }


.nav, .nav.scrolled, .nav.over-hero{ background:none!important; border:none!important; border-bottom:none!important; -webkit-backdrop-filter:none!important; backdrop-filter:none!important; box-shadow:none!important; }

.nav .container, .nav.pill-dark .container, .nav.over-hero .container, .nav.scrolled .container, .nav.pill-dark.scrolled .container, .nav.over-hero.scrolled .container{
  background:rgba(255,255,255,.5)!important; -webkit-backdrop-filter:blur(18px) saturate(180%)!important; backdrop-filter:blur(18px) saturate(180%)!important;
  border:1px solid rgba(255,255,255,.55)!important; box-shadow:0 16px 46px rgba(10,23,52,.15), inset 0 1px 0 rgba(255,255,255,.6)!important; }
.nav.on-dark .container, .nav.on-dark.pill-dark .container, .nav.on-dark.over-hero .container, .nav.on-dark.scrolled .container{
  background:rgba(12,20,38,.28)!important; border:1px solid rgba(255,255,255,.16)!important; box-shadow:0 16px 50px rgba(7,12,24,.45), inset 0 1px 0 rgba(255,255,255,.12)!important; }

.nav .nav-item>a, .nav .nav-item>button, .nav .ss-trigger{ color:var(--text-grey)!important; }
.nav .nav-item>a:hover, .nav .nav-item:hover>a, .nav .nav-item>button:hover, .nav .nav-item:hover>button, .nav .ss-trigger:hover{ color:var(--text-dark)!important; }
.nav .nav-item.agentfleet-tab>a{ color:var(--accent)!important; }
.nav .nav-logo .logo-light{ display:none!important; } 
.nav .nav-logo .logo-dark{ display:block!important; } 
.nav .nav-logo img{ filter:none; transition:filter .3s ease; }
.nav .nav-hamburger span{ background:var(--text-dark)!important; }
.nav.on-dark .nav-item>a, .nav.on-dark .nav-item>button, .nav.on-dark .ss-trigger{ color:rgba(255,255,255,.86)!important; }
.nav.on-dark .nav-item>a:hover, .nav.on-dark .nav-item:hover>a, .nav.on-dark .nav-item>button:hover, .nav.on-dark .nav-item:hover>button, .nav.on-dark .ss-trigger:hover{ color:#fff!important; }
.nav.on-dark .nav-item.agentfleet-tab>a{ color:#A9C0FF!important; }
.nav.on-dark .nav-logo img{ filter:brightness(0) invert(1)!important; }
.nav.on-dark .nav-hamburger span{ background:#fff!important; }


.ann{ position:absolute!important; z-index:900!important; }


/* LOAD-BEARING. 379 pages ship class="nav scrolled" in their HTML and JS does
   NOT clear it at scrollY 0, so this rule is the only thing neutralising the
   old .nav.scrolled styling on them. Measured 2026-09-18: with it in place the
   class is completely inert (identical computed styles, 0.000% pixel diff).
   Remove it and those 379 pages render scrolled-at-top. */
#nav.scrolled:not(.mobile-open){
  background:none!important; border:none!important; border-bottom:none!important;
  -webkit-backdrop-filter:none!important; backdrop-filter:none!important; box-shadow:none!important;
}


#nav.on-dark:not(.mobile-open) .nav-logo img, #nav.over-hero:not(.mobile-open) .nav-logo img{ filter:brightness(0) invert(1)!important; }


.footer-social a{ display:flex!important; align-items:center!important; justify-content:center!important;
  width:32px!important; height:32px!important; border-radius:6px!important; background:rgba(11,20,36,.05)!important;
  font-family:inherit!important; font-size:inherit!important; letter-spacing:normal!important; text-transform:none!important; padding:0!important; }
.footer-social a:hover{ background:rgba(11,20,36,.1)!important; }
.footer-social svg{ display:block!important; width:16px!important; height:16px!important; }
.footer-social svg, .footer-social svg path{ fill:var(--text-grey)!important; }


body.ins-post .nav.scrolled { background: rgba(255,255,255,.94) !important; border-bottom-color: var(--border-light) !important; }

