/**
 * marketing-site-inspired marketing homepage (layout + patterns only).
 * Scoped to body.ivl-pub-home. FedEx-inspired purple/orange tokens drive dark ink, chrome, and accents.
 */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400..700;1,9..40,400..700&family=IBM+Plex+Mono:wght@400;500;600;700&display=swap");
@import url("./ivl-preloader-dots.css");
@import url("./ivl-plain-zeros.css");
@import url("./ivl-premium-scrollbar.css");

body.ivl-pub-home {
    font-family: "DM Sans", system-ui, sans-serif;
    background: #f7f9fc;
    color: var(--ivl-fedex-ink);
    -webkit-font-smoothing: antialiased;
    /* Align main column with header util/masthead (80rem) – content blocks use 72rem */
    --ivl-home-max: 72rem;
    --ivl-home-gutter: 1.25rem;
    --ivl-brand-mark-h: 3.35rem;
    /* Footer / minibanner: slight zoom trims PNG transparent margins */
    --ivl-logo-crop-scale: 1.05;
    /* FedEx-inspired brand ramp (legacy names: --ivl-fedex-blue* = purple chrome) */
    --ivl-fedex-ink: #3a2a5c;
    --ivl-fedex-ink-strong: #2d0c52;
    --ivl-fedex-muted: #6b5b8c;
    --ivl-fedex-slate: #8b7cab;
    --ivl-fedex-footer-muted: #c9bfe6;
    --ivl-fedex-footer-dim: #a89bcc;
    --ivl-fedex-blue: #4d148c;
    --ivl-fedex-blue-dark: #3d1070;
    --ivl-fedex-blue-deep: #2d0c52;
    --ivl-fedex-orange: #ff6600;
    --ivl-fedex-orange-deep: #cc5200;
    --ivl-fedex-orange-soft: rgba(255, 102, 0, 0.14);
    --ivl-fedex-orange-wash: rgba(255, 102, 0, 0.09);
    --ivl-fedex-orange-glow: rgba(255, 102, 0, 0.35);
}

/* Trim built-in logo canvas (wide PNG marks): overflow clips scaled artwork */
.ivl-pub-logo-crop {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    line-height: 0;
    max-width: 100%;
}

.ivl-pub-logo-crop--masthead {
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
    height: 100%;
    align-self: stretch;
}

.ivl-pub-logo-crop--footer {
    max-width: 24rem;
}

.ivl-pub-logo-crop--minibanner {
    max-width: min(24rem, 100%);
}

html.ivl-pub-home-root {
    scroll-behavior: smooth;
}

/* ── Global responsive safeguards (marketing pages) ── */
body.ivl-pub-home img,
body.ivl-pub-home svg,
body.ivl-pub-home video,
body.ivl-pub-home canvas {
    max-width: 100%;
}

body.ivl-pub-home img,
body.ivl-pub-home video {
    height: auto;
}

body.ivl-pub-home iframe {
    max-width: 100%;
}

body.ivl-pub-home table {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Client vault portal (ivl-pub-home + user shell): keep real <table> layout so holdings registries render; page-level horizontal scroll lives in .ivl-*-table-wrap where needed. */
body.ivl-pub-home.ivl-vault-user-shell table {
    display: table;
    overflow: visible;
}

body.ivl-pub-home th,
body.ivl-pub-home td,
body.ivl-pub-home p,
body.ivl-pub-home li,
body.ivl-pub-home a {
    overflow-wrap: anywhere;
}

/* ── Header shell (sticky, marketing site-style two-row) ── */
.ivl-pub-header-shell {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #fff;
    /* No full-width bottom shadow: it reads as a line across the logo strip; edge is on .ivl-pub-masthead__nav-wrap only */
    box-shadow: none;
}

/* ── Utility bar (white, links right-aligned, navy/charcoal) ── */
.ivl-pub-utilbar--light {
    position: relative;
    z-index: 12;
    background: #fff;
    /* Avoid a rule that runs full width above the masthead (shows on the logo column) */
    border-bottom: 0;
    font-size: 0.6875rem;
}

.ivl-pub-utilbar__row {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0.2rem 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.85rem;
}

.ivl-pub-utilbar__row--end {
    justify-content: flex-end;
}

.ivl-pub-utilbar__cluster {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem 1.15rem;
}

.ivl-pub-utilbar__link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--ivl-fedex-ink);
    font-weight: 500;
    text-decoration: none;
}

.ivl-pub-utilbar__link:hover {
    color: var(--ivl-fedex-orange-deep);
}

.ivl-pub-utilbar__link--strong {
    font-weight: 700;
    color: var(--ivl-fedex-blue);
}

.ivl-pub-utilbar__link--strong:hover {
    color: var(--ivl-fedex-orange-deep);
}

.ivl-pub-ico {
    font-size: 1rem;
    line-height: 1;
    width: 1em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ivl-pub-utilbar--light .ivl-pub-ico {
    font-size: 0.8125rem;
}

/* ── Masthead: white logo zone; gray menu rail only in nav-wrap (Quick Tools → search) ── */
.ivl-pub-masthead {
    position: relative;
    z-index: 12;
    background: #fff;
    border-bottom: 0;
    /* Primary rail: taller slot so logo reads comfortably at all viewport widths */
    --ivl-masthead-rail-h: 3.25rem;
    --ivl-logo-slot: 17rem;
    --ivl-qt-slant: 10px;
    --ivl-masthead-logo-h: 2.4rem;
}

.ivl-pub-masthead__row {
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    position: relative;
    min-height: var(--ivl-masthead-rail-h);
    padding-left: var(--ivl-logo-slot);
}

@media (min-width: 1024px) {
    .ivl-pub-masthead__row {
        gap: 2.25rem;
    }
}

.ivl-pub-masthead__brand {
    display: flex;
    align-items: center;
    position: absolute;
    left: 1.3rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 30;
    /* Stay inside reserved logo slot (left of nav-wrap) */
    width: calc(var(--ivl-logo-slot) - 1.6rem);
    max-width: calc(var(--ivl-logo-slot) - 1.6rem);
    height: var(--ivl-masthead-rail-h);
    overflow: hidden;
    text-decoration: none;
    color: var(--ivl-fedex-blue);
    background: transparent;
    box-sizing: border-box;
    padding: 0;
    flex-shrink: 0;
    min-width: 0;
}

/* Wide mark: cover fills the band; transparent PNG margins clip cleanly */
.ivl-pub-masthead__logoimg {
    display: block;
    width: auto;
    height: var(--ivl-masthead-logo-h);
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: left center;
    flex-shrink: 0;
    transform: none;
}

/* Quick Tools through primary nav + search: gray rail only (logo sits on white masthead) */
.ivl-pub-masthead__nav-wrap {
    flex: 1;
    display: none;
    align-items: stretch;
    min-width: 0;
    position: relative;
    /* Gray fill is on ::before so the left edge can slant without clipping dropdowns */
    background: transparent;
    overflow-x: hidden;
    /* Header bottom edge only under the menu rail, not under the logo column */
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* Slanted left edge of menu bar (same slant token as Quick Tools for a consistent seam) */
.ivl-pub-masthead__nav-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: #e8e8e8;
    box-shadow: inset 0 -3px 0 0 var(--ivl-fedex-orange);
    clip-path: polygon(var(--ivl-qt-slant) 0, 100% 0, 100% 100%, 0 100%);
}

@media (min-width: 1024px) {
    .ivl-pub-masthead__nav-wrap {
        display: flex;
        overflow: visible;
        z-index: 20;
    }
}

/* Quick Tools: outer group holds tab strip + mega panel (panel must not be clip-path descendants) */
.ivl-pub-masthead__qt-group {
    display: flex;
    align-items: stretch;
    flex-shrink: 0;
    align-self: stretch;
    height: 100%;
    min-height: 100%;
    gap: 0;
    position: relative;
    background: transparent;
    /* Above the gray nav strip so Quick Tools is never covered */
    z-index: 5;
}

/* Slanted navy tab + orange seam only (same clip as former whole-group treatment) */
.ivl-pub-masthead__qt-led {
    display: flex;
    align-items: stretch;
    flex-shrink: 0;
    align-self: stretch;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    height: 100%;
    min-height: 100%;
    gap: 0;
    container-type: size;
    container-name: ivl-qt;
    position: relative;
    background: var(--ivl-fedex-blue);
    clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}

/* Navy tab: slanted front (leading) edge + slanted seam toward gray rail */
.ivl-pub-masthead__qt {
    display: flex;
    align-items: center;
    align-self: stretch;
    height: 100%;
    min-height: 100%;
    box-sizing: border-box;
    padding: 0 0.85rem 0 0.95rem;
    font-size: 0.78125rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    color: #fff;
    background: var(--ivl-fedex-blue);
    text-decoration: none;
    flex-shrink: 0;
    clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.ivl-pub-masthead__qt:hover {
    filter: brightness(1.08);
    color: #fff;
}

.ivl-pub-masthead__qt::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.12);
    clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease;
}

/*
 * Orange accent: first thing on the gray rail, on the "other" side of the Quick Tools slant (gray side).
 * In flex flow after Quick Tools so the pair moves together; skew matches qt slant.
 */
.ivl-pub-masthead__red {
    flex-shrink: 0;
    align-self: stretch;
    width: 4px;
    margin-left: -2px;
    background: var(--ivl-fedex-orange);
    pointer-events: none;
    position: relative;
    z-index: 3;
    transform-origin: 0 0;
    /* Same slant as navy clip-path over full rail height */
    transform: skewX(-17deg);
}

@supports (transform: skewX(atan2(10px, 100cqh))) {
    .ivl-pub-masthead__red {
        transform: skewX(calc(-1 * atan2(var(--ivl-qt-slant, 14px), 100cqh)));
    }
}

/* ── Quick Tools megamenu (marketing site-style grid + active tab) ── */
@media (min-width: 1024px) {
    .ivl-pub-header-shell {
        position: relative;
    }

    /* Dim page behind open Quick Tools (premium focus, like marketing site) */
    .ivl-pub-header-shell::before {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(77, 20, 140, 0.42);
        /* Below util + masthead chrome; above page body (header shell is z-index 50) */
        z-index: 1;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.22s ease, visibility 0.22s ease;
    }

    .ivl-pub-header-shell:has(.ivl-pub-masthead__qt-group:hover)::before,
    .ivl-pub-header-shell:has(.ivl-pub-masthead__qt-group:focus-within)::before,
    .ivl-pub-header-shell:has(.ivl-pub-masthead__qt-group.ivl-pub-masthead__qt-group--open)::before {
        opacity: 1;
        visibility: visible;
    }

    .ivl-pub-masthead__qt-group:hover,
    .ivl-pub-masthead__qt-group:focus-within,
    .ivl-pub-masthead__qt-group.ivl-pub-masthead__qt-group--open {
        z-index: 37;
    }

    .ivl-pub-masthead__qt {
        appearance: none;
        border: none;
        margin: 0;
        font: inherit;
        cursor: pointer;
        text-align: center;
    }

    /* Keep Quick Tools on navy when hover/open; no light tab “card” behind the label */
    .ivl-pub-masthead__qt-group:hover .ivl-pub-masthead__qt,
    .ivl-pub-masthead__qt-group:focus-within .ivl-pub-masthead__qt,
    .ivl-pub-masthead__qt-group.ivl-pub-masthead__qt-group--open .ivl-pub-masthead__qt {
        background: var(--ivl-fedex-blue);
        color: #fff;
        filter: none;
    }

    .ivl-pub-masthead__qt-group:hover .ivl-pub-masthead__qt::after,
    .ivl-pub-masthead__qt-group:focus-within .ivl-pub-masthead__qt::after,
    .ivl-pub-masthead__qt-group.ivl-pub-masthead__qt-group--open .ivl-pub-masthead__qt::after {
        opacity: 1;
    }

    .ivl-pub-masthead__qt-group:hover .ivl-pub-masthead__qt:hover,
    .ivl-pub-masthead__qt-group:focus-within .ivl-pub-masthead__qt:hover,
    .ivl-pub-masthead__qt-group.ivl-pub-masthead__qt-group--open .ivl-pub-masthead__qt:hover {
        filter: brightness(1.08);
        color: #fff;
    }

    .ivl-pub-masthead__qt:focus-visible {
        outline: 2px solid var(--ivl-fedex-orange);
        outline-offset: 2px;
        z-index: 2;
    }

    .ivl-pub-qt-panel {
        position: absolute;
        left: 0;
        top: 100%;
        width: min(70vw, 56rem);
        max-width: calc(100vw - 1.5rem);
        margin: 0;
        padding: 0;
        background: #e8e8e8;
        border: 1px solid #d4d4d4;
        border-top: 1px solid #e8e8e8;
        box-shadow:
            0 4px 6px rgba(77, 20, 140, 0.04),
            0 18px 48px rgba(77, 20, 140, 0.14);
        z-index: 36;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(4px);
        transition:
            opacity 0.2s ease,
            visibility 0.2s ease,
            transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .ivl-pub-masthead__qt-group:hover .ivl-pub-qt-panel,
    .ivl-pub-masthead__qt-group:focus-within .ivl-pub-qt-panel,
    .ivl-pub-masthead__qt-group.ivl-pub-masthead__qt-group--open .ivl-pub-qt-panel {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .ivl-pub-qt-panel__inner {
        padding: 1.35rem 1.5rem 1.5rem;
    }

    .ivl-pub-qt-panel__grid {
        list-style: none;
        margin: 0;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 0.2rem 0.45rem;
    }

    .ivl-pub-qt-panel__tile {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        text-align: center;
        text-decoration: none;
        color: var(--ivl-fedex-blue-dark);
        padding: 0.85rem 0.4rem 1rem;
        min-height: 5.5rem;
        border-radius: 0.125rem;
        transition:
            background 0.15s ease,
            color 0.15s ease,
            box-shadow 0.15s ease;
    }

    .ivl-pub-qt-panel__tile:hover {
        background: rgba(255, 255, 255, 0.72);
        color: var(--ivl-fedex-ink-strong);
        box-shadow: inset 0 0 0 1px rgba(77, 20, 140, 0.12);
    }

    .ivl-pub-qt-panel__tile:focus-visible {
        outline: 2px solid var(--ivl-fedex-orange);
        outline-offset: 1px;
        background: #fff;
    }

    .ivl-pub-qt-panel__ico-wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 3.5rem;
        height: 3.5rem;
        margin-bottom: 0.5rem;
        color: var(--ivl-fedex-blue-dark);
    }

    .ivl-pub-qt-panel__ico {
        font-size: 2.75rem;
        line-height: 1;
        width: 2.75rem;
        height: 2.75rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .ivl-pub-qt-panel__label {
        font-size: 0.8125rem;
        font-weight: 700;
        line-height: 1.28;
        letter-spacing: 0.01em;
        max-width: 7.5rem;
    }
}

@media (min-width: 1024px) and (max-width: 1320px) {
    .ivl-pub-qt-panel__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .ivl-pub-qt-panel {
        width: min(85vw, 42rem);
    }

    .ivl-pub-qt-panel__label {
        font-size: 0.78rem;
        max-width: 9rem;
    }
}

@media (max-width: 1023px) {
    .ivl-pub-qt-panel {
        display: none !important;
    }
}

.ivl-pub-masthead__nav {
    position: relative;
    z-index: 1;
    display: flex;
    flex: 1;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 0;
    min-width: 0;
    margin-left: 0;
    padding: 0 0.5rem 0 0.2rem;
    background: transparent;
}

.ivl-pub-masthead__nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex: 1;
    align-items: stretch;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0;
    min-width: 0;
}

.ivl-pub-navitem {
    position: relative;
    display: flex;
    align-items: stretch;
    flex: 0 0 auto;
}

/* First column: visual gap where “Home” lived; logo links to home. Same flex share as other items on desktop. */
.ivl-pub-masthead__nav .ivl-pub-navitem--spacer {
    pointer-events: none;
}

@media (min-width: 1024px) {
    .ivl-pub-masthead__nav .ivl-pub-navitem--spacer:hover::before,
    .ivl-pub-masthead__nav .ivl-pub-navitem--spacer:focus-within::before {
        content: none !important;
    }
}

/* Desktop: show dropdown on hover or keyboard focus (focus-within) */
@media (min-width: 1024px) {
    .ivl-pub-masthead__nav .ivl-pub-navitem--dropdown {
        z-index: 1;
        container-type: inline-size;
        container-name: ivl-mast-navcol;
    }

    .ivl-pub-masthead__nav .ivl-pub-navitem--dropdown:hover,
    .ivl-pub-masthead__nav .ivl-pub-navitem--dropdown:focus-within,
    .ivl-pub-masthead__nav .ivl-pub-navitem--dropdown.ivl-pub-navitem--open {
        z-index: 35;
    }

    /* Equal primary columns: each top item + its dropdown share one band */
    .ivl-pub-masthead__nav .ivl-pub-navitem {
        flex: 1 1 0;
        min-width: 0;
        flex-direction: column;
        align-items: stretch;
    }

    .ivl-pub-masthead__nav .ivl-pub-navitem__split {
        flex: 1;
        width: 100%;
        justify-content: center;
        align-items: stretch;
    }

    .ivl-pub-masthead__nav .ivl-pub-navitem:not(.ivl-pub-navitem--dropdown) .ivl-pub-navitem__link {
        flex: 1;
        width: 100%;
        justify-content: center;
        align-self: stretch;
    }

    .ivl-pub-masthead__nav .ivl-pub-navitem__link,
    .ivl-pub-masthead__nav .ivl-pub-navitem__link--primary {
        white-space: normal;
        text-align: center;
        line-height: 1.1;
        padding-left: 0.18rem;
        padding-right: 0.18rem;
    }

    /* Split row above dropdown (z-index 30) */
    .ivl-pub-masthead__nav .ivl-pub-navitem--dropdown:hover .ivl-pub-navitem__split,
    .ivl-pub-masthead__nav .ivl-pub-navitem--dropdown:focus-within .ivl-pub-navitem__split,
    .ivl-pub-masthead__nav .ivl-pub-navitem--dropdown.ivl-pub-navitem--open .ivl-pub-navitem__split {
        z-index: 31;
    }

    /* Wide megamenu (readable); anchored to trigger column, extends past narrow label slot */
    .ivl-pub-masthead__nav .ivl-pub-navitem--dropdown .ivl-pub-dropdown {
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transform: translateY(6px);
        transition:
            opacity 0.18s ease,
            transform 0.18s ease,
            visibility 0.18s ease;
        left: 0;
        right: auto;
        width: min(46rem, calc(100vw - 2rem));
        min-width: min(36rem, calc(100vw - 2rem));
        max-width: none;
        box-sizing: border-box;
        background: #f7f7f7;
        border: 1px solid #d4d4d4;
        border-top-color: #e8e8e8;
        box-shadow:
            0 4px 6px rgba(77, 20, 140, 0.04),
            0 18px 48px rgba(77, 20, 140, 0.14);
    }

    /* Right-side items: hinge panel so it stays in viewport */
    .ivl-pub-masthead__nav .ivl-pub-navitem--dropdown:nth-last-child(-n + 3) .ivl-pub-dropdown {
        left: auto;
        right: 0;
    }

    .ivl-pub-masthead__nav .ivl-pub-navitem--dropdown:hover .ivl-pub-dropdown,
    .ivl-pub-masthead__nav .ivl-pub-navitem--dropdown:focus-within .ivl-pub-dropdown,
    .ivl-pub-masthead__nav .ivl-pub-navitem--dropdown.ivl-pub-navitem--open .ivl-pub-dropdown {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .ivl-pub-masthead__nav .ivl-pub-navitem--dropdown .ivl-pub-dropdown__mega {
        transform: none;
    }

    .ivl-pub-masthead__nav .ivl-pub-dropdown__title {
        font-size: clamp(1.15rem, 1.6vw, 1.65rem);
        line-height: 1.1;
        padding-bottom: 0.45rem;
    }

    .ivl-pub-masthead__nav .ivl-pub-dropdown__col {
        padding: 0.85rem 1rem 1rem;
    }

    .ivl-pub-masthead__nav .ivl-pub-dropdown__link {
        font-size: 0.95rem;
        padding: 0.45rem 0.12rem;
    }

    .ivl-pub-masthead__nav .ivl-pub-dropdown__icon {
        font-size: 1.1rem;
    }

    .ivl-pub-masthead__nav .ivl-pub-dropdown__promo-text {
        font-size: 0.92rem;
    }

    .ivl-pub-masthead__nav .ivl-pub-dropdown__promo-btn {
        font-size: 0.88rem;
        padding: 0.42rem 0.95rem;
    }

    /* Bridge gap between trigger and panel so the pointer can reach the menu */
    .ivl-pub-masthead__nav .ivl-pub-navitem--dropdown .ivl-pub-dropdown::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 100%;
        height: 0.5rem;
    }

    .ivl-pub-masthead__nav .ivl-pub-navitem--dropdown:hover .ivl-pub-navitem__caret-ico,
    .ivl-pub-masthead__nav .ivl-pub-navitem--dropdown:focus-within .ivl-pub-navitem__caret-ico,
    .ivl-pub-masthead__nav .ivl-pub-navitem--dropdown.ivl-pub-navitem--open .ivl-pub-navitem__caret-ico {
        transform: rotate(180deg);
    }
}

/* When a primary column is narrow, stack Tools / Learn in one column */
@container ivl-mast-navcol (max-width: 300px) {
    .ivl-pub-dropdown__mega {
        grid-template-columns: 1fr;
    }

    .ivl-pub-dropdown__col + .ivl-pub-dropdown__col {
        border-left: 0;
        border-top: 1px solid #d6ddea;
    }
}

/* Slim rail: smaller type/padding than drawer links (see .ivl-pub-navitem__link base) */
.ivl-pub-masthead__nav .ivl-pub-navitem__link {
    padding: 0.2rem 0.26rem;
    font-size: 0.75rem;
    font-weight: 700;
}

.ivl-pub-masthead__nav .ivl-pub-navitem__caret {
    width: 1.12rem;
}

.ivl-pub-navitem__link {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.4rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--ivl-fedex-blue-dark);
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    transition: color 0.15s ease, box-shadow 0.15s ease;
}

.ivl-pub-masthead__nav .ivl-pub-navitem__link:hover,
.ivl-pub-masthead__nav .ivl-pub-navitem__link:focus-visible {
    color: var(--ivl-fedex-orange-deep);
    box-shadow: inset 0 -3px 0 0 var(--ivl-fedex-orange);
}

.ivl-pub-masthead__nav .ivl-pub-navitem__link.ivl-pub-nav__link--current:hover,
.ivl-pub-masthead__nav .ivl-pub-navitem__link.ivl-pub-nav__link--current:focus-visible {
    color: var(--ivl-fedex-ink-strong);
    box-shadow: inset 0 -3px 0 0 var(--ivl-fedex-orange-deep);
}

.ivl-pub-navitem__split {
    position: relative;
    display: flex;
    align-items: stretch;
    border-radius: 0.18rem;
    /* visible so rotated caret triangle is not clipped */
    overflow: visible;
}

.ivl-pub-navitem__link--primary {
    padding-right: 0.15rem;
}

.ivl-pub-navitem__caret {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.35rem;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--ivl-fedex-blue-dark);
    cursor: pointer;
    flex-shrink: 0;
    border-radius: 0.125rem;
}

.ivl-pub-navitem__caret:hover,
.ivl-pub-navitem__caret:focus-visible {
    background: transparent;
    outline: none;
}

.ivl-pub-navitem__caret-ico {
    display: block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    transform-origin: 50% 40%;
    transition: transform 0.18s ease;
}


.ivl-pub-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 34rem;
    width: min(44rem, calc(100vw - 1rem));
    margin: 0;
    padding: 0;
    background: #f3f4f6;
    border: 1px solid #d0d8e5;
    border-radius: 0;
    box-shadow: 0 14px 28px rgba(77, 20, 140, 0.18);
    z-index: 30;
    overflow: hidden auto;
    max-height: min(78vh, 34rem);
    overflow-y: auto;
}

.ivl-pub-dropdown__mega {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 0;
}

.ivl-pub-dropdown__col {
    padding: 0.8rem 1rem 0.95rem;
}

.ivl-pub-dropdown__col + .ivl-pub-dropdown__col {
    border-left: 1px solid #d6ddea;
}

.ivl-pub-dropdown__title {
    margin: 0;
    padding: 0 0 0.45rem;
    font-size: 1.9rem;
    line-height: 1.05;
    font-weight: 700;
    color: var(--ivl-fedex-ink);
    position: relative;
    border-bottom: 1px solid #d6ddea;
}

.ivl-pub-dropdown__title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: min(5.5rem, 38%);
    height: 3px;
    background: var(--ivl-fedex-orange);
    border-radius: 2px 2px 0 0;
    pointer-events: none;
}

.ivl-pub-dropdown__list {
    margin: 0;
    padding: 0.45rem 0 0;
    list-style: none;
}

.ivl-pub-dropdown__link {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.45rem 0.1rem;
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--ivl-fedex-ink);
    text-decoration: none;
    white-space: normal;
    border-radius: 0;
    border-bottom: 0;
    line-height: 1.25;
}

.ivl-pub-dropdown__icon {
    font-size: 1.05rem;
    line-height: 1;
    width: 1.2em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ivl-fedex-blue);
    flex-shrink: 0;
}

.ivl-pub-dropdown__link:hover {
    background: rgba(255, 255, 255, 0.45);
    color: var(--ivl-fedex-blue-dark);
    text-decoration: none;
}

.ivl-pub-dropdown__promo {
    margin-top: 0.8rem;
    border-top: 1px solid #d6ddea;
    padding-top: 0.7rem;
}

.ivl-pub-dropdown__promo-text {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.35;
    color: var(--ivl-fedex-muted);
}

.ivl-pub-dropdown__promo-btn {
    display: inline-flex;
    margin-top: 0.65rem;
    align-items: center;
    justify-content: center;
    padding: 0.42rem 0.95rem;
    border-radius: 0.2rem;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    background: var(--ivl-fedex-orange-deep);
}

.ivl-pub-dropdown__promo-btn:hover {
    filter: brightness(1.08);
    color: #fff;
}

@media (max-width: 1366px) {
    .ivl-pub-dropdown {
        min-width: 29rem;
        width: min(36rem, calc(100vw - 0.75rem));
    }

    .ivl-pub-dropdown__title {
        font-size: 1.45rem;
    }

    .ivl-pub-dropdown__link {
        font-size: 0.9rem;
    }
}

@media (max-width: 1120px) {
    .ivl-pub-dropdown {
        min-width: 22rem;
        width: min(28rem, calc(100vw - 0.75rem));
    }

    .ivl-pub-dropdown__title {
        font-size: 1.12rem;
    }

    .ivl-pub-dropdown__mega {
        grid-template-columns: 1fr;
    }

    .ivl-pub-dropdown__col + .ivl-pub-dropdown__col {
        border-left: 0;
        border-top: 1px solid #d6ddea;
    }

    .ivl-pub-dropdown__link {
        font-size: 0.84rem;
    }

    .ivl-pub-dropdown__icon {
        font-size: 0.95rem;
    }
}

/* Single top-level links (no split): full-cell highlight via navitem pseudo */
.ivl-pub-masthead__nav .ivl-pub-navitem:not(.ivl-pub-navitem--dropdown) {
    position: relative;
}

.ivl-pub-masthead__nav .ivl-pub-navitem:not(.ivl-pub-navitem--dropdown) .ivl-pub-navitem__link {
    position: relative;
    z-index: 1;
}

.ivl-pub-masthead__nav .ivl-pub-navitem:not(.ivl-pub-navitem--dropdown) .ivl-pub-navitem__link::before {
    content: none;
}

.ivl-pub-masthead__nav .ivl-pub-navitem:not(.ivl-pub-navitem--dropdown):hover::before,
.ivl-pub-masthead__nav .ivl-pub-navitem:not(.ivl-pub-navitem--dropdown):focus-within::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.55);
    clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
    z-index: 0;
    pointer-events: none;
}

/* Mega-menu row: full-cell highlight via navitem pseudo */
.ivl-pub-masthead__nav .ivl-pub-navitem--dropdown:hover .ivl-pub-navitem__split::before,
.ivl-pub-masthead__nav .ivl-pub-navitem--dropdown:focus-within .ivl-pub-navitem__split::before,
.ivl-pub-masthead__nav .ivl-pub-navitem--dropdown.ivl-pub-navitem--open .ivl-pub-navitem__split::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.55);
    clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
    z-index: 0;
    pointer-events: none;
}

.ivl-pub-masthead__nav .ivl-pub-navitem--dropdown:hover .ivl-pub-navitem__link.ivl-pub-navitem__link--primary,
.ivl-pub-masthead__nav .ivl-pub-navitem--dropdown:focus-within .ivl-pub-navitem__link.ivl-pub-navitem__link--primary,
.ivl-pub-masthead__nav .ivl-pub-navitem--dropdown.ivl-pub-navitem--open .ivl-pub-navitem__link.ivl-pub-navitem__link--primary,
.ivl-pub-masthead__nav .ivl-pub-navitem--dropdown:hover .ivl-pub-navitem__caret,
.ivl-pub-masthead__nav .ivl-pub-navitem--dropdown:focus-within .ivl-pub-navitem__caret,
.ivl-pub-masthead__nav .ivl-pub-navitem--dropdown.ivl-pub-navitem--open .ivl-pub-navitem__caret {
    background: transparent !important;
    position: relative;
    z-index: 1;
}

/* Masthead mega panel: rectangular row highlights */
.ivl-pub-masthead__nav .ivl-pub-dropdown__link {
    position: relative;
    z-index: 0;
}

.ivl-pub-masthead__nav .ivl-pub-dropdown__link::before {
    content: none;
}

.ivl-pub-masthead__nav .ivl-pub-dropdown__link:hover,
.ivl-pub-masthead__nav .ivl-pub-dropdown__link:focus-visible {
    background: transparent;
}

.ivl-pub-masthead__nav .ivl-pub-dropdown__link:hover::before,
.ivl-pub-masthead__nav .ivl-pub-dropdown__link:focus-visible::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.45);
    border-radius: 0.125rem;
    z-index: -1;
    pointer-events: none;
}

.ivl-pub-masthead__nav .ivl-pub-dropdown__link:focus-visible {
    outline: 2px solid var(--ivl-fedex-orange);
    outline-offset: 2px;
}

/* Current page: drawer stays flat; masthead uses rectangular chips */
.ivl-pub-drawer__nav a.ivl-pub-nav__link--current {
    color: var(--ivl-fedex-ink-strong);
    background: rgba(255, 255, 255, 0.75);
}

.ivl-pub-masthead__nav .ivl-pub-navitem:not(.ivl-pub-navitem--dropdown) .ivl-pub-navitem__link.ivl-pub-nav__link--current {
    color: var(--ivl-fedex-ink-strong);
    background: transparent;
    position: relative;
    z-index: 1;
}

.ivl-pub-masthead__nav .ivl-pub-navitem:not(.ivl-pub-navitem--dropdown) .ivl-pub-navitem__link.ivl-pub-nav__link--current::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.55);
    clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
    z-index: -1;
    pointer-events: none;
}

.ivl-pub-masthead__nav .ivl-pub-navitem:not(.ivl-pub-navitem--dropdown) .ivl-pub-navitem__link.ivl-pub-nav__link--current:hover::before,
.ivl-pub-masthead__nav .ivl-pub-navitem:not(.ivl-pub-navitem--dropdown) .ivl-pub-navitem__link.ivl-pub-nav__link--current:focus-visible::before {
    background: rgba(255, 255, 255, 0.55);
}

.ivl-pub-masthead__nav .ivl-pub-dropdown__link.ivl-pub-nav__link--current {
    color: var(--ivl-fedex-ink-strong);
    background: transparent;
    z-index: 1;
}

.ivl-pub-masthead__nav .ivl-pub-dropdown__link.ivl-pub-nav__link--current::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.55);
    border-radius: 0.125rem;
    z-index: -1;
    pointer-events: none;
}

.ivl-pub-masthead__nav .ivl-pub-dropdown__link.ivl-pub-nav__link--current:hover::before,
.ivl-pub-masthead__nav .ivl-pub-dropdown__link.ivl-pub-nav__link--current:focus-visible::before {
    background: rgba(255, 255, 255, 0.55);
}

/* Mega: idle “current”; chip spans label + caret */
.ivl-pub-masthead__nav .ivl-pub-navitem--dropdown:not(:hover):not(:focus-within):not(.ivl-pub-navitem--open) .ivl-pub-navitem__split--primary-current::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.55);
    clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
    z-index: 0;
    pointer-events: none;
}

.ivl-pub-masthead__nav .ivl-pub-navitem--dropdown:not(:hover):not(:focus-within):not(.ivl-pub-navitem--open) .ivl-pub-navitem__split--primary-current .ivl-pub-navitem__link.ivl-pub-navitem__link--primary.ivl-pub-nav__link--current {
    color: var(--ivl-fedex-ink-strong);
    background: transparent !important;
    position: relative;
    z-index: 1;
}

.ivl-pub-masthead__nav .ivl-pub-navitem--dropdown:not(:hover):not(:focus-within):not(.ivl-pub-navitem--open) .ivl-pub-navitem__split--primary-current .ivl-pub-navitem__caret {
    background: transparent !important;
    position: relative;
    z-index: 1;
}

/* Persistent slanted highlight for clicked/current top menu items */
.ivl-pub-masthead__nav .ivl-pub-navitem:not(.ivl-pub-navitem--dropdown) .ivl-pub-navitem__link.ivl-pub-nav__link--current::before,
.ivl-pub-masthead__nav .ivl-pub-navitem--dropdown .ivl-pub-navitem__split--primary-current::before,
.ivl-pub-masthead__nav .ivl-pub-navitem--dropdown.ivl-pub-navitem--active .ivl-pub-navitem__split::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.55);
    clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
    z-index: 0;
    pointer-events: none;
}

.ivl-pub-masthead__nav .ivl-pub-navitem--dropdown.ivl-pub-navitem--active .ivl-pub-navitem__link.ivl-pub-navitem__link--primary,
.ivl-pub-masthead__nav .ivl-pub-navitem--dropdown.ivl-pub-navitem--active .ivl-pub-navitem__caret,
.ivl-pub-masthead__nav .ivl-pub-navitem:not(.ivl-pub-navitem--dropdown) .ivl-pub-navitem__link.ivl-pub-nav__link--current {
    position: relative;
    z-index: 1;
    color: var(--ivl-fedex-blue) !important;
    font-weight: 700;
    opacity: 1 !important;
    background: transparent !important;
    filter: none !important;
}

.ivl-pub-masthead__nav .ivl-pub-navitem--active,
.ivl-pub-masthead__nav .ivl-pub-navitem--active .ivl-pub-navitem__link,
.ivl-pub-masthead__nav .ivl-pub-navitem__link.ivl-pub-nav__link--current {
    opacity: 1 !important;
}

.ivl-pub-masthead__nav .ivl-pub-navitem__link.ivl-pub-nav__link--current,
.ivl-pub-masthead__nav .ivl-pub-navitem--active .ivl-pub-navitem__link,
.ivl-pub-masthead__nav .ivl-pub-navitem--active .ivl-pub-navitem__caret {
    color: var(--ivl-fedex-blue) !important;
    opacity: 1 !important;
}

/* Hard lock for pages like Tracking / About: keep active link text fully strong */
.ivl-pub-masthead__nav a.ivl-pub-nav__link--current,
.ivl-pub-masthead__nav a.ivl-pub-nav__link--current:link,
.ivl-pub-masthead__nav a.ivl-pub-nav__link--current:visited,
.ivl-pub-masthead__nav .ivl-pub-navitem--active > a.ivl-pub-navitem__link,
.ivl-pub-masthead__nav .ivl-pub-navitem--active > a.ivl-pub-navitem__link:visited,
.ivl-pub-masthead__nav .ivl-pub-navitem--active .ivl-pub-navitem__link--primary,
.ivl-pub-masthead__nav .ivl-pub-navitem--active .ivl-pub-navitem__caret {
    color: var(--ivl-fedex-blue) !important;
    opacity: 1 !important;
    -webkit-text-fill-color: var(--ivl-fedex-blue);
    text-shadow: none !important;
    filter: none !important;
}

/* Specific guard: About + Tracking top links should never look faded when current */
.ivl-pub-masthead__nav a.ivl-pub-navitem__link[href="about.php"].ivl-pub-nav__link--current,
.ivl-pub-masthead__nav a.ivl-pub-navitem__link[href="track/tracking.php"].ivl-pub-nav__link--current,
.ivl-pub-masthead__nav a.ivl-pub-navitem__link[href$="/about.php"].ivl-pub-nav__link--current,
.ivl-pub-masthead__nav a.ivl-pub-navitem__link[href$="/track/tracking.php"].ivl-pub-nav__link--current,
.ivl-pub-masthead__nav .ivl-pub-navitem--active > a.ivl-pub-navitem__link[href="about.php"],
.ivl-pub-masthead__nav .ivl-pub-navitem--active > a.ivl-pub-navitem__link[href="track/tracking.php"],
.ivl-pub-masthead__nav .ivl-pub-navitem--active > a.ivl-pub-navitem__link[href$="/about.php"],
.ivl-pub-masthead__nav .ivl-pub-navitem--active > a.ivl-pub-navitem__link[href$="/track/tracking.php"] {
    color: var(--ivl-fedex-blue) !important;
    opacity: 1 !important;
    font-weight: 700 !important;
    -webkit-text-fill-color: var(--ivl-fedex-blue) !important;
    text-shadow: none !important;
    filter: none !important;
}

/* Match active state EXACTLY to hover highlight */
.ivl-pub-masthead__nav .ivl-pub-navitem:not(.ivl-pub-navitem--dropdown) .ivl-pub-navitem__link.ivl-pub-nav__link--current::before,
.ivl-pub-masthead__nav .ivl-pub-navitem--dropdown .ivl-pub-navitem__split--primary-current::before,
.ivl-pub-masthead__nav .ivl-pub-navitem--dropdown.ivl-pub-navitem--active .ivl-pub-navitem__split::before {
    background: rgba(255, 255, 255, 0.55) !important;
    clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%) !important;
    z-index: -1 !important;
}

/* Home link: no chip on active; text styling alone marks it */
.ivl-pub-masthead__nav a.ivl-pub-navitem__link[href="index.php"].ivl-pub-nav__link--current::before,
.ivl-pub-masthead__nav a.ivl-pub-navitem__link[href$="/index.php"].ivl-pub-nav__link--current::before {
    background: transparent !important;
}

.ivl-pub-masthead__search {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.55rem;
    color: var(--ivl-fedex-blue-dark);
    flex-shrink: 0;
    border-left: 1px solid rgba(77, 20, 140, 0.15);
    background: rgba(255, 255, 255, 0.55);
    position: relative;
    /* Above open megamenus (z-index 35) so the control stays clickable */
    z-index: 40;
    pointer-events: auto;
}

.ivl-pub-masthead__search:hover {
    color: var(--ivl-fedex-ink-strong);
    background: #dedede;
}

.ivl-pub-masthead__search .ivl-pub-masthead__search-icon,
.ivl-pub-masthead__search i[class*="fa-"] {
    font-size: 1.05rem;
    line-height: 1;
    width: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ivl-pub-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    margin: 0.1rem 0.5rem 0.1rem auto;
    border: 1px solid #c5d4e8;
    border-radius: 0.25rem;
    background: #fff;
    cursor: pointer;
    color: var(--ivl-fedex-blue-dark);
    flex-shrink: 0;
    align-self: center;
}

.ivl-pub-menu-btn__ico {
    font-size: 1.1rem;
    line-height: 1;
}

@media (min-width: 1024px) {
    .ivl-pub-menu-btn {
        display: none;
    }
}

@media (max-width: 1023px) {
    .ivl-pub-masthead {
        --ivl-masthead-logo-h: 2rem;
    }

    .ivl-pub-masthead__row {
        flex-wrap: nowrap;
        padding-left: 0.25rem;
    }

    .ivl-pub-masthead__brand {
        position: static;
        transform: none;
        padding-left: 0.8rem;
        width: min(14rem, calc(100% - 3.5rem));
        max-width: calc(100% - 3.5rem);
        height: var(--ivl-masthead-rail-h);
        overflow: hidden;
    }

    .ivl-pub-masthead__logoimg {
        width: auto;
        height: var(--ivl-masthead-logo-h);
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        object-position: left center;
        transform: none;
    }
}

@media (max-width: 480px) {
    .ivl-pub-masthead {
        --ivl-masthead-logo-h: 1.7rem;
    }

    .ivl-pub-masthead__brand {
        width: min(12.25rem, calc(100% - 3.35rem));
        padding-left: 0.55rem;
    }
}

/* Mobile drawer */
.ivl-pub-drawer {
    position: fixed;
    inset: 0;
    z-index: 60;
    pointer-events: none;
    visibility: hidden;
}

.ivl-pub-drawer.is-open {
    pointer-events: auto;
    visibility: visible;
}

.ivl-pub-drawer__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(77, 20, 140, 0.45);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.ivl-pub-drawer.is-open .ivl-pub-drawer__backdrop {
    opacity: 1;
}

.ivl-pub-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(20rem, 92vw);
    height: 100%;
    max-height: 100vh;
    padding-bottom: env(safe-area-inset-bottom, 0px);
    box-sizing: border-box;
    background: #fff;
    border-left: 1px solid #c5d4e8;
    box-shadow: -8px 0 32px rgba(77, 20, 140, 0.12);
    transform: translateX(100%);
    transition: transform 0.22s ease;
    display: flex;
    flex-direction: column;
}

@supports (height: 100dvh) {
    .ivl-pub-drawer__panel {
        max-height: 100dvh;
    }
}

.ivl-pub-drawer.is-open .ivl-pub-drawer__panel {
    transform: translateX(0);
}

.ivl-pub-drawer__head {
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 800;
    color: var(--ivl-fedex-ink);
}

.ivl-pub-drawer__close {
    width: 2.5rem;
    height: 2.5rem;
    border: 0;
    background: #f1f5f9;
    border-radius: 0.25rem;
    cursor: pointer;
    font-size: 1.25rem;
    line-height: 1;
}

.ivl-pub-drawer__nav {
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
}

.ivl-pub-drawer__toplink {
    padding: 0.85rem 1rem;
    font-weight: 600;
    color: var(--ivl-fedex-ink);
    text-decoration: none;
    border-radius: 0.25rem;
}

.ivl-pub-drawer__toplink:hover {
    background: #e8f0fb;
}

.ivl-pub-drawer__toplink--portal {
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.ivl-pub-drawer__details {
    border-radius: 0.25rem;
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.ivl-pub-drawer__summary {
    padding: 0.85rem 1rem;
    font-weight: 700;
    color: var(--ivl-fedex-blue-dark);
    cursor: pointer;
    list-style: none;
}

.ivl-pub-drawer__summary::-webkit-details-marker {
    display: none;
}

.ivl-pub-drawer__sub {
    list-style: none;
    margin: 0;
    padding: 0 0 0.5rem 0;
    background: #f8fafc;
    border-top: 1px solid #e5e7eb;
}

.ivl-pub-drawer__sublink {
    display: block;
    padding: 0.65rem 1rem 0.65rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--ivl-fedex-ink);
    text-decoration: none;
}

.ivl-pub-drawer__sublink:hover {
    background: #e8f0fb;
    color: var(--ivl-fedex-blue-dark);
}

/* ── Hero: full-bleed image + card docked flush to bottom of hero ── */
.ivl-pub-hero-split {
    --ivl-hero-navy: var(--ivl-fedex-blue);
    --ivl-hero-navy-deep: var(--ivl-fedex-blue-dark);
    position: relative;
    isolation: isolate;
    margin-top: 0;
    /* Pull up 1px to remove seam between masthead and hero media */
    margin-top: -1px;
    min-height: min(72vh, 36rem);
    border-bottom: 1px solid #d4d4d8;
    overflow: hidden;
}

.ivl-pub-hero-split__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: var(--ivl-fedex-blue-deep);
}

.ivl-pub-hero-split__bg picture {
    display: block;
    width: 100%;
    height: 100%;
}

.ivl-pub-hero-split__bg img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 20rem;
    object-fit: cover;
    object-position: center;
}

/* Positioning layer: card aligned to bottom edge of hero (flush with section bottom) */
.ivl-pub-hero-split__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 1rem var(--ivl-home-gutter) 0 0;
    box-sizing: border-box;
    pointer-events: none;
}

@media (max-width: 767px) {
    .ivl-pub-hero-split__bg img {
        transform: scale(1.04);
        transform-origin: center center;
    }
}

@media (min-width: 768px) {
    .ivl-pub-hero-split__overlay {
        padding-top: 1.25rem;
        padding-right: max(0.5rem, calc(var(--ivl-home-gutter) - 0.75rem));
        padding-bottom: 0;
    }
}

.ivl-pub-hero-split__card {
    pointer-events: auto;
    width: 100%;
    max-width: 36rem;
    margin: 0;
    background: var(--ivl-hero-navy);
    color: #fff;
    padding: 1.75rem 1.8rem 1.5rem 1.8rem;
    box-sizing: border-box;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.38),
        0 2px 0 rgba(255, 255, 255, 0.06) inset;
    clip-path: none;
    border-radius: 0.25rem 0.25rem 0 0;
}

@media (min-width: 768px) {
    .ivl-pub-hero-split__card {
        max-width: min(44rem, 62vw);
        padding: 2.25rem 2.35rem 2rem 2.2rem;
    }
}

@media (min-width: 1024px) {
    .ivl-pub-hero-split__card {
        border-radius: 0;
        /* Slanted treatment only on large screens */
        clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
    }
}

.ivl-pub-hero-split h1 {
    font-size: clamp(1.65rem, 3.8vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #fff;
    line-height: 1.12;
    margin: 0 0 0.875rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.ivl-pub-hero-split__lede {
    font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.55;
    margin: 0 0 1.35rem;
    max-width: 40rem;
}

/* Hero CTA: ghost (white outline on navy) */
.ivl-pub-hero-split__cta-ghost {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.35rem;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #fff;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.95);
    border-radius: 2px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.ivl-pub-hero-split__cta-ghost:hover {
    background: var(--ivl-fedex-orange-wash);
    border-color: rgba(255, 179, 128, 0.98);
    color: #fff;
    box-shadow: 0 0 0 1px rgba(255, 102, 0, 0.35);
}

.ivl-pub-hero-split__fine {
    font-size: 0.625rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.7);
    margin: 1.35rem clamp(0.65rem, 2.5vw, 1.75rem) 0 0;
    max-width: min(40rem, 100%);
    box-sizing: border-box;
    overflow-wrap: anywhere;
    word-break: break-word;
}

@media (min-width: 1024px) {
    /* Card uses clip-path with a cut on the bottom-right; extra right margin keeps fine print inside the visible face */
    .ivl-pub-hero-split__fine {
        margin-right: clamp(1.35rem, 9vw, 4.5rem);
    }
}

/* Right-edge feedback tab */
.ivl-pub-hero-split__feedback {
    position: absolute;
    right: 0;
    top: 50%;
    z-index: 3;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    padding: 0.65rem 0.4rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #fff;
    background: var(--ivl-hero-navy-deep);
    border: 0;
    border-left: 3px solid var(--ivl-fedex-orange);
    text-decoration: none;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease;
}

.ivl-pub-hero-split__feedback:hover {
    background: var(--ivl-fedex-orange);
    color: #fff;
    box-shadow: -6px 0 24px var(--ivl-fedex-orange-glow);
}

@media (max-width: 767px) {
    .ivl-pub-hero-split__feedback {
        display: none;
    }
}

/* ── Track panel section (marketing site "Search or Track") ── */
.ivl-pub-track-panel {
    background: #eef2f7;
    border-bottom: 1px solid #c5d4e8;
    padding: 2rem 1rem 2.5rem;
}

.ivl-pub-track-panel__title {
    text-align: center;
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 800;
    color: var(--ivl-fedex-ink);
    margin: 0 0 1.5rem;
    letter-spacing: -0.02em;
}

/* marketing site-style lookup (shared tokens with track/tracking.php) */
body.ivl-pub-home .ivl-pub-track-wrap {
    --ivl-doc-navy: var(--ivl-fedex-blue);
    --ivl-doc-blue: var(--ivl-fedex-orange);
    --ivl-doc-blue-soft: #f5f0fc;
    --ivl-doc-border: #c5d4e8;
    --ivl-muted: var(--ivl-fedex-muted);
    --ivl-doc-paper: #ffffff;
    --tr-paper: #ffffff;
    --tr-border: #c5d4e8;
    --tr-blue: var(--ivl-fedex-orange);
    --tr-navy: var(--ivl-fedex-ink);
    font-family: "DM Sans", system-ui, sans-serif;
    color: var(--ivl-fedex-ink);
}

body.ivl-pub-home .ivl-pub-shell {
    color: var(--ivl-fedex-ink);
    background: #eef3fa;
    border: 1px solid var(--ivl-doc-border);
    border-radius: 4px;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 12px 40px rgba(77, 20, 140, 0.08),
        0 2px 8px rgba(77, 20, 140, 0.04);
    overflow: hidden;
}

body.ivl-pub-home .ivl-pub-topbar--lookup {
    background: #f8fafc;
    color: var(--ivl-doc-navy);
    border-bottom: 1px solid var(--ivl-doc-border);
    padding: 1rem 1.25rem 1.1rem;
}

body.ivl-pub-home .ivl-pub-topbar__eyebrow {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ivl-doc-blue);
}

body.ivl-pub-home .ivl-pub-topbar--lookup__title {
    font-size: clamp(1.15rem, 3vw, 1.45rem);
    font-weight: 700;
    color: var(--ivl-doc-navy);
    margin-top: 0.35rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

body.ivl-pub-home .ivl-pub-topbar--lookup__sub {
    font-size: 0.8rem;
    color: var(--ivl-muted);
    margin-top: 0.45rem;
    max-width: 36rem;
    line-height: 1.45;
}

body.ivl-pub-home .ivl-track-lookup {
    background: var(--ivl-doc-paper);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 1.5rem 1.25rem 1.75rem;
}

body.ivl-pub-home .ivl-track-lookup label.ivl-track-lookup__label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--tr-blue);
    margin-bottom: 0.75rem;
}

body.ivl-pub-home .ivl-track-lookup input[type="text"] {
    width: 100%;
    padding: 0.95rem 1rem 0.95rem 2.75rem;
    font-size: 1.05rem;
    font-family: "DM Sans", system-ui, sans-serif; font-variant-numeric: tabular-nums;
    letter-spacing: 0.04em;
    color: var(--tr-navy);
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
}

body.ivl-pub-home .ivl-track-lookup input[type="text"]:focus {
    border-color: var(--tr-blue);
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.22);
    background: #fff;
}

body.ivl-pub-home .ivl-track-lookup .ivl-track-btn-track {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.95rem 1.75rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    background: var(--ivl-fedex-orange-deep);
    border: 1px solid var(--ivl-fedex-orange-deep);
    border-radius: 4px;
    cursor: pointer;
    transition: filter 0.15s, transform 0.1s;
}

body.ivl-pub-home .ivl-track-lookup .ivl-track-btn-track:hover {
    filter: brightness(1.05);
}

body.ivl-pub-home .ivl-track-lookup i[class*="fa-"] {
    color: var(--ivl-fedex-slate);
}

/* ── Quick tools grid (marketing site icon tiles) ── */
.ivl-pub-quick {
    background: #fff;
    padding: 2.5rem 1rem 3rem;
    border-bottom: 1px solid #e2e8f0;
}

.ivl-pub-quick__title {
    text-align: center;
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 800;
    color: var(--ivl-fedex-ink);
    margin: 0 0 2rem;
}

.ivl-pub-quick__grid {
    max-width: 72rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

@media (min-width: 768px) {
    .ivl-pub-quick__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .ivl-pub-quick__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1.25rem;
    }
}

.ivl-pub-quick__tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.25rem 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.25rem;
    background: #fafbfc;
    text-decoration: none;
    color: inherit;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.ivl-pub-quick__tile:hover {
    border-color: rgba(255, 102, 0, 0.45);
    background: #fffefb;
    box-shadow:
        0 4px 18px rgba(77, 20, 140, 0.08),
        0 -3px 0 0 var(--ivl-fedex-orange) inset;
}

.ivl-pub-quick__ico {
    width: 3.75rem;
    height: 3.75rem;
    font-size: 1.45rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #f3effb;
    color: var(--ivl-fedex-orange-deep);
    margin-bottom: 0.75rem;
    box-shadow: 0 0 0 1px rgba(255, 102, 0, 0.18);
    transition:
        background 0.2s ease,
        box-shadow 0.2s ease,
        color 0.2s ease;
}

.ivl-pub-quick__ico i[class*="fa-"] {
    font-size: 1em;
    line-height: 1;
}

.ivl-pub-quick__tile:hover .ivl-pub-quick__ico {
    background: var(--ivl-fedex-blue);
    color: #fff;
    box-shadow: 0 4px 14px var(--ivl-fedex-orange-glow);
}

/* About page: mission / vision / values — same circular icon chrome as homepage quick tiles */
body.ivl-pub-home .ivl-pub-about-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 999px;
    background: #f3effb;
    color: var(--ivl-fedex-orange-deep);
    box-shadow: 0 0 0 1px rgba(255, 102, 0, 0.18);
}

body.ivl-pub-home .ivl-pub-about-icon i[class*="fa-"] {
    font-size: 1em;
    line-height: 1;
}

body.ivl-pub-home .ivl-pub-about-icon--md {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.0625rem;
}

body.ivl-pub-home .ivl-pub-about-icon--sm {
    width: 1.875rem;
    height: 1.875rem;
    font-size: 0.875rem;
}

body.ivl-pub-home .ivl-pub-about-icon--lg {
    width: 2.875rem;
    height: 2.875rem;
    font-size: 1.1875rem;
}

body.ivl-pub-home .ivl-pub-about-icon--xl {
    width: 3.25rem;
    height: 3.25rem;
    font-size: 1.3125rem;
}

body.ivl-pub-home .ivl-pub-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 999px;
    background: var(--ivl-fedex-blue);
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    box-shadow: 0 0 0 1px rgba(255, 102, 0, 0.28);
}

body.ivl-pub-home .ivl-pub-about-eyebrow {
    color: var(--ivl-fedex-blue-dark);
}

body.ivl-pub-home .ivl-pub-subpage-hero__eyebrow {
    color: rgba(255, 214, 191, 0.95);
}

body.ivl-pub-home .ivl-pub-inline-link {
    color: var(--ivl-fedex-blue-dark);
    text-decoration: none;
    transition: color 0.15s ease;
}

body.ivl-pub-home .ivl-pub-inline-link:hover {
    color: var(--ivl-fedex-orange-deep);
}

.ivl-pub-quick__tile h3 {
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--ivl-fedex-ink);
    line-height: 1.3;
}

.ivl-pub-quick__tile p {
    margin: 0.35rem 0 0;
    font-size: 0.75rem;
    color: var(--ivl-fedex-muted);
    line-height: 1.35;
}

/* ── Featured band ── */
.ivl-pub-featured {
    background: #f1f5f9;
    padding: 2.5rem 1rem 3rem;
    border-bottom: 1px solid #e2e8f0;
}

.ivl-pub-featured__head {
    max-width: 48rem;
    margin: 0 auto 2rem;
    text-align: center;
}

.ivl-pub-featured__head h2 {
    margin: 0;
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 800;
    color: var(--ivl-fedex-ink);
}

.ivl-pub-featured__head p {
    margin: 0.75rem 0 0;
    color: var(--ivl-fedex-muted);
    font-size: 1rem;
}

.ivl-pub-featured__grid {
    max-width: 72rem;
    margin: 0 auto;
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .ivl-pub-featured__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.ivl-pub-featured__card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 0.35rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(77, 20, 140, 0.04);
    transition:
        border-color 0.2s ease,
        box-shadow 0.25s ease;
}

.ivl-pub-featured__card:hover {
    border-color: rgba(255, 102, 0, 0.35);
    box-shadow:
        0 10px 28px rgba(77, 20, 140, 0.1),
        0 -4px 0 0 var(--ivl-fedex-orange) inset;
}

.ivl-pub-featured__card img {
    width: 100%;
    height: 11rem;
    object-fit: cover;
}

.ivl-pub-featured__body {
    padding: 1.25rem;
}

.ivl-pub-featured__body h3 {
    margin: 0 0 0.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--ivl-fedex-ink);
}

.ivl-pub-featured__body p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--ivl-fedex-muted);
    line-height: 1.5;
}

.ivl-pub-featured__link {
    display: inline-block;
    margin-top: 0.85rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--ivl-fedex-orange-deep);
    text-decoration: none;
}

.ivl-pub-featured__link:hover {
    text-decoration: underline;
}

/* ── Stats strip ── */
.ivl-pub-stats {
    background: var(--ivl-fedex-blue);
    color: #fff;
    padding: 2rem var(--ivl-home-gutter);
    border-bottom: 2px solid rgba(255, 102, 0, 0.55);
}

.ivl-pub-stats__grid {
    max-width: var(--ivl-home-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .ivl-pub-stats__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.ivl-pub-stats .count {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.ivl-pub-stats__label {
    font-size: 0.8125rem;
    opacity: 0.88;
    margin-top: 0.35rem;
}

/* ── Alert strip (marketing site-style notice) ── */
.ivl-pub-alertstrip {
    background: #fffbeb;
    border-bottom: 1px solid #fde68a;
    padding: 1.25rem var(--ivl-home-gutter);
}

.ivl-pub-alertstrip__inner {
    max-width: var(--ivl-home-max);
    margin: 0 auto;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.ivl-pub-alertstrip__inner strong {
    display: block;
    color: #92400e;
    font-size: 0.9375rem;
    margin-bottom: 0.35rem;
}

.ivl-pub-alertstrip__inner p {
    margin: 0;
    font-size: 0.875rem;
    color: #78350f;
    line-height: 1.5;
}

/* ── Bottom CTA ── */
.ivl-pub-bottom-cta {
    background: #fff;
    padding: 2.5rem 1rem 3rem;
}

.ivl-pub-bottom-cta__inner {
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
    padding: 2rem 1.5rem;
    border: 1px solid #c5d4e8;
    border-radius: 0.35rem;
    background: #f8fafc;
}

.ivl-pub-bottom-cta__inner h2 {
    margin: 0 0 0.75rem;
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 800;
    color: var(--ivl-fedex-ink);
}

.ivl-pub-bottom-cta__inner p {
    margin: 0 0 1.25rem;
    color: var(--ivl-fedex-muted);
    font-size: 1rem;
}

.ivl-pub-bottom-cta__btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.ivl-pub-bottom-cta__btns a:first-child {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.5rem;
    font-weight: 700;
    font-size: 0.9375rem;
    color: #fff;
    background: var(--ivl-fedex-orange-deep);
    border: 1px solid var(--ivl-fedex-blue-deep);
    border-radius: 0.25rem;
    text-decoration: none;
    transition: filter 0.15s ease, box-shadow 0.2s ease;
}

.ivl-pub-bottom-cta__btns a:first-child:hover {
    filter: brightness(1.05);
    box-shadow: 0 6px 22px var(--ivl-fedex-orange-glow);
}

.ivl-pub-bottom-cta__btns a:last-child {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.65rem 1.5rem;
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--ivl-fedex-blue);
    background: #fff;
    border: 2px solid rgba(255, 102, 0, 0.45);
    border-radius: 0.25rem;
    text-decoration: none;
    transition:
        background 0.15s ease,
        color 0.15s ease,
        border-color 0.15s ease,
        box-shadow 0.2s ease;
}

.ivl-pub-bottom-cta__btns a:last-child:hover {
    background: var(--ivl-fedex-orange-wash);
    color: var(--ivl-fedex-orange-deep);
    border-color: var(--ivl-fedex-orange);
    box-shadow: 0 4px 16px rgba(77, 20, 140, 0.08);
}

/* ── Footer (marketing site-style multi-column) ── */
.ivl-pub-footer {
    background: var(--ivl-fedex-blue-dark);
    color: #cbd5e1;
    padding: 2.5rem var(--ivl-home-gutter) 1.5rem;
    border-top: 4px solid var(--ivl-fedex-orange);
    box-shadow: inset 0 5px 0 -1px rgba(77, 20, 140, 0.55);
}

.ivl-pub-footer__grid {
    max-width: var(--ivl-home-max);
    margin: 0 auto;
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .ivl-pub-footer__grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.ivl-pub-footer__brand {
    margin-bottom: 0.75rem;
}

/* Horizontal mark: same crop as masthead */
.ivl-pub-footer__logoimg {
    display: block;
    height: var(--ivl-brand-mark-h);
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: left center;
    transform: scale(calc(var(--ivl-logo-crop-scale) - 0.03));
    transform-origin: left center;
}

@media (max-width: 640px) {
    body.ivl-pub-home {
        --ivl-brand-mark-h: 2.5rem;
    }
}

.ivl-pub-footer__logotype {
    font-weight: 800;
    font-size: 1.125rem;
    color: #fff;
}

.ivl-pub-footer__about {
    font-size: 0.875rem;
    line-height: 1.55;
    color: var(--ivl-fedex-footer-muted);
    max-width: 28rem;
}

.ivl-pub-footer__email {
    margin: 0.85rem 0 0;
    font-size: 0.875rem;
}

.ivl-pub-footer__email a {
    color: #ffb380;
    font-weight: 600;
    text-decoration: none;
}

.ivl-pub-footer__email a:hover {
    text-decoration: underline;
    color: #fff5eb;
}

.ivl-pub-footer__hq {
    margin: 0.35rem 0 0;
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ivl-fedex-footer-dim);
    font-weight: 700;
}

.ivl-pub-footer h4 {
    margin: 0 0 1rem;
    font-size: 0.8125rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #f1f5f9;
}

.ivl-pub-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ivl-pub-footer li {
    margin-bottom: 0.65rem;
}

.ivl-pub-footer a {
    color: #cbd5e1;
    font-size: 0.875rem;
    text-decoration: none;
}

.ivl-pub-footer a:hover {
    color: #fff;
    text-decoration: underline;
}

.ivl-pub-footer__legal {
    max-width: var(--ivl-home-max);
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 102, 0, 0.22);
    text-align: center;
    font-size: 0.75rem;
    color: var(--ivl-fedex-footer-dim);
}

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ── Track strip (search + 3 shortcuts, one gray bar) ── */
.ivl-pub-track-strip {
    background: #e8ecf1;
    border-bottom: 1px solid #c5d4e8;
    padding: 1rem var(--ivl-home-gutter) 1.25rem;
}

.ivl-pub-track-strip__inner {
    max-width: var(--ivl-home-max);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

@media (min-width: 900px) {
    .ivl-pub-track-strip__inner {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
        gap: 2rem;
    }
}

.ivl-pub-track-strip__label {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--ivl-fedex-blue-dark);
    margin: 0 0 0.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.2rem;
}

.ivl-pub-track-strip__label::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 2.75rem;
    height: 3px;
    border-radius: 2px;
    background: var(--ivl-fedex-orange);
}

.ivl-pub-track-strip__form {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    align-items: stretch;
    max-width: 36rem;
    border: 1px solid var(--ivl-fedex-slate);
    border-radius: 0.25rem;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.ivl-pub-track-strip__input-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.75rem;
    min-width: 0;
}

.ivl-pub-track-strip__glass {
    font-size: 1.45rem;
    line-height: 1;
    color: var(--ivl-fedex-muted);
    flex-shrink: 0;
}

.ivl-pub-track-strip__form input[type="text"] {
    flex: 1;
    border: 0;
    outline: none;
    font-size: 1rem;
    min-width: 0;
    padding: 0.5rem 0;
    color: var(--ivl-fedex-ink);
}

.ivl-pub-track-strip__submit {
    padding: 0.65rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    background: var(--ivl-fedex-blue);
    border: 0;
    border-left: 1px solid var(--ivl-fedex-ink-strong);
    cursor: pointer;
    transition: filter 0.15s ease, box-shadow 0.15s ease;
}

.ivl-pub-track-strip__submit:hover {
    filter: brightness(1.06);
    box-shadow: inset 0 0 0 1px rgba(255, 102, 0, 0.45);
}

.ivl-pub-track-strip__shortcuts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    flex: 1;
    max-width: 28rem;
}

@media (min-width: 900px) {
    .ivl-pub-track-strip__shortcuts {
        border-left: 1px solid #c5d4e8;
        padding-left: 1.5rem;
        max-width: none;
    }
}

.ivl-pub-track-strip__shortcut {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: var(--ivl-fedex-blue-dark);
    padding: 0.35rem;
    border-radius: 0.25rem;
    transition: background 0.15s ease;
}

.ivl-pub-track-strip__shortcut:hover {
    background: rgba(255, 102, 0, 0.1);
    color: var(--ivl-fedex-orange-deep);
}

.ivl-pub-track-strip__shortcut-ico {
    width: 3.125rem;
    height: 3.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ivl-fedex-blue-dark);
}

.ivl-pub-track-strip__shortcut-ico i[class*="fa-"] {
    font-size: 2rem;
    line-height: 1;
}

.ivl-pub-track-strip__shortcut-txt {
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1.25;
    margin-top: 0.25rem;
}

/* Homepage (and similar): track form + exactly three shortcut tiles */
.ivl-pub-track-strip__shortcuts--three {
    gap: 1rem;
}

.ivl-pub-track-strip__shortcuts--three .ivl-pub-track-strip__shortcut-txt {
    font-size: clamp(0.7rem, 1.6vw, 0.8125rem);
}

@media (min-width: 900px) {
    .ivl-pub-track-strip__shortcuts--three {
        gap: 1.15rem;
        min-width: min(22rem, 38%);
    }
}

/* ── Info banner (thin light blue) ── */
.ivl-pub-infobanner {
    background: #e0f2fe;
    border-bottom: 1px solid #93c5fd;
    padding: 0.65rem var(--ivl-home-gutter);
}

.ivl-pub-infobanner__inner {
    max-width: var(--ivl-home-max);
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.875rem;
    color: var(--ivl-fedex-ink);
    line-height: 1.45;
}

.ivl-pub-infobanner__dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 999px;
    background: var(--ivl-fedex-orange);
    margin-top: 0.35rem;
    flex-shrink: 0;
}

.ivl-pub-infobanner a {
    font-weight: 700;
    color: var(--ivl-fedex-orange-deep);
}

/* ── Z-pattern featured blocks ── */
.ivl-pub-zsection {
    background: #fff;
    padding: 2rem var(--ivl-home-gutter) 2.5rem;
}

.ivl-pub-zsection__page-title {
    text-align: center;
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    font-weight: 800;
    color: var(--ivl-fedex-blue-dark);
    margin: 0 auto 2rem;
    max-width: var(--ivl-home-max);
    padding: 0 0.25rem;
    box-sizing: border-box;
}

.ivl-pub-zsection__list {
    max-width: var(--ivl-home-max);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.ivl-pub-zblock {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 0.25rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(77, 20, 140, 0.05);
}

.ivl-pub-zblock__slant {
    background: var(--ivl-fedex-blue);
    box-shadow: inset 0 -3px 0 0 var(--ivl-fedex-orange);
    padding: 0.65rem 1.25rem;
    clip-path: polygon(0 0, 100% 0, 96% 100%, 0 100%);
    margin: 0;
}

.ivl-pub-zblock__slant-title {
    margin: 0;
    font-size: clamp(1.05rem, 2.5vw, 1.35rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}

.ivl-pub-zblock__body {
    display: grid;
    gap: 0;
    align-items: stretch;
}

@media (min-width: 768px) {
    .ivl-pub-zblock__body {
        grid-template-columns: 1fr 1fr;
    }

    .ivl-pub-zblock--right .ivl-pub-zblock__body {
        direction: ltr;
    }

    .ivl-pub-zblock--left .ivl-pub-zblock__body .ivl-pub-zblock__copy {
        order: 2;
    }

    .ivl-pub-zblock--left .ivl-pub-zblock__body .ivl-pub-zblock__media {
        order: 1;
    }
}

.ivl-pub-zblock__copy {
    padding: 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.ivl-pub-zblock__copy p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--ivl-fedex-ink);
}

.ivl-pub-zblock__btn {
    align-self: flex-start;
    display: inline-flex;
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
    background: var(--ivl-fedex-blue);
    border: 1px solid var(--ivl-fedex-blue-deep);
    border-radius: 0.25rem;
    text-decoration: none;
}

.ivl-pub-zblock__btn:hover {
    filter: brightness(1.06);
    box-shadow: 0 6px 20px var(--ivl-fedex-orange-glow);
    border-color: var(--ivl-fedex-orange);
}

.ivl-pub-zblock__media {
    min-height: 12rem;
    background: #e5e7eb;
}

.ivl-pub-zblock__media img {
    width: 100%;
    height: 100%;
    min-height: 12rem;
    object-fit: cover;
    display: block;
}

.ivl-pub-zblock__media--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 12rem;
    background: var(--ivl-fedex-blue-dark);
}

.ivl-pub-zblock__ph-ico {
    width: 4rem;
    height: 4rem;
    color: rgba(255, 255, 255, 0.85);
}

/* ── Carousel ── */
.ivl-pub-carousel-section {
    background: #fff;
    padding: 2rem var(--ivl-home-gutter) 2.5rem;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.ivl-pub-carousel-section__head {
    max-width: var(--ivl-home-max);
    margin: 0 auto 1.5rem;
    padding: 0 0.25rem;
    text-align: center;
    box-sizing: border-box;
}

.ivl-pub-carousel-section__title {
    margin: 0;
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 800;
    color: var(--ivl-fedex-blue-dark);
}

.ivl-pub-carousel-section__sub {
    margin: 0.5rem 0 1rem;
    color: var(--ivl-fedex-muted);
    font-size: 0.95rem;
}

.ivl-pub-carousel-section__shop {
    display: inline-flex;
    padding: 0.5rem 1.35rem;
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
    background: var(--ivl-fedex-blue);
    border-radius: 0.25rem;
    text-decoration: none;
    border: 1px solid var(--ivl-fedex-blue-deep);
    transition: filter 0.15s ease, box-shadow 0.2s ease;
}

.ivl-pub-carousel-section__shop:hover {
    filter: brightness(1.06);
    box-shadow: 0 6px 20px var(--ivl-fedex-orange-glow);
    border-color: var(--ivl-fedex-orange);
}

.ivl-pub-carousel {
    position: relative;
    max-width: var(--ivl-home-max);
    margin: 0 auto;
    padding: 0 clamp(2.5rem, 6vw, 3rem);
    box-sizing: border-box;
}

.ivl-pub-carousel__viewport {
    overflow: hidden;
    border-radius: 0.25rem;
    border: 1px solid #e5e7eb;
}

.ivl-pub-carousel__track {
    display: flex;
    transition: transform 0.35s ease;
}

.ivl-pub-carousel__slide {
    flex: 0 0 100%;
    position: relative;
    aspect-ratio: 16 / 10;
    background: #f1f5f9;
}

.ivl-pub-carousel__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ivl-pub-carousel__slide--gradient {
    width: 100%;
    height: 100%;
    min-height: 12rem;
    background: var(--ivl-fedex-blue-dark);
}

.ivl-pub-carousel__cap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.5rem 0.75rem;
    background: rgba(77, 20, 140, 0.88);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
}

.ivl-pub-carousel__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid #cbd5e1;
    border-radius: 0.25rem;
    background: #fff;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.ivl-pub-carousel__arrow--prev {
    left: 0;
}

.ivl-pub-carousel__arrow--next {
    right: 0;
}

.ivl-pub-carousel__arrow--prev::after,
.ivl-pub-carousel__arrow--next::after {
    content: "";
    display: block;
    width: 0.5rem;
    height: 0.5rem;
    margin: 0 auto;
    border: 2px solid var(--ivl-fedex-blue-dark);
    border-width: 0 0 2px 2px;
}

.ivl-pub-carousel__arrow--prev::after {
    transform: rotate(45deg);
    margin-left: 0.35rem;
}

.ivl-pub-carousel__arrow--next::after {
    transform: rotate(-135deg);
    margin-right: 0.35rem;
}

.ivl-pub-carousel__dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.ivl-pub-carousel__dot {
    width: 0.5rem;
    height: 0.5rem;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #cbd5e1;
    cursor: pointer;
}

.ivl-pub-carousel__dot.is-active {
    background: var(--ivl-fedex-blue);
}

/* ── Mini promo banner ── */
.ivl-pub-minibanner {
    background: #f1f5f9;
    border-bottom: 1px solid #cbd5e1;
    padding: 1.15rem var(--ivl-home-gutter);
}

.ivl-pub-minibanner__inner {
    max-width: var(--ivl-home-max);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 1.25rem;
}

.ivl-pub-minibanner__logo-wrap {
    flex: 0 1 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-width: 0;
    max-width: min(10rem, 36vw);
}

/* Promo strip: modest mark so copy + CTA stay primary */
.ivl-pub-minibanner .ivl-pub-logo-crop--minibanner {
    max-width: 100%;
}

.ivl-pub-minibanner__mark {
    display: block;
    height: 1.75rem;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: left center;
    transform: none;
    transform-origin: left center;
}

.ivl-pub-minibanner__text {
    margin: 0;
    flex: 1 1 100%;
    min-width: min(100%, 14rem);
    font-size: 0.9rem;
    color: var(--ivl-fedex-ink);
    line-height: 1.45;
    text-align: center;
}

.ivl-pub-minibanner__btn {
    display: inline-flex;
    padding: 0.45rem 1.1rem;
    font-weight: 700;
    font-size: 0.875rem;
    color: #fff;
    background: var(--ivl-fedex-blue);
    border-radius: 0.25rem;
    text-decoration: none;
    border: 1px solid var(--ivl-fedex-blue-deep);
}

@media (min-width: 768px) {
    .ivl-pub-minibanner__inner {
        flex-wrap: nowrap;
    }

    .ivl-pub-minibanner__logo-wrap {
        max-width: min(11rem, 28%);
    }

    .ivl-pub-minibanner__text {
        flex: 1 1 0;
        min-width: 0;
        text-align: left;
    }

    .ivl-pub-minibanner__btn {
        flex: 0 0 auto;
    }
}

/* ── Updates 3-column ── */
.ivl-pub-updates {
    background: #fff;
    padding: 2rem var(--ivl-home-gutter) 2.5rem;
}

.ivl-pub-updates > .ivl-pub-updates__title {
    text-align: center;
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    font-weight: 800;
    color: var(--ivl-fedex-blue-dark);
    margin: 0 auto 1.5rem;
    max-width: var(--ivl-home-max);
    padding: 0 0.25rem;
    box-sizing: border-box;
}

.ivl-pub-updates__grid {
    max-width: var(--ivl-home-max);
    margin: 0 auto;
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .ivl-pub-updates__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.ivl-pub-updates__card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 1rem 1rem 1.1rem;
    border: 1px solid #d4d4d4;
    border-top: 4px solid var(--ivl-fedex-orange);
    border-radius: 0;
    background: #f7f7f7;
    box-shadow: none;
}

.ivl-pub-updates__card .ivl-pub-updates__title {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    font-weight: 800;
    color: var(--ivl-fedex-blue-dark);
    line-height: 1.25;
}

.ivl-pub-updates__card p {
    margin: 0 0 0.75rem;
    font-size: 0.875rem;
    color: var(--ivl-fedex-muted);
    line-height: 1.5;
    flex: 1 1 auto;
}

.ivl-pub-updates__card a {
    margin-top: auto;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--ivl-fedex-orange-deep);
    text-decoration: none;
}

.ivl-pub-updates__card a::after {
    content: "→";
    margin-left: 0.2rem;
}

.ivl-pub-updates__card a:hover {
    text-decoration: underline;
}

/* ── Footer light (marketing site-style) ── */
.ivl-pub-footer--light {
    background: rgba(255, 255, 255, 0.55);
    border-top: 3px solid var(--ivl-fedex-orange);
    color: var(--ivl-fedex-ink);
    box-shadow: inset 0 4px 0 -1px rgba(77, 20, 140, 0.12);
}

.ivl-pub-footer--light .ivl-pub-footer__grid {
    padding-top: 0.5rem;
}

.ivl-pub-footer--light .ivl-pub-footer__logotype {
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--ivl-fedex-blue-dark);
}

.ivl-pub-footer--light .ivl-pub-footer__logoimg {
    border: 0;
    background: transparent;
}

.ivl-pub-footer--light .ivl-pub-footer__logo-svg {
    color: var(--ivl-fedex-blue-dark);
}

.ivl-pub-footer--light .ivl-pub-footer__email a {
    color: var(--ivl-fedex-orange);
}

.ivl-pub-footer--light .ivl-pub-footer__email a:hover {
    color: var(--ivl-fedex-orange-deep);
}

.ivl-pub-footer--light .ivl-pub-footer__hq {
    color: var(--ivl-fedex-muted);
}

.ivl-pub-footer--light .ivl-pub-footer__about {
    color: var(--ivl-fedex-muted);
}

.ivl-pub-footer--light .ivl-pub-footer__about strong {
    color: var(--ivl-fedex-ink);
    font-weight: 700;
}

.ivl-pub-footer--light h4 {
    color: var(--ivl-fedex-blue-dark);
}

.ivl-pub-footer--light a {
    color: var(--ivl-fedex-orange-deep);
}

.ivl-pub-footer--light a:hover {
    color: var(--ivl-fedex-blue);
}

.ivl-pub-footer__bottom {
    max-width: var(--ivl-home-max);
    margin: 0 auto;
    padding: 1.25rem var(--ivl-home-gutter) 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid #cbd5e1;
}

.ivl-pub-footer__copy {
    margin: 0;
    font-size: 0.75rem;
    color: var(--ivl-fedex-muted);
}

.ivl-pub-footer__social {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.ivl-pub-footer__soc {
    color: var(--ivl-fedex-blue-dark);
    display: flex;
    padding: 0.35rem;
    border-radius: 0.25rem;
}

.ivl-pub-footer__soc:hover {
    background: rgba(255, 102, 0, 0.1);
}

.ivl-pub-footer__soc-ico {
    font-size: 1.3125rem;
    line-height: 1;
}

/* Skip link */
.ivl-pub-skip {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.ivl-pub-skip:focus {
    position: fixed;
    left: 1rem;
    top: 1rem;
    z-index: 100;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0.65rem 1.25rem;
    clip: auto;
    overflow: visible;
    white-space: normal;
    background: var(--ivl-fedex-orange-deep);
    color: #fff;
    font-weight: 700;
    font-size: 0.9375rem;
    border-radius: 0.25rem;
    box-shadow: 0 8px 24px rgba(255, 102, 0, 0.35);
    text-decoration: none;
}

/* Reveal */
body.ivl-pub-home .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

body.ivl-pub-home .reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Inner marketing pages (same shell as index) ── */
.ivl-pub-subpage-hero {
    position: relative;
    padding: 3.25rem 1.25rem 3.5rem;
    background: var(--ivl-fedex-blue);
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

@media (min-width: 768px) {
    .ivl-pub-subpage-hero {
        padding: 4rem 1.5rem 4.5rem;
    }
}

.ivl-pub-subpage-hero__inner {
    max-width: var(--ivl-home-max, 72rem);
    margin: 0 auto;
    padding: 0 var(--ivl-home-gutter, 1.25rem);
}

.ivl-pub-subpage-hero h1 {
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0;
    color: #fff;
}

.ivl-pub-subpage-hero p {
    margin: 1rem 0 0;
    max-width: 42rem;
    font-size: 1.05rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
}

/* Fine-print under hero lede (e.g. tracking) — inset so long lines don’t hug the viewport */
.ivl-pub-subpage-hero p.ivl-pub-subpage-hero__fine {
    margin-top: 1rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
    max-width: min(40rem, 100%);
    padding-left: clamp(0.25rem, 2vw, 0.75rem);
    padding-right: clamp(0.25rem, 2vw, 0.75rem);
    box-sizing: border-box;
    font-size: 0.6875rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.72);
    overflow-wrap: anywhere;
    word-break: break-word;
}

.ivl-pub-subpage-hero--image {
    background: var(--ivl-fedex-ink);
    padding: 0;
    min-height: 14rem;
}

.ivl-pub-subpage-hero--image .ivl-pub-subpage-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.ivl-pub-subpage-hero--image .ivl-pub-subpage-hero__scrim {
    position: absolute;
    inset: 0;
    background: rgba(45, 12, 82, 0.82);
}

.ivl-pub-subpage-hero--image .ivl-pub-subpage-hero__inner {
    position: relative;
    z-index: 2;
    padding: 3.25rem 1.25rem 3.5rem;
}

.ivl-pub-subpage-hero--image {
    position: relative;
    overflow: hidden;
}

.ivl-pub-subpage {
    padding: 2.5rem 1.25rem 3.5rem;
    background: #f7f9fc;
}

.ivl-pub-subpage__inner {
    max-width: var(--ivl-home-max, 72rem);
    margin: 0 auto;
}

.ivl-pub-panel {
    background: #fff;
    border: 1px solid #c5d4e8;
    border-radius: 4px;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 8px 24px rgba(77, 20, 140, 0.06);
}

.ivl-pub-panel--pad {
    padding: 2rem 1.5rem;
}

@media (min-width: 768px) {
    .ivl-pub-panel--pad {
        padding: 2.5rem 2.5rem;
    }
}

.ivl-pub-prose {
    color: var(--ivl-fedex-ink);
    font-size: 1rem;
    line-height: 1.65;
}

.ivl-pub-prose h2 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--ivl-fedex-ink);
    margin: 0 0 0.75rem;
}

.ivl-pub-prose p {
    margin: 0 0 1rem;
}

.ivl-pub-prose a {
    color: var(--ivl-fedex-orange-deep);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(255, 102, 0, 0.45);
    text-underline-offset: 3px;
    transition: color 0.15s ease, text-decoration-color 0.15s ease;
}

.ivl-pub-prose a:hover {
    color: var(--ivl-fedex-blue);
    text-decoration-color: var(--ivl-fedex-orange);
}

.ivl-pub-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1.35rem;
    font-size: 0.9375rem;
    font-weight: 700;
    border-radius: 4px;
    text-decoration: none;
    transition:
        background 0.15s ease,
        color 0.15s ease,
        box-shadow 0.2s ease,
        filter 0.15s ease,
        border-color 0.15s ease;
}

.ivl-pub-btn--primary {
    color: #fff;
    background: var(--ivl-fedex-blue);
    border: 1px solid var(--ivl-fedex-blue-dark);
}

.ivl-pub-btn--primary:hover {
    filter: brightness(1.06);
    color: #fff;
    box-shadow:
        0 0 0 1px rgba(255, 102, 0, 0.55) inset,
        0 8px 22px var(--ivl-fedex-orange-glow);
}

.ivl-pub-btn--ghost {
    color: var(--ivl-fedex-blue-dark);
    background: #fff;
    border: 1px solid #c5d4e8;
}

.ivl-pub-btn--ghost:hover {
    background: var(--ivl-fedex-orange-wash);
    border-color: rgba(255, 102, 0, 0.42);
    color: var(--ivl-fedex-orange-deep);
}

.ivl-pub-form-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--ivl-fedex-muted);
    margin-bottom: 0.35rem;
}

.ivl-pub-form-input {
    width: 100%;
    padding: 0.65rem 0.85rem;
    font-size: 1rem;
    color: var(--ivl-fedex-ink);
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.ivl-pub-form-input:focus {
    border-color: var(--ivl-fedex-blue);
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.22);
    background: #fff;
}

.ivl-pub-form-actions .ivl-pub-btn--primary {
    width: 100%;
    padding: 0.85rem 1.25rem;
}

.ivl-pub-office-list {
    color: var(--ivl-fedex-ink);
}

.ivl-pub-office-list h4 {
    font-weight: 700;
    color: var(--ivl-fedex-ink);
    margin: 0 0 0.15rem;
}

.ivl-pub-office-list p {
    margin: 0;
    color: var(--ivl-fedex-muted);
    font-size: 0.9375rem;
    line-height: 1.5;
}

.ivl-pub-office-list .ivl-pub-office-list__ico {
    width: 3.125rem;
    height: 3.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background: #f0ebf7;
    border-radius: 0.35rem;
    margin-right: 1rem;
    flex-shrink: 0;
    box-shadow: 0 0 0 1px rgba(255, 102, 0, 0.14);
}

.ivl-pub-office-list .ivl-pub-office-list__ico .ivl-pub-ico,
.ivl-pub-office-list .ivl-pub-office-list__ico svg {
    width: 1.45rem;
    height: 1.45rem;
    color: var(--ivl-fedex-blue-dark);
    stroke: var(--ivl-fedex-blue-dark);
}

.ivl-pub-office-list .ivl-pub-office-list__ico i[class*="fa-"] {
    font-size: 1.35rem;
    line-height: 1;
    width: auto !important;
    height: auto !important;
    color: var(--ivl-fedex-orange-deep);
}

.ivl-pub-contact-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

@media (min-width: 1024px) {
    .ivl-pub-contact-split {
        grid-template-columns: 1fr 1fr;
    }

    .ivl-pub-contact-split > *:first-child {
        border-right: 1px solid #e2e8f0;
        border-bottom: 0;
    }
}

@media (max-width: 1023px) {
    .ivl-pub-contact-split > *:first-child {
        border-bottom: 1px solid #e2e8f0;
    }
}

.ivl-pub-vault-cta {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.ivl-pub-vault-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1rem;
    font-weight: 700;
    color: #fff;
    background: var(--ivl-fedex-blue);
    border: 1px solid var(--ivl-fedex-blue-dark);
    border-radius: 4px;
    text-decoration: none;
}

.ivl-pub-vault-cta a:hover {
    filter: brightness(1.05);
}

.ivl-pub-vault-cta a i[class*="fa-"] {
    font-size: 1.25rem;
    line-height: 1;
}

.ivl-pub-map-frame {
    height: min(52vh, 28rem);
    border: 0;
    width: 100%;
    display: block;
}

/* ── Mobile-first homepage rhythm (USPS-style reference) ── */
@media (max-width: 767px) {
    .ivl-pub-hero-split {
        min-height: clamp(26rem, 82vh, 38rem);
        margin-top: -1px;
        border-bottom: 0;
        background: var(--ivl-fedex-blue);
    }

    .ivl-pub-hero-split__bg {
        display: block;
    }

    .ivl-pub-hero-split__bg img {
        min-height: 100%;
        object-position: center 28%;
        transform: scale(1.06) translateY(1.5%);
        transform-origin: center center;
    }

    .ivl-pub-hero-split__overlay {
        position: absolute;
        inset: 0;
        flex-direction: column;
        justify-content: flex-end;
        align-items: stretch;
        padding: 0;
        box-sizing: border-box;
    }

    .ivl-pub-hero-split__card {
        width: 100%;
        max-width: none;
        margin-top: -0.625rem;
        border-radius: 0.5rem 0.5rem 0 0;
        padding: 1.65rem clamp(1rem, 4.8vw, 1.5rem) max(1.1rem, env(safe-area-inset-bottom, 0px));
        text-align: center;
        background: rgba(77, 20, 140, 0.94);
        box-shadow:
            0 -8px 36px rgba(0, 0, 0, 0.18),
            0 0 0 1px rgba(255, 255, 255, 0.06) inset;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    .ivl-pub-hero-split h1 {
        font-size: clamp(1.42rem, 4.6vw, 1.62rem);
        line-height: 1.14;
        margin-bottom: 0.65rem;
        text-wrap: balance;
    }

    .ivl-pub-hero-split__lede {
        font-size: 0.92rem;
        line-height: 1.5;
        margin-bottom: 1rem;
        margin-left: auto;
        margin-right: auto;
        max-width: min(26.5rem, 100%);
    }

    .ivl-pub-hero-split__cta-ghost {
        align-self: center;
        min-width: 11rem;
        padding: 0.55rem 1.4rem;
    }

    .ivl-pub-hero-split__fine {
        margin-top: 0.85rem;
        font-size: 0.6875rem;
        line-height: 1.45;
        margin-left: auto;
        margin-right: auto;
        max-width: min(26.5rem, calc(100% - 1.25rem));
        padding-right: 0.5rem;
        padding-left: 0.5rem;
        box-sizing: border-box;
    }

    .ivl-pub-track-strip {
        background: #fff;
        border-top: 1px solid #dbe3ed;
        border-bottom: 1px solid #dbe3ed;
        padding-top: 1rem;
        padding-bottom: 1.1rem;
    }

    .ivl-pub-track-strip__inner {
        width: 100%;
        gap: 1.05rem;
    }

    .ivl-pub-track-strip__form-wrap {
        width: 100%;
    }

    .ivl-pub-track-strip__form {
        max-width: 100%;
        border-radius: 0.375rem;
    }

    .ivl-pub-track-strip__label {
        font-size: 1.0625rem;
        text-align: center;
        display: block;
        width: 100%;
        margin-bottom: 0.55rem;
    }

    .ivl-pub-track-strip__label::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .ivl-pub-track-strip__shortcuts:not(.ivl-pub-track-strip__shortcuts--three) {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 0;
        border-top: 1px solid #e2e8f0;
        border-bottom: 1px solid #e2e8f0;
        border-radius: 0.375rem;
        overflow: hidden;
    }

    .ivl-pub-track-strip__shortcuts:not(.ivl-pub-track-strip__shortcuts--three) .ivl-pub-track-strip__shortcut {
        padding: 0.55rem 0.2rem 0.45rem;
        border-right: 1px solid #e2e8f0;
        border-radius: 0;
    }

    .ivl-pub-track-strip__shortcuts:not(.ivl-pub-track-strip__shortcuts--three) .ivl-pub-track-strip__shortcut:last-child {
        border-right: 0;
    }

    .ivl-pub-track-strip__shortcuts--three {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0;
        border: 1px solid #e2e8f0;
        border-radius: 0.375rem;
        overflow: hidden;
        background: #fafbfc;
    }

    .ivl-pub-track-strip__shortcuts--three .ivl-pub-track-strip__shortcut {
        padding: 0.7rem 0.4rem 0.65rem;
        border-right: 1px solid #e8ecf1;
        border-radius: 0;
        min-height: 5.5rem;
        justify-content: flex-start;
        box-sizing: border-box;
    }

    .ivl-pub-track-strip__shortcuts--three .ivl-pub-track-strip__shortcut:last-child {
        border-right: 0;
    }

    .ivl-pub-track-strip__shortcut-ico {
        width: 2.65rem;
        height: 2.65rem;
    }

    .ivl-pub-track-strip__shortcut-ico i[class*="fa-"] {
        font-size: 1.5rem;
    }

    .ivl-pub-track-strip__shortcuts:not(.ivl-pub-track-strip__shortcuts--three) .ivl-pub-track-strip__shortcut-txt {
        font-size: 0.62rem;
        margin-top: 0.18rem;
    }

    body.ivl-pub-home .ivl-pub-track-strip__shortcuts--three .ivl-pub-track-strip__shortcut-txt {
        font-size: clamp(0.7rem, 2.8vw, 0.8rem);
        margin-top: 0.35rem;
        line-height: 1.25;
        padding: 0 0.15rem;
        hyphens: auto;
        overflow-wrap: break-word;
    }

    body.ivl-pub-home .ivl-pub-carousel {
        padding-left: clamp(0.65rem, 3vw, 1.25rem);
        padding-right: clamp(0.65rem, 3vw, 1.25rem);
    }

    .ivl-pub-carousel-section {
        padding-top: 1.65rem;
        padding-bottom: 2rem;
    }

    .ivl-pub-zsection {
        padding-top: 1.35rem;
    }

    .ivl-pub-zsection__page-title {
        font-size: clamp(1.2rem, 4.2vw, 1.35rem);
        margin-bottom: 1.2rem;
        text-align: center;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .ivl-pub-zsection__list {
        gap: 1.1rem;
    }

    .ivl-pub-zblock {
        border-color: #dbe3ed;
        box-shadow: 0 2px 14px rgba(77, 20, 140, 0.07);
        border-radius: 0.375rem;
    }

    .ivl-pub-zblock__slant {
        clip-path: none;
        padding: 0.65rem 1rem;
    }

    .ivl-pub-zblock__slant-title {
        font-size: clamp(1rem, 3.5vw, 1.08rem);
    }

    .ivl-pub-zblock__copy {
        padding: 1.1rem 1rem 1.15rem;
        align-items: center;
        text-align: center;
    }

    .ivl-pub-zblock__copy p {
        font-size: 0.9rem;
        max-width: 26rem;
        margin-left: auto;
        margin-right: auto;
    }

    .ivl-pub-zblock__btn {
        align-self: center;
        min-width: 10rem;
        justify-content: center;
    }

    .ivl-pub-stats {
        padding-top: 1.75rem;
        padding-bottom: 1.85rem;
    }

    .ivl-pub-stats__grid {
        gap: 1.35rem 1rem;
    }

    .ivl-pub-stats .count {
        font-size: clamp(1.65rem, 5vw, 2.1rem);
    }

    .ivl-pub-stats__label {
        font-size: 0.78rem;
        line-height: 1.35;
        padding: 0 0.35rem;
    }

    .ivl-pub-minibanner__inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.85rem 1rem;
    }

    .ivl-pub-minibanner__logo-wrap {
        max-width: 9.5rem;
        margin-inline: auto;
        justify-content: center;
    }

    .ivl-pub-minibanner__text {
        text-align: center;
        flex-basis: auto;
    }

    .ivl-pub-minibanner__btn {
        align-self: center;
        width: auto;
        min-width: 11rem;
        justify-content: center;
    }

    .ivl-pub-alertstrip__inner {
        align-items: center;
        gap: 0.85rem;
    }

    .ivl-pub-alertstrip__inner > div {
        text-align: left;
        min-width: 0;
    }
}
