/**************************************************************************************************************/
/**************************************************************************************************************/
/**************************************************************************************************************/
/* FONTS */
/**************************************************************************************************************/
/**************************************************************************************************************/
/**************************************************************************************************************/

@font-face {
    font-family: "IBM Plex Serif";
    src:
        url("../fonts/ibm-plex-serif/IBMPlexSerif-MediumItalic.woff2") format("woff2"),
        url("../fonts/ibm-plex-serif/IBMPlexSerif-MediumItalic.woff") format("woff");
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "IBM Plex Serif";
    src:
        url("../fonts/ibm-plex-serif/IBMPlexSerif-SemiBoldItalic.woff2") format("woff2"),
        url("../fonts/ibm-plex-serif/IBMPlexSerif-SemiBoldItalic.woff") format("woff");
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "IBM Plex Serif";
    src:
        url("../fonts/ibm-plex-serif/IBMPlexSerif-BoldItalic.woff2") format("woff2"),
        url("../fonts/ibm-plex-serif/IBMPlexSerif-BoldItalic.woff") format("woff");
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Barlow";
    src:
        url("../fonts/barlow/Barlow-Regular.woff2") format("woff2"),
        url("../fonts/barlow/Barlow-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Barlow";
    src:
        url("../fonts/barlow/Barlow-SemiBold.woff2") format("woff2"),
        url("../fonts/barlow/Barlow-SemiBold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Barlow";
    src:
        url("../fonts/barlow/Barlow-Bold.woff2") format("woff2"),
        url("../fonts/barlow/Barlow-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/**************************************************************************************************************/
/**************************************************************************************************************/
/**************************************************************************************************************/
/* VARIABLES */
/**************************************************************************************************************/
/**************************************************************************************************************/
/**************************************************************************************************************/

:root {
    /* Fonts */
    --font-serif: "IBM Plex Serif", serif;
    --font-sans: "Barlow", sans-serif;

    /* Blues */
    --color-deepest-blue: #21244E;
    --color-royal-blue: #27397C;
    --color-compliance-blue: #2F6FB7;
    --color-caribbean-blue: #07B4E5;
    --color-mist-blue: #EDF3FB;

    /* Neutrals */
    --color-titanium-gray: #4C4C4C;
    --color-financial-gray: #7B7B7B;
    --color-calm-gray: #B5B5B5;
    --color-arctic-chrome: #E2E2E2;
    --color-arctic-white: #f4f4f4;
    --color-pure-white: #FFFFFF;
    --color-rich-black: #000000;

    /* Accent */
    --color-avant-red: #EE2D35;

    /* Grid: 12 columns of 80px, 30px gap, 15px side padding = 1320px boxed */
    --grid-columns: 12;
    --grid-column-width: 80px;
    --grid-gap: 30px;
    --grid-side-padding: 15px;
    --grid-max-width: 1320px;

    /* Header: --header-mainbar-height is the white nav bar's own fixed height,
       --header-topbar-height the dark contact/social bar shown above it from
       1000px up. --header-height is the *total* fixed header stack height —
       everything reading it for offset purposes
       (main's padding-top, scroll-margin-top above, main.js's scroll-target
       calc) needs the topbar's height added in on the breakpoint where it's
       actually visible, hence the media query override below instead of a
       single static value. */
    --header-mainbar-height: 80px;
    --header-topbar-height: 36px;
    --header-height: var(--header-mainbar-height);
}

@media only screen and (min-width: 1000px) {
    :root {
        --header-height: calc(var(--header-topbar-height) + var(--header-mainbar-height));
    }
}

/**************************************************************************************************************/
/**************************************************************************************************************/
/**************************************************************************************************************/
/* GLOBAL STYLES */
/**************************************************************************************************************/
/**************************************************************************************************************/
/**************************************************************************************************************/

/*******************************************************/
/* BACKGROUNDS */
/*******************************************************/
.bg-deepest-blue {
    background-color: var(--color-deepest-blue);
}

.bg-royal-blue {
    background-color: var(--color-royal-blue);
}

.bg-compliance-blue {
    background-color: var(--color-compliance-blue);
}

.bg-caribbean-blue {
    background-color: var(--color-caribbean-blue);
}

.bg-mist-blue {
    background-color: var(--color-mist-blue);
}

.bg-gradient-blue {
    background: linear-gradient(135deg, var(--color-deepest-blue), var(--color-compliance-blue));
}

/* Neutrals Backgrounds */
.bg-titanium-gray {
    background-color: var(--color-titanium-gray);
}

.bg-financial-gray {
    background-color: var(--color-financial-gray);
}

.bg-calm-gray {
    background-color: var(--color-calm-gray);
}

.bg-arctic-chrome {
    background-color: var(--color-arctic-chrome);
}

.bg-arctic-white {
    background-color: var(--color-arctic-white);
}

.bg-pure-white {
    background-color: var(--color-pure-white);
}

.bg-rich-black {
    background-color: var(--color-rich-black);
}

/* Accent Background */
.bg-avant-red {
    background-color: var(--color-avant-red);
}

/*******************************************************/
/* COLORS */
/*******************************************************/
/* Blues Colors */
.color-deepest-blue {
    color: var(--color-deepest-blue);
}

.color-royal-blue {
    color: var(--color-royal-blue);
}

.color-compliance-blue {
    color: var(--color-compliance-blue);
}

.color-caribbean-blue {
    color: var(--color-caribbean-blue);
}

.color-mist-blue {
    color: var(--color-mist-blue);
}

/* Neutrals Colors */
.color-titanium-gray {
    color: var(--color-titanium-gray);
}

.color-financial-gray {
    color: var(--color-financial-gray);
}

.color-calm-gray {
    color: var(--color-calm-gray);
}

.color-arctic-chrome {
    color: var(--color-arctic-chrome);
}

.color-arctic-white {
    color: var(--color-arctic-white);
}

.color-pure-white {
    color: var(--color-pure-white);
}

.color-rich-black {
    color: var(--color-rich-black);
}

/* Accent Color */
.color-avant-red {
    color: var(--color-avant-red);
}

/*******************************************************/
/* TYPOGRAPHY */
/*******************************************************/
body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-titanium-gray);
}

h1, h2, h3, h4, h5, h6, .font-serif {
    font-family: var(--font-serif);
    text-box: trim-both cap alphabetic;
}

/* text-box-trim (the part that actually cuts leading/trailing space) isn't
   an inherited property — .text-box-trim is the opt-in utility for non-
   heading serif elements that need the same fix (e.g. .stat__number,
   .pricing-card__price) without picking up .font-serif's own font-family
   override, which those elements already set for themselves. */
.text-box-trim {
    text-box: trim-both cap alphabetic;
}

sup, sub {
    font-size: 0.6333em;
    text-transform: none;
}

.title-level-1 {
    font-size: 18px;
    line-height: 1.2;
    font-style: italic;
    font-weight: 600;
}

@media only screen and (min-width: 600px) {
    .title-level-1 {
        font-size: 24px;
    }
}

@media only screen and (min-width: 1000px) {
    .title-level-1 {
        font-size: 32px;
    }
}

@media only screen and (min-width: 1200px) {
    .title-level-1 {
        font-size: 40px;
    }
}

/*******************************************************/
/* LAYOUT STRUCTURE */
/*******************************************************/

.boxed {
    width: 100%;
    max-width: var(--grid-max-width);
    margin-inline: auto;
    padding-inline: var(--grid-side-padding);
}

/* scroll-margin-top compensates for the fixed header's position:fixed height so
   an anchor-jumped/scrolled-to section (footer nav, #tab-* hash navigation
   in main.js) doesn't land with its top edge hidden under the header —
   .main's own padding-top only affects initial layout, not where a scroll
   target's top edge lands. */
section, main, footer, header {
    width: 100%;
    overflow: hidden;
    scroll-margin-top: var(--header-height);
}

/* Same header-offset compensation as above, but scoped to .disclaimer alone
   (not the full section/main/footer/header property list) — these blocks
   (#refund-policy, #cpes) are anchor targets nested inside a section, not
   sections themselves, and don't need width/overflow reset. */
.disclaimer {
    scroll-margin-top: var(--header-height);
}

main {
    padding-top: var(--header-height);
}

.default-padding-block {
    padding-block: 45px;
}

@media only screen and (min-width: 600px) {
    .default-padding-block {
        padding-block: 60px;
    }
}

@media only screen and (min-width: 1000px) {
    .default-padding-block {
        padding-block: 80px;
    }
}

@media only screen and (min-width: 1200px) {
    .default-padding-block {
        padding-block: 100px;
    }
}

/* Same technique WordPress core uses (.screen-reader-text): visually hidden,
   still readable by screen readers. */
.screen-reader-text {
    position: absolute !important;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    border: 0;
    word-wrap: normal !important;
}

/* Row/column layout primitives — not a full utility-class grid system (no
   col-1..col-12), just the shapes rows keep needing: a full-width flex row
   (.w-1-1), a half-width flex column inside it (.w-1-2), a third-width flex
   column (.w-1-3). */
.w-1-1 {
    display: flex;
    width: 100%;
}

.w-1-2 {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 50%;
}

.w-1-3 {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 33.3333%;
}

.w-1-5 {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 20%;
}

.gap15 {
    gap: 15px;
}

.gap30 {
    gap: 30px;
}

.gap45 {
    gap: 45px;
}

.gap60 {
    gap: 60px;
}

.eyebrow p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 12px !important;
    letter-spacing: .25em;
    color: var(--color-compliance-blue);
    text-transform: uppercase;
}

.eyebrow p::before {
    content: " ";
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: var(--color-avant-red);
}

/* Generic "text column" component: a serif-italic heading (h2 = this
   section's own title, h3 = a subordinate title, h4 = smaller variant
   still), a lead paragraph, and a checkmark list — all bare element
   selectors scoped under .the-content. .tab-content is the same pattern
   shifted one heading level down for Conference Details' tab panels. */
.tab-content {
    display: flex;
    flex-direction: column;
}

.the-content h2,
.the-content h3,
.tab-content h3,
.tab-content h4 {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-deepest-blue);
}

.tab-content h3,
.tab-content h4 {
    color: var(--color-compliance-blue);
}

.the-content h2,
.tab-content h3 {
    font-size: 24px;
}

.the-content h4 {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 600;
    font-size: 24px;
    color: var(--color-compliance-blue);
}

.the-content p,
.tab-content p {
    margin-top: 30px;
    font-size: 16px;
    line-height: 1.5;
}

.the-content ul,
.tab-content ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
    font-size: 16px;
}

.the-content li,
.tab-content li {
    position: relative;
    display: flex;
    align-items: flex-start;
    flex-wrap: nowrap;
    padding-left: 24px;
    font-weight: 400;
    line-height: 1;
}

.the-content li::before,
.tab-content li::before {
    content: " ";
    position: absolute;
    top: 3px;
    left: 3px;
    display: block;
    width: 12px;
    height: 7px;
    border-left: 2px solid var(--color-avant-red);
    border-bottom: 2px solid var(--color-avant-red);
    transform: rotate(-45deg);
}

.the-content li strong,
.tab-content li strong {
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 4px;
    font-weight: 700;
    color: var(--color-deepest-blue);
}

.strong-break-line li {
    flex-wrap: wrap;
}

.strong-break-line li strong {
    display: block;
    width: 100%;
}

/* The reusable "dark card" variant: gradient background (already declared
   as a plain bg utility above) + padding/color + white/cyan text.
   .bg-gradient-blue__decoration is a separate, optional class for the
   offset-rectangle-behind-the-card + corner-badge flourish. */
.bg-gradient-blue {
    position: relative;
    padding: 30px;
    color: var(--color-pure-white);
}

.bg-gradient-blue__decoration {
    width: calc(100% - 15px);
    margin-bottom: 40px;
}

.bg-gradient-blue__decoration::before {
    content: " ";
    position: absolute;
    top: 15px;
    right: -15px;
    z-index: -1;
    display: block;
    width: calc(50% + 20px);
    height: calc(100% + 25px);
    background-color: var(--color-arctic-chrome);
}

.bg-gradient-blue__decoration::after {
    content: " ";
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 1;
    display: block;
    width: 40px;
    height: 40px;
    background-color: var(--color-avant-red);
    transform: translate(-50%, -50%);
}

.bg-gradient-blue h3,
.bg-gradient-blue h4 {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 600;
    font-size: 24px;
    color: var(--color-pure-white);
}

.bg-gradient-blue li strong {
    color: var(--color-caribbean-blue);
}

.bg-gradient-blue li::before {
    border-left: 2px solid var(--color-caribbean-blue);
    border-bottom: 2px solid var(--color-caribbean-blue);
}

.disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    max-width: 740px;
    margin: 50px auto 0;
    padding-top: 15px;
    border-top: 1px solid var(--color-titanium-gray);
}

.disclaimer__img {
    flex-shrink: 0;
    width: 60px;
}

.disclaimer__img img {
    display: block;
    width: 100%;
    height: auto;
}

.disclaimer__text {
    font-size: 11px;
    line-height: 1.2;
    text-align: justify;
}

.disclaimer__text p {
    margin-bottom: 1em;
}

.disclaimer__text p:last-of-type {
    margin-bottom: 0;
}

/* Generic "big number + label" stat component — used by Trust Bar and by
   Become a Sponsor/Sponsorship Hero (.split-panel__stats). Only the number/
   label typography lives here; each section keeps its own outer layout and
   overrides colors/sizes locally. */
.stat {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 5px;
    padding: 15px;
}

.stat__number {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
    font-size: 48px;
    line-height: 1;
    color: var(--color-rich-black);
}

.stat__labels {
    display: flex;
    flex-direction: column;
    align-items: baseline;
}

.stat__number-suffix {
    position: absolute;
    top: 5px;
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
    text-box: unset;
}

.stat__text {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 10px;
    line-height: 1;
    letter-spacing: .05em;
    color: var(--color-financial-gray);
    text-transform: uppercase;
}

@media only screen and (min-width: 1200px) {
    .the-content h2 {
        font-size: 40px;
    }

    .the-content p {
        font-size: 20px;
    }

    .the-content ul,
    .tab-content ul {
        gap: 30px;
        font-size: 20px;
    }

    .the-content li::before,
    .tab-content li::before {
        top: 5px;
        width: 16px;
        height: 8px;
        border-left: 3px solid var(--color-avant-red);
        border-bottom: 3px solid var(--color-avant-red);
    }

    .bg-gradient-blue {
        padding: 50px 40px;
    }

    .bg-gradient-blue__decoration {
        width: calc(100% - 40px);
        margin: 0 auto 60px;
    }

    .bg-gradient-blue__decoration::before {
        top: 20px;
        right: -20px;
        height: calc(100% + 40px);
    }

    .bg-gradient-blue__decoration::after {
        width: 50px;
        height: 50px;
    }

    .bg-gradient-blue li::before {
        border-left: 3px solid var(--color-caribbean-blue);
        border-bottom: 3px solid var(--color-caribbean-blue);
    }

    .disclaimer {
        gap: 15px;
    }

    .disclaimer__img {
        width: 100px;
    }

    .disclaimer__text {
        font-size: 12px;
    }

    .stat {
        gap: 10px;
    }
}

/*******************************************************/
/* LAYOUT GENERAL */
/*******************************************************/
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 15px;
    border: 2px solid transparent;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 11px;
    letter-spacing: .25em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    transition-property: background-color, border-color, color;
    transition-duration: .2s;
    transition-timing-function: ease;
}

.btn--primary {
    position: relative;
    overflow: hidden;
    border-color: var(--color-avant-red);
    background-color: var(--color-avant-red);
    color: var(--color-pure-white);
}

/* Blue reskin of .btn--primary — combine both classes on the same element
   (class="btn btn--primary btn--primary-blue") rather than duplicating the
   shine ::before/@keyframes below for a 2nd color; only overrides what
   changes. Same specificity as .btn--primary itself (one class each), so
   this must stay after it in source order to win the cascade. */
.btn--primary-blue {
    border-color: var(--color-compliance-blue);
    background-color: var(--color-compliance-blue);
}

/* One-shot light sweep on hover — colors never change, only this pseudo-
   element moves. @keyframes (not a transition) so it plays once forward and
   holds via animation-fill-mode:forwards; it resets instantly when the hover
   ends, ready to sweep again next time, instead of visibly reversing. */
.btn--primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, .66) 50%, transparent 100%);
    transform: translateX(-250%) skewX(-30deg);
}

.btn--primary:hover::before {
    animation-name: btn-primary-shine;
    animation-duration: .75s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
}

@keyframes btn-primary-shine {
    from {
        transform: translateX(-250%) skewX(-30deg);
    }

    to {
        transform: translateX(250%) skewX(-30deg);
    }
}

.btn--outline {
    border-color: var(--color-pure-white);
    background-color: transparent;
    color: var(--color-pure-white);
}

.btn--outline:hover {
    background-color: var(--color-pure-white);
    color: var(--color-deepest-blue);
}

/* Gray-bordered variant of .btn--outline, for a light-background card
   instead of a dark/photo one — .btn--outline's white border/text would be
   near-invisible there. First use: Sponsors & Exhibitors' "Visit Website". */
.btn--outline-gray {
    border-color: var(--color-calm-gray);
    background-color: transparent;
    color: var(--color-titanium-gray);
}

.btn--outline-gray:hover {
    border-color: var(--color-compliance-blue);
    background-color: var(--color-compliance-blue);
    color: var(--color-pure-white);
}

/* Small uppercase "action link" look — shared by Agendas' "Read more"/
   "Read less" (a <summary>) and Speakers'/Moderators' "View Bio" (an <a>).
   Confirmed identical in color/hover/letter-spacing across both before this
   promotion (2026-07-25) — extracted here so future tabs (starting with
   Sponsors & Exhibitors' own "Read more") guarantee the same look instead
   of re-matching values by hand. Deliberately does NOT include the icon:
   the chevron's own size/transform differs per context (a rotating chevron
   for expand/collapse vs a static sideways arrow for "opens a modal") and
   stays defined locally in each tab's own CSS. */
.arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .05em;
    color: var(--color-compliance-blue);
    text-transform: uppercase;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.arrow-link:hover {
    color: var(--color-avant-red);
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons img {
    width: 20px;
    height: 20px;
    transition: transform .25s ease;
}

.social-icons a:hover img {
    transform: scale(1.15);
}

.icon {
    display: inline-block;
    flex-shrink: 0;
    background-color: currentColor;
    -webkit-mask-image: var(--icon-src);
    mask-image: var(--icon-src);
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
}

/* Hamburger Menu */
.hamburger {
    display: inline-block;
    margin: 0;
    padding: 10px 0px 8px;
    border: 0;
    background-color: transparent;
    font: inherit;
    color: inherit;
    text-transform: none;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    cursor: pointer;
    overflow: visible;
}

.stick-opened .hamburger .hamburger-inner,
.stick-opened .hamburger .hamburger-inner::before,
.stick-opened .hamburger .hamburger-inner::after {
    background-color: var(--color-royal-blue);
}

.hamburger-box {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 14px;
}

.hamburger-inner {
    top: 50%;
    display: block;
    margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--color-royal-blue);
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -7px;
}

.hamburger-inner::after {
    bottom: -7px;
}

.hamburger--slider .hamburger-inner {
    top: 0px;
}

.hamburger--slider .hamburger-inner::before {
    top: 7px;
    transition-property: transform, opacity;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}

.hamburger--slider .hamburger-inner::after {
    top: 14px;
}

.stick-opened .hamburger--slider .hamburger-inner {
    transform: translate3d(0, 7px, 0) rotate(45deg);
}

.stick-opened .hamburger--slider .hamburger-inner::before {
    opacity: 0;
    transform: rotate(0deg) scale(0);
}

.stick-opened .hamburger--slider .hamburger-inner::after {
    transform: translate3d(0, -14px, 0) rotate(-90deg);
}

@media only screen and (min-width: 1000px) {
    .btn {
        height: 50px;
        padding: 0 30px;
        font-size: 16px;
    }
}



/**************************************************************************************************************/
/**************************************************************************************************************/
/**************************************************************************************************************/
/* HEADER */
/**************************************************************************************************************/
/**************************************************************************************************************/
/**************************************************************************************************************/

header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    background-color: var(--color-pure-white);
    transition: box-shadow .2s ease;
}

/* Minimal separation once the page has scrolled — otherwise a white section
   sitting directly under the fixed white header has no visible edge between
   them (main.js toggles this class on scroll). */
.header--scrolled {
    box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
}

/*******************************************************/
/* HEADER TOP BAR */
/*******************************************************/
.header__topbar {
    display: none;
}

.header__topbar .boxed {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__contacts {
    display: flex;
    gap: 10px;
    font-size: 14px;
    line-height: 1;
}

.header__contacts a {
    transition: color .5s ease;
}

.header__contacts a:hover {
    color: var(--color-caribbean-blue);
}

@media only screen and (min-width: 1000px) {
    .header__topbar {
        display: flex;
        align-items: center;
        height: var(--header-topbar-height);
    }
}



/*******************************************************/
/* HEADER MAIN BAR */
/*******************************************************/
.header__mainbar {
    display: flex;
    align-items: center;
    height: var(--header-mainbar-height);
}

.header__mainbar .boxed {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__mainbar-logo img {
    display: block;
    width: 180px;
    height: auto;
}

.header__mainbar-menus {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header__search {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    margin-top: -2px;
    color: var(--color-royal-blue);
}

.header__search .icon {
    width: 100%;
    height: 100%;
}

/* Header Top Menu */
.menu-primary-container {
    display: none;
}

.menu {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.menu a {
    display: block;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 14px;
    color: var(--color-royal-blue);
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
}

/* Header Top Menu Mobile */
.mm-ocd__header {
    display: flex;
    align-items: center;
    padding: 30px 30px 15px;
}

.mm-ocd__content .menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.mm-ocd__content .menu li,
.mm-ocd__content .menu li a {
    width: 100%;
}

.mm-ocd__content .menu a {
    padding: 15px 30px;
}

@media only screen and (min-width: 600px) {
    .header__mainbar-logo img {
        width: 220px;
    }
}

@media only screen and (min-width: 1000px) {
    .header__mainbar-logo img {
        width: 240px;
    }
}

@media only screen and (min-width: 1200px) {
    .header__mainbar-logo img {
        width: 260px;
    }

    .hamburger {
        display: none;
    }

    .menu-primary-container {
        display: block;
    }
}

/**************************************************************************************************************/
/**************************************************************************************************************/
/**************************************************************************************************************/
/* SEARCH MODAL */
/**************************************************************************************************************/
/**************************************************************************************************************/
/**************************************************************************************************************/
.search-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    transition-property: visibility;
    transition-duration: 0s;
    transition-delay: .3s;
}

.search-modal--open {
    visibility: visible;
    transition-delay: 0s;
}

.search-modal__backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(3, 2, 1, 0);
    transition-property: background-color;
    transition-duration: .3s;
    transition-timing-function: ease;
}

.search-modal--open .search-modal__backdrop {
    background-color: rgba(0, 0, 0, .5);
}

.search-modal__box {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 600px;
    margin-inline: var(--grid-side-padding);
    opacity: 0;
    transform: scale(.96);
    transition-property: transform, opacity;
    transition-duration: .3s;
    transition-timing-function: ease;
}

.search-modal--open .search-modal__box {
    opacity: 1;
    transform: scale(1);
}

.search-form {
    display: flex;
    height: 50px;
}

.search-form__label {
    display: block;
    flex-grow: 1;
}

.search-field {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0 20px;
    border: 1px solid var(--color-calm-gray);
    border-radius: 0;
    background-color: var(--color-pure-white);
    font-family: var(--font-sans);
    font-size: 16px;
    color: var(--color-deepest-blue);
    appearance: none;
    -webkit-appearance: none;
}

.search-submit {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 100%;
    border: 1px solid var(--color-calm-gray);
    border-left: 0;
    border-radius: 0;
    background-color: var(--color-pure-white);
    color: var(--color-royal-blue);
    cursor: pointer;
}

.search-submit .icon {
    width: 20px;
    height: 20px;
}

/**************************************************************************************************************/
/**************************************************************************************************************/
/**************************************************************************************************************/
/* HERO (LP CONFERENCE) */
/**************************************************************************************************************/
/**************************************************************************************************************/
/**************************************************************************************************************/

/* Background lives entirely in the two images (gradient baked in on export) —
   set as CSS custom properties inline on the section. Mobile image is the
   default; desktop swaps in at the 1000px breakpoint below.

   Content is grouped into 3 independent blocks — .hero__intro (brand +
   title), .hero__meta (save-the-date + venue), .hero__actions (buttons) —
   because mobile and desktop don't just resize the same stack, they
   redistribute it: mobile spreads the 3 blocks across the full-height image,
   desktop compacts all 3 into one left-aligned, vertically centered group.
   Mobile-first: base rules below are the mobile layout, the min-width
   queries are the desktop overrides. */
.hero {
    background-image: var(--hero-bg-mobile);
    background-position: center;
    background-size: cover;
}

.hero__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    aspect-ratio: 2 / 3;
    padding-block: 45px;
    text-align: center;
}

.hero__intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: -15px;
}

.hero__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    transform: translate(3px);
}

.hero__logo--complianceaid {
    width: 205px;
    height: auto;
}

.hero__logo--amlfc {
    width: 103px;
    height: auto;
}

.hero__title {
    max-width: 600px;
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.15;
    color: var(--color-pure-white);
}

.hero__meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: flex-start;
    gap: 15px;
    margin-top: 100px;
    margin-left: 20px;
    text-align: left;
}

.hero__save-the-date {
    width: 170px;
    height: auto;
}

.hero__venue {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.hero__venue-label {
    font-family: var(--font-sans);
    font-size: 8px;
    letter-spacing: .25em;
    color: var(--color-pure-white);
    text-transform: uppercase;
}

.hero__venue-logo {
    width: 110px;
    height: auto;
}

.hero__actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
    width: 100%;
}

.hero__actions-secondary {
    display: flex;
    gap: 15px;
}

.hero__actions-secondary .btn {
    flex: 1;
}

@media only screen and (min-width: 600px) {
    .hero__inner {
        aspect-ratio: inherit;
        min-height: calc(100vh - var(--header-height));
    }

    .hero__intro {
        gap: 15px;
        margin-top: 0;
    }

    .hero__brand {
        gap: 10px;
        transform: translate(5px);
    }

    .hero__logo--complianceaid {
        width: 280px;
    }

    .hero__logo--amlfc {
        width: 140px;
    }

    .hero__title {
        font-size: 21px;
    }

    .hero__title br:nth-child(1) {
        display: none;
    }

    .hero__meta {
        gap: 20px;
        margin-top: 160px;
        margin-left: 80px;
    }

    .hero__save-the-date {
        width: 300px;
    }

    .hero__venue {
        gap: 10px;
    }

    .hero__venue-label {
        font-size: 12px;
    }

    .hero__venue-logo {
        width: 184px;
    }
}

@media only screen and (min-width: 1000px) {
    .hero {
        aspect-ratio: 1920 / 720;
        min-height: 500px;
        background-image: var(--hero-bg-desktop);
    }

    .hero__inner {
        align-items: flex-start;
        justify-content: center;
        min-height: 480px;
        text-align: left;
    }

    .hero__intro {
        align-items: flex-start;
    }

    .hero__brand {
        flex-direction: row;
        align-items: baseline;
        gap: 30px;
    }

    .hero__logo--amlfc {
        width: 130px;
    }

    .hero__title {
        margin-top: 15px;
        font-size: 24px;
    }

    .hero__title br:nth-child(1) {
        display: block;
    }

    .hero__meta {
        flex-direction: row;
        align-items: flex-start;
        align-self: auto;
        gap: 30px;
        margin-top: 45px;
        margin-left: 0;
    }

    .hero__save-the-date {
        width: 240px;
    }

    .hero__venue {
        gap: 6px;
    }

    .hero__venue-label {
        font-size: 10px;
    }

    .hero__venue-logo {
        width: 160px;
    }

    .hero__actions {
        flex-direction: row;
        align-items: center;
        width: auto;
        margin-top: 45px;
    }

    .hero__actions-secondary {
        display: contents;
    }

    .hero__actions-secondary .btn {
        flex: none;
    }
}

@media only screen and (min-width: 1200px) {
    .hero {
        min-height: 720px;
    }

    .hero__inner {
        min-height: 720px;
        padding-block: 60px;
    }

    .hero__logo--complianceaid {
        width: 330px;
    }

    .hero__logo--amlfc {
        width: 160px;
    }

    .hero__title {
        margin-top: 30px;
        font-size: 32px;
    }

    .hero__meta {
        gap: 60px;
    }

    .hero__save-the-date {
        width: 300px;
    }

    .hero__venue {
        gap: 10px;
    }

    .hero__venue-label {
        font-size: 12px;
    }

    .hero__venue-logo {
        width: 184px;
    }

    .hero__actions {
        gap: 30px;
        margin-top: 120px;
    }
}

/**************************************************************************************************************/
/**************************************************************************************************************/
/**************************************************************************************************************/
/* TRUST BAR */
/**************************************************************************************************************/
/**************************************************************************************************************/
/**************************************************************************************************************/
.trust-bar {
    position: relative;
    background-color: var(--color-arctic-chrome);
}

.trust-bar__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.trust-bar__item {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 5px;
    padding: 15px;
}

.trust-bar__item--highlight {
    background-color: var(--color-avant-red);
    color: var(--color-pure-white);
}

.trust-bar__item--highlight .stat__number {
    color: var(--color-pure-white);
}

.trust-bar__item--highlight .stat__text {
    color: var(--color-pure-white);
}

@media only screen and (min-width: 600px) {
    .trust-bar__grid {
        flex-wrap: nowrap;
    }

    .trust-bar__item {
        padding: 30px 15px;
    }

    .trust-bar .stat__number {
        font-size: 72px;
    }

    .trust-bar .stat__number-suffix {
        font-size: 36px;
    }

    .trust-bar .stat__text {
        font-size: 12px;
        line-height: 1.1;
    }
}

@media only screen and (min-width: 1200px) {
    .trust-bar__grid {
        gap: 30px;
    }

    .trust-bar__item {
        gap: 10px;
        padding: 30px;
    }

    .trust-bar .stat__number {
        font-size: 96px;
    }

    .trust-bar .stat__number-suffix {
        font-size: 48px;
    }

    .trust-bar .stat__text {
        font-size: 16px;
        line-height: 1.3;
    }
}

/**************************************************************************************************************/
/**************************************************************************************************************/
/**************************************************************************************************************/
/* BECOME A SPONSOR (lp-conference) */
/**************************************************************************************************************/
/**************************************************************************************************************/
/**************************************************************************************************************/
.become-a-sponsor {
    position: relative;
    background-image: var(--become-a-sponsor-bg-mobile);
    background-position: center;
    background-size: cover;
    color: var(--color-pure-white);
}

.become-a-sponsor .eyebrow p {
    color: var(--color-pure-white);
}

.become-a-sponsor__row {
    flex-direction: column;
}

.become-a-sponsor__row .w-1-2 {
    max-width: unset;
}

.become-a-sponsor .the-content h2 {
    color: var(--color-pure-white);
}

.become-a-sponsor .btn {
    width: 300px;
    max-width: 100%;
}

.become-a-sponsor .stat__labels {
    position: relative;
}

.become-a-sponsor .stat__number,
.become-a-sponsor .stat__number-suffix {
    color: var(--color-caribbean-blue);
}

.become-a-sponsor .stat__number {
    font-size: 48px;
}

.become-a-sponsor .stat__number-suffix {
    top: -18px;
    font-size: 16px;
}

.become-a-sponsor .stat__text {
    color: var(--color-pure-white);
}

.become-a-sponsor__stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.become-a-sponsor__cta {
    align-items: center;
    justify-content: center;
    padding-top: 45px;
}

@media only screen and (min-width: 1000px) {
    .become-a-sponsor {
        min-height: 546px;
        padding-block: 100px;
        background-image: var(--become-a-sponsor-bg);
    }

    .become-a-sponsor__row {
        flex-direction: row;
    }

    .become-a-sponsor .stat__number {
        font-size: 96px;
    }

    .become-a-sponsor .stat__number-suffix {
        top: -32px;
        font-size: 32px;
    }

    .become-a-sponsor .stat__text {
        min-width: 110px;
        font-size: 16px;
        line-height: 1.3;
    }

    .become-a-sponsor__cta {
        padding-top: unset;
    }
}

/**************************************************************************************************************/
/**************************************************************************************************************/
/**************************************************************************************************************/
/* SPONSORSHIP HERO (lp-sponsorship-opportunities — bkp's own file uses bare
   ".hero"; renamed here only to avoid colliding with lp-conference's real
   ".hero" now that both pages share this one stylesheet) */
/**************************************************************************************************************/
/**************************************************************************************************************/
/**************************************************************************************************************/
.sponsorship-hero {
    position: relative;
    background-image: var(--sponsorship-hero-bg-mobile);
    background-position: center;
    background-size: cover;
    color: var(--color-pure-white);
}

.sponsorship-hero .eyebrow p {
    color: var(--color-pure-white);
}

.sponsorship-hero__row {
    flex-direction: column;
    padding-block: 45px;
}

.sponsorship-hero__row .w-1-2 {
    max-width: unset;
}

.sponsorship-hero .the-content h2 {
    color: var(--color-pure-white);
}

.sponsorship-hero .btn {
    min-width: 300px;
}

.sponsorship-hero .stat__labels {
    position: relative;
}

.sponsorship-hero .stat__number,
.sponsorship-hero .stat__number-suffix {
    color: var(--color-caribbean-blue);
}

.sponsorship-hero .stat__number {
    font-size: 48px;
}

.sponsorship-hero .stat__number-suffix {
    top: -18px;
    font-size: 16px;
}

.sponsorship-hero .stat__text {
    color: var(--color-pure-white);
}

.sponsorship-hero__stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.sponsorship-hero__cta {
    align-items: center;
    justify-content: center;
    padding-top: 45px;
}

@media only screen and (min-width: 1000px) {
    .sponsorship-hero {
        min-height: 546px;
        background-image: var(--sponsorship-hero-bg);
    }

    .sponsorship-hero__row {
        flex-direction: row;
        padding-block: 100px;
    }

    .sponsorship-hero .stat__number {
        font-size: 96px;
    }

    .sponsorship-hero .stat__number-suffix {
        top: -32px;
        font-size: 32px;
    }

    .sponsorship-hero .stat__text {
        min-width: 110px;
        font-size: 16px;
        line-height: 1.3;
    }

    .sponsorship-hero__cta {
        padding-top: unset;
    }
}

/**************************************************************************************************************/
/**************************************************************************************************************/
/**************************************************************************************************************/
/* WHY ATTEND */
/**************************************************************************************************************/
/**************************************************************************************************************/
/**************************************************************************************************************/
.why-attend .the-content {
    flex-direction: column;
}

.why-attend .the-content .w-1-2 {
    max-width: unset;
}

.why-attend .disclaimer {
    border-top: 1px solid var(--color-deepest-blue);
}

.why-attend .disclaimer__text {
    color: var(--color-deepest-blue);
}

@media only screen and (min-width: 1000px) {
    .why-attend .the-content {
        flex-direction: row;
    }
}

/**************************************************************************************************************/
/**************************************************************************************************************/
/**************************************************************************************************************/
/* REGISTRATION */
/**************************************************************************************************************/
/**************************************************************************************************************/
/**************************************************************************************************************/
.registration {
    background-color: var(--color-arctic-white);
}

.registration__cards {
    flex-direction: column;
    margin-top: 45px;
}

.registration__cards .w-1-3 {
    max-width: unset;
}

.pricing-card {
    position: relative;
    flex: 1;
    height: 100%;
    padding: 30px 15px;
    border: 1px solid var(--color-arctic-chrome);
}

.pricing-card:not(.bg-gradient-blue) {
    background-color: var(--color-pure-white);
}

.pricing-card h3 {
    font-weight: 500;
    font-size: 18px;
}

.pricing-card ul {
    gap: 16px;
}

.pricing-card.bg-gradient-blue {
    border: none;
}

.pricing-card__badge {
    position: absolute;
    top: 0;
    left: 24px;
    padding: 6px 12px;
    background-color: var(--color-avant-red);
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: .05em;
    color: var(--color-pure-white);
    text-transform: uppercase;
    transform: translateY(-50%);
}

.pricing-card:not(.bg-gradient-blue) li::before {
    border-left-color: var(--color-royal-blue);
    border-bottom-color: var(--color-royal-blue);
}

.pricing-card__subtitle {
    display: block;
    margin-top: 10px;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 14px;
    color: var(--color-compliance-blue);
}

.bg-gradient-blue .pricing-card__subtitle {
    color: var(--color-caribbean-blue);
}

.pricing-card__price {
    margin-top: 30px;
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
    font-size: 60px;
    letter-spacing: -0.05em;
    color: var(--color-deepest-blue);
}

.bg-gradient-blue .pricing-card__price {
    color: var(--color-pure-white);
}

.pricing-card__price-currency {
    font-size: 36px;
}

.pricing-card__price-suffix {
    display: inline-block;
    vertical-align: text-top;
    margin-top: 2em;
    font-family: var(--font-sans);
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0;
}

.pricing-card__cta {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.registration__order {
    flex-direction: column;
    margin-top: 60px;
}

.registration__order h2 {
    color: var(--color-avant-red);
}

.tkt-slctr-tbl {
    width: 100%;
    margin-top: 30px;
    border-collapse: separate;
    border-spacing: 2px;
}

.tkt-slctr-tbl thead th {
    padding: 10px;
    background-color: var(--color-deepest-blue);
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 18px;
    color: var(--color-pure-white);
    text-align: center;
}

.tkt-slctr-tbl thead th:first-of-type {
    text-align: left;
}

.cntr {
    text-align: center;
}

.jst-rght {
    text-align: right;
}

.tckt-slctr-tbl-tr {
    background-color: var(--color-arctic-chrome);
}

.tckt-slctr-tbl-td-name,
.tckt-slctr-tbl-td-price,
.tckt-slctr-tbl-td-qty {
    padding: 10px;
}

.tckt-slctr-tbl-td-name {
    font-family: var(--font-sans);
    color: var(--color-deepest-blue);
}

.tckt-slctr-tbl-td-name strong {
    display: block;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
}

.tckt-slctr-tbl-td-name-dates {
    display: block;
    font-size: 12px;
}

.tckt-slctr-tbl-td-price {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 700;
    font-size: 16px;
    color: var(--color-deepest-blue);
    text-align: center;
}

.tckt-slctr-tbl-td-price .smaller-text {
    vertical-align: super;
    font-family: var(--font-sans);
    font-style: normal;
    font-weight: 700;
    font-size: 11px;
}

.qty-field {
    position: relative;
    display: inline-block;
}

.qty-field::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 30px;
    background-color: var(--color-royal-blue);
    background-image: url(../img/select-arrow-down.png);
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
}

.qty-field select {
    width: 70px;
    height: 30px;
    padding: 0 30px 0 0;
    border: none;
    background-color: var(--color-pure-white);
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 18px;
    line-height: 18px;
    color: var(--color-deepest-blue);
    text-align: center;
}

.ticket-selector-submit-btn-wrap {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.ticket-selector-submit-btn-wrap .ticket-selector-submit-btn {
    width: 300px;
    max-width: 100%;
}

.discounts-note {
    width: 100%;
    margin-top: 40px;
    text-align: center;
    line-height: 1.25;
}

.discounts-note__title {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 700;
    font-size: 21px;
    color: var(--color-deepest-blue);
}

.discounts-note__text {
    font-size: 16px;
    margin-top: 10px;
}

.registration .disclaimer {
    margin-top: 40px;
}

.registration .disclaimer__img {
    width: 48px;
}

@media only screen and (min-width: 1000px) {
    .registration__cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .tckt-slctr-tbl-td-name,
    .tckt-slctr-tbl-td-price,
    .tckt-slctr-tbl-td-qty {
        padding: 10px 15px;
    }

    .tkt-slctr-tbl thead th {
        padding: 10px 15px;
        font-size: 21px;
    }

    .tckt-slctr-tbl-td-name strong {
        font-size: 16px;
    }

    .tckt-slctr-tbl-td-price {
        font-size: 22px;
    }

    .qty-field::after {
        width: 36px;
    }

    .qty-field select {
        width: 130px;
        padding: 0 36px 0 0;
        font-size: 21px;
        line-height: 21px;
    }

    .discounts-note__text {
        margin-top: unset;
    }
}

@media only screen and (min-width: 1200px) {
    .pricing-card {
        padding: 30px;
    }

    .pricing-card h3 {
        font-size: 21px;
    }

    .pricing-card__price {
        margin-top: 45px;
        font-size: 60px;
    }

    .pricing-card ul {
        margin-top: 45px;
        font-size: 16px;
    }

    .pricing-card ul li::before {
        top: 4px;
        width: 12px;
        height: 6px;
        border-left: 2px solid var(--color-avant-red);
        border-bottom: 2px solid var(--color-avant-red);
    }
}

/**************************************************************************************************************/
/**************************************************************************************************************/
/**************************************************************************************************************/
/* CONFERENCE DETAILS */
/**************************************************************************************************************/
/**************************************************************************************************************/
/**************************************************************************************************************/
.tabs__nav-wrap {
    position: relative;
    margin-top: 30px;
    border-bottom: 1px solid var(--color-arctic-chrome);
}

.tabs__nav {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.tabs__nav::-webkit-scrollbar {
    display: none;
}

.tabs__tab {
    position: relative;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 92px;
    height: 40px;
    padding: 0 10px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 11px;
    line-height: 1.25;
    letter-spacing: .05em;
    color: var(--color-financial-gray);
    text-align: center;
    text-transform: uppercase;
    transition: color .3s ease;
}

.tabs__tab::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 0;
    background-color: var(--color-compliance-blue);
    transition: height .3s ease;
}

.tabs__tab--active {
    color: var(--color-pure-white);
}

.tabs__tab--active::before {
    height: 100%;
}

.tabs__scroll-btn {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    border: none;
    opacity: 0;
    color: var(--color-avant-red);
    pointer-events: none;
    transition: opacity .2s ease;
}

.tabs__scroll-btn--visible {
    opacity: 1;
    pointer-events: auto;
}

.tabs__scroll-btn--left {
    left: 0;
    background: linear-gradient(to right, var(--color-pure-white) 35%, transparent);
}

.tabs__scroll-btn--right {
    right: 0;
    background: linear-gradient(to left, var(--color-pure-white) 35%, transparent);
}

.tabs__scroll-btn .icon {
    width: 8px;
    height: 14px;
    margin-right: 35px;
}

.tabs__scroll-btn--right .icon {
    margin-right: -35px;
    transform: scaleX(-1);
}

.tabs__body {
    position: relative;
}

.tabs__panel {
    position: absolute;
    inset: 0;
    padding: 30px 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
}

.tabs__panel--active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
}

.tab-carousel-nav {
    position: absolute;
    top: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 100%;
}

.tab-carousel-nav > div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: var(--color-deepest-blue);
    color: var(--color-pure-white);
}

.tab-carousel-nav:hover > div {
    background-color: var(--color-compliance-blue);
}

.tab-carousel-nav--prev {
    left: 0;
    background: linear-gradient(to right, var(--color-pure-white) 35%, transparent);
    justify-content: flex-start;
}

.tab-carousel-nav--next {
    right: 0;
    background: linear-gradient(to left, var(--color-pure-white) 35%, transparent);
    justify-content: flex-end;
}

.tab-carousel-nav .icon {
    width: 8px;
    height: 14px;
}

.tab-carousel-nav--next .icon {
    transform: scaleX(-1);
}

.tab-carousel-nav.swiper-button-disabled {
    opacity: .3;
    pointer-events: none;
}

.org-card-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.org-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 15px;
    border: 1px solid var(--color-arctic-chrome);
    background-color: var(--color-arctic-white);
}

.org-card__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 120px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-arctic-chrome);
}

.org-card__logo img {
    width: auto;
    max-width: 180px;
    height: auto;
    max-height: 70px;
}

.tab-partners .org-card__logo img {
    max-height: unset;
}

.org-card__description {
    padding-top: 20px;
    margin: 0 !important;
    border-top: 1px solid var(--color-pure-white);
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-titanium-gray);
}

.org-card__inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

.org-card__website {
    width: 100%;
    max-width: 300px;
    margin-top: 20px;
}

.save-the-date-banner {
    display: block;
}

@media only screen and (min-width: 600px) {
    .org-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (min-width: 1000px) {
    .tabs__tab {
        min-width: 130px;
        height: 50px;
        padding: 0 15px;
        font-size: 14px;
    }

    .tab-carousel-nav {
        width: 100px;
    }

    .tab-carousel-nav > div {
        width: 50px;
        height: 50px;
    }

    .tab-carousel-nav .icon {
        width: 12px;
        height: 21px;
    }

    .org-card-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .org-card {
        padding: 30px;
    }

    .org-card__logo img {
        max-height: 100px;
    }

    .org-card__description {
        font-size: 20px;
    }
}

/**************************************************************************************************************/
/**************************************************************************************************************/
/**************************************************************************************************************/
/* CONFERENCE DETAILS — OVERVIEW TAB */
/**************************************************************************************************************/
/**************************************************************************************************************/
/**************************************************************************************************************/
.tab-overview .benefits-of-participating {
    margin-top: 30px;
}

.tab-overview .w-1-1.gap60 {
    flex-direction: column;
}

.tab-overview .w-1-1.gap60 .w-1-2 {
    max-width: unset;
}

.tab-overview .save-the-date-banner {
    margin-top: 30px;
}

.overview__learning-objectives {
    position: relative;
    text-align: center;
}

.overview__learning-objectives-slider {
    position: relative;
    margin-top: 30px;
}

.overview__learning-objectives-slider .swiper-wrapper {
    align-items: stretch;
}

.overview__learning-objectives-slider .swiper-slide {
    height: auto;
    width: 300px;
}

.overview__objective-card {
    height: 100%;
    padding: 30px;
    background-color: var(--color-arctic-chrome);
    text-align: left;
}

.overview__objective-card p::before {
    content: " ";
    display: block;
    width: 10px;
    height: 10px;
    margin-bottom: 5px;
    background-color: var(--color-avant-red);
}

.overview__objective-card p {
    margin-top: 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--color-compliance-blue);
}

@media only screen and (min-width: 1000px) {
    .tab-overview .w-1-1.gap60 {
        flex-direction: row;
    }
}

/**************************************************************************************************************/
/**************************************************************************************************************/
/**************************************************************************************************************/
/* CONFERENCE DETAILS — AGENDAS TAB */
/**************************************************************************************************************/
/**************************************************************************************************************/
/**************************************************************************************************************/
.agenda-day-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 850px;
    margin-inline: auto;
}

.agenda-day {
    border: 1px solid var(--color-arctic-chrome);
    background-color: var(--color-arctic-white);
}

.agenda-day + .agenda-day {
    margin-top: 15px;
}

.agenda-day__header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 30px;
    list-style: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.agenda-day__header::-webkit-details-marker {
    display: none;
}

.agenda-day__brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    width: 100%;
}

.agenda-day__logo {
    width: auto;
    max-width: 230px;
    height: auto;
    max-height: 60px;
}

.tab-content p.agenda-day__conference-name {
    margin: 0;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.25;
    color: var(--color-financial-gray);
    text-transform: uppercase;
}

.agenda-day__box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.tab-content h3.agenda-day__date {
    font-size: 30px;
    color: var(--color-avant-red);
}

.agenda-day__toggle {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--color-avant-red);
    color: var(--color-pure-white);
    transform: rotate(90deg);
    transition: transform .2s ease;
}

.agenda-day__toggle > .icon {
    width: 12px;
    height: 21px;
    transform: scaleX(-1);
    transition: transform .3s ease;
}

.agenda-day[open] .agenda-day__toggle > .icon {
    transform: scaleX(1);
}

.agenda-day__sessions {
    border-top: 1px solid var(--color-arctic-chrome);
}

.agenda-session {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 10px;
    align-items: start;
    padding: 15px;
    border-top: 1px solid var(--color-pure-white);
    border-bottom: 1px solid var(--color-arctic-chrome);
}

.agenda-session:first-child {
    border-top: 0;
}

.agenda-session:has(.agenda-session__more[open]) {
    background-color: var(--color-pure-white);
}

.agenda-session__time {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-financial-gray);
}

.agenda-session__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    height: 20px;
    padding: 0 10px;
    border: 1px solid var(--color-calm-gray);
    border-radius: 3px;
    background-color: var(--color-arctic-chrome);
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .05em;
    color: var(--color-deepest-blue);
    text-align: center;
    text-transform: uppercase;
}

.agenda-session__content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.agenda-session__label {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-rich-black);
}

.tab-content h4.agenda-session__title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    font-family: var(--font-sans);
    font-style: normal;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--color-rich-black);
    text-box: auto;
}

.tab-content ol h4.agenda-session__title {
    padding-top: 10px;
    border-top: 1px solid var(--color-calm-gray);
}

.agenda-session__content:has(.agenda-session__more[open]) .agenda-session__title {
    overflow: visible;
    -webkit-line-clamp: unset;
    line-clamp: unset;
}

.agenda-session__more {
    display: flex;
    flex-direction: column-reverse;
}

.agenda-session__more summary {
    list-style: none;
}

.agenda-session__more[open] summary {
    color: var(--color-avant-red);
}

.agenda-session__more summary::-webkit-details-marker {
    display: none;
}

.agenda-session__more-label--open {
    display: none;
}

.agenda-session__more[open] .agenda-session__more-label--closed {
    display: none;
}

.agenda-session__more[open] .agenda-session__more-label--open {
    display: inline;
}

.agenda-session__more-icon {
    width: 8px;
    height: 8px;
    transform: rotate(-90deg);
    transition: transform .2s ease;
}

.agenda-session__more[open] .agenda-session__more-icon {
    transform: rotate(90deg);
}

.agenda-session__speakers {
    margin-top: 10px;
}

.agenda-session__speakers h5 {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 600;
    font-size: 18px;
    color: var(--color-compliance-blue);
}

.agenda-session__speakers ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
    font-size: 12px;
    color: var(--color-titanium-gray);
}

.agenda-session__speakers li {
    flex-direction: column;
    padding: 0;
    font-size: 12px;
}

.agenda-session__speakers li::before {
    content: none;
}

.agenda-session__speakers li strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-deepest-blue);
}

.agenda-session__speakers li a {
    color: inherit;
    transition: color 0.5s ease;
}

.agenda-session__speakers li:hover a {
    color: var(--color-avant-red);
}

.agenda-breakout__title {
    font-family: var(--font-sans);
    font-style: normal;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--color-deepest-blue);
}

ol.agenda-breakout__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 15px;
    padding-left: 20px;
    counter-reset: agenda-breakout;
}

ol.agenda-breakout__list li {
    position: relative;
    padding: 0;
}

ol.agenda-breakout__list li::before {
    content: none !important;
}

.agenda-download {
    width: 300px;
    max-width: 100%;
    margin: 45px auto 0;
}

@media only screen and (min-width: 1200px) {
    .agenda-session {
        grid-template-columns: 100px 1fr;
        gap: 20px;
        padding: 15px 30px;
    }

    .agenda-session__time {
        font-size: 16px;
        font-weight: 700;
    }

    .agenda-session__badge {
        height: 24px;
        font-size: 10px;
    }

    .agenda-session__label {
        font-size: 16px;
    }

    .tab-content h4.agenda-session__title {
        font-size: 16px;
    }

    .agenda-session__speakers li strong {
        font-size: 16px;
    }
}

/**************************************************************************************************************/
/**************************************************************************************************************/
/**************************************************************************************************************/
/* CONFERENCE DETAILS — SPEAKERS TAB */
/**************************************************************************************************************/
/**************************************************************************************************************/
/**************************************************************************************************************/
.speakers__grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.speaker-card {
    display: flex;
    background-color: var(--color-arctic-white);
}

.speaker-card__photo {
    flex-shrink: 0;
    width: 100px;
    height: 100%;
}

.speaker-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.speaker-card__infos {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-width: 0;
    padding: 15px;
    color: var(--color-deepest-blue);
}

.tab-content h4.speaker-card__name {
    font-size: 21px;
    color: inherit;
}

.tab-content p.speaker-card__credentials {
    margin-top: 5px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .05em;
    color: var(--color-compliance-blue);
    text-transform: uppercase;
}

.tab-content p.speaker-card__title {
    margin-top: 5px;
    font-size: 12px;
    line-height: 1.25;
    color: inherit;
}

.speaker-card__bio {
    margin-top: 15px;
}

.speaker-card__bio .icon {
    width: 6px;
    height: 10px;
    transform: scaleX(-1);
}

@media only screen and (min-width: 600px) {
    .speakers__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .speaker-card__photo {
        width: 120px;
    }
}

@media only screen and (min-width: 1200px) {
    .speakers__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .speaker-card__photo {
        width: 150px;
    }
}

/**************************************************************************************************************/
/**************************************************************************************************************/
/**************************************************************************************************************/
/* CONFERENCE DETAILS — MODERATORS TAB */
/**************************************************************************************************************/
/**************************************************************************************************************/
/**************************************************************************************************************/
.moderators__grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.moderator-card {
    display: flex;
    flex-direction: column;
    background-color: var(--color-arctic-white);
}

.moderator-card__photo {
    flex-shrink: 0;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
}

.moderator-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.moderator-card__infos {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-width: 0;
    padding: 15px;
    color: var(--color-deepest-blue);
}

.tab-content h4.moderator-card__name {
    font-size: 21px;
    color: inherit;
}

.tab-content p.moderator-card__credentials {
    margin-top: 5px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .05em;
    color: var(--color-compliance-blue);
    text-transform: uppercase;
}

.tab-content p.moderator-card__title {
    margin-top: 5px;
    font-size: 12px;
    line-height: 1.25;
    color: inherit;
}

.moderator-card__bio {
    margin-top: 15px;
}

.moderator-card__bio .icon {
    width: 6px;
    height: 10px;
    transform: scaleX(-1);
}

@media only screen and (min-width: 600px) {
    .moderators__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media only screen and (min-width: 1000px) {
    .moderators__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
}

@media only screen and (min-width: 1200px) {
    .moderators__grid {
        gap: 30px;
    }

    .moderator-card__infos {
        padding: 30px;
    }

    .tab-content h4.moderator-card__name {
        font-size: 24px;
    }

    .tab-content p.moderator-card__credentials {
        font-size: 12px;
    }

    .tab-content p.moderator-card__title {
        font-size: 14px;
    }
}

/**************************************************************************************************************/
/**************************************************************************************************************/
/**************************************************************************************************************/
/* CONFERENCE DETAILS — SPONSORS & EXHIBITORS TAB */
/**************************************************************************************************************/
/**************************************************************************************************************/
/**************************************************************************************************************/
.sponsors-exhibitors__title {
    text-align: center;
}

.keystone-sponsors__grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
    margin-top: 30px;
    margin-bottom: 60px;
}

.sponsor-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 15px;
    border: 1px solid var(--color-arctic-chrome);
    background-color: var(--color-arctic-white);
}

.sponsor-card__logo {
    display: flex;
    justify-content: center;
    width: 100%;
}

.sponsor-card--keystone .sponsor-card__logo {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-arctic-chrome);
}

.sponsor-card--keystone .sponsor-card__logo img {
    width: auto;
    max-width: 200px;
    height: auto;
    max-height: 40px;
}

.sponsor-card__body {
    width: 100%;
    border-top: 1px solid var(--color-pure-white);
}

.sponsor-card__description {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    overflow: hidden;
    text-box: auto;
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-titanium-gray);
}

.sponsor-card__description p {
    font-size: inherit;
}

.sponsor-card__description p + p {
    margin-top: 1em;
}

.sponsor-card__body:has(.sponsor-card__more[open]) .sponsor-card__description {
    overflow: visible;
    -webkit-line-clamp: unset;
    line-clamp: unset;
}

.sponsor-card__more {
    margin-top: 10px;
}

.sponsor-card__more-label--open {
    display: none;
}

.sponsor-card__more[open] .sponsor-card__more-label--closed {
    display: none;
}

.sponsor-card__more[open] .sponsor-card__more-label--open {
    display: inline;
}

.sponsor-card__more[open] summary {
    color: var(--color-avant-red);
}

.sponsor-card__more-icon {
    width: 8px;
    height: 8px;
    transform: rotate(-90deg);
    transition: transform .2s ease;
}

.sponsor-card__more[open] .sponsor-card__more-icon {
    transform: rotate(90deg);
}

.sponsor-card__website {
    width: 100%;
    max-width: 300px;
    margin-top: 20px;
}

.sponsors-banner {
    display: none;
}

@media only screen and (min-width: 600px) {
    .keystone-sponsors__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (min-width: 1000px) {
    .keystone-sponsors__grid {
        gap: 30px;
    }

    .sponsor-card {
        padding: 30px;
    }

    .sponsor-card--keystone .sponsor-card__logo img {
        max-width: 240px;
        max-height: 60px;
    }

    .sponsor-card__description {
        font-size: 20px;
    }

    .sponsors-banner {
        display: flex;
        justify-content: center;
        margin-bottom: 60px;
    }

    .sponsors-banner__image {
        width: 970px;
        height: 250px;
    }
}

/**************************************************************************************************************/
/**************************************************************************************************************/
/**************************************************************************************************************/
/* CONFERENCE DETAILS — PARTNERS TAB */
/**************************************************************************************************************/
/**************************************************************************************************************/
/**************************************************************************************************************/
.partners__title {
    text-align: center;
}

/**************************************************************************************************************/
/**************************************************************************************************************/
/**************************************************************************************************************/
/* CONFERENCE DETAILS — VENUE & ACCOMMODATION TAB */
/**************************************************************************************************************/
/**************************************************************************************************************/
/**************************************************************************************************************/
.tab-venue-accommodation .w-1-1 {
    flex-direction: column;
}

.tab-venue-accommodation .w-1-2 {
    max-width: unset;
}

.venue-covered,
.venue-booking,
.venue-video,
.venue-neighborhood,
.venue-rates {
    margin-top: 30px;
}

.venue-hero__intro p,
.venue-covered p,
.venue-booking__note p {
    font-size: 16px;
}

.venue-hero__logo {
    width: 160px;
    height: auto;
    margin: 0 auto;
}

.venue-hero__photo {
    position: relative;
    margin-bottom: -15px;
}

.venue-hero__photo img {
    display: block;
    width: 100%;
    height: auto;
}

.venue-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.venue-gallery__item img {
    display: block;
    width: 100%;
    aspect-ratio: 622 / 350;
    object-fit: cover;
}

.venue-gallery__cta {
    display: flex;
    justify-content: center;
}

.venue-gallery__cta .btn,
.venue-booking__note .btn {
    width: 300px;
    max-width: 100%;
    margin: auto;
}

.venue-features {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin: -20px 0;
}

.venue-features .venue-features__item p {
    margin-top: 0;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 16px;
    color: var(--color-deepest-blue);
    text-transform: uppercase;
}

.venue-features p.venue-features__text,
.venue-rates__note {
    font-weight: 400;
    letter-spacing: unset;
    color: var(--color-financial-gray);
    text-transform: initial;
}

.venue-features__item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

.venue-features__icon,
.venue-rates__icon {
    align-self: flex-start;
    width: auto;
    height: 50px;
}

.venue-features__text {
    margin-top: 5px;
    font-size: 14px;
    line-height: 1.4;
}

.venue-features::before,
.venue-features::after {
    content: " ";
    position: absolute;
    display: block;
    border-style: solid;
    border-width: 1px;
    border-color: var(--color-arctic-chrome);
}

.venue-features::before {
    top: 50%;
    left: 20px;
    width: calc(100% - 40px);
    height: 0;
    border-top: none;
}

.venue-features::after {
    top: 20px;
    left: 50%;
    width: 0;
    height: calc(100% - 40px);
    border-left: none;
}

.venue-rates {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
}

.venue-rates__item {
    width: 100%;
    padding: 30px;
    background-color: var(--color-mist-blue);
}

.venue-rates .venue-rates__item p {
    margin-top: 0;
}

.venue-rates__label {
    margin-top: 0;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 11px;
    color: var(--color-deepest-blue);
    text-transform: uppercase;
}

.venue-rates .venue-rates__value {
    position: relative;
    margin-top: 0;
    margin-bottom: 15px;
    padding-bottom: 15px;
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 600;
    font-size: 24px;
    letter-spacing: 0;
    color: var(--color-deepest-blue);
    text-transform: initial;
}

.venue-rates__value span {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    font-family: var(--font-sans);
    font-style: italic;
    font-weight: 400;
    font-size: 16px;
    color: var(--color-compliance-blue);
    text-transform: none;
}

.venue-rates__note {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.4;
}

.venue-booking__note h3 {
    color: var(--color-avant-red);
}

.venue-booking__note .btn {
    margin-top: 30px;
}

.venue-video__link {
    position: relative;
    display: block;
    margin-top: 30px;
}

.venue-video__link img {
    display: block;
    width: 100%;
    height: auto;
}

.venue-video__button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.venue-neighborhood__columns {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
    margin-top: 30px;
}

.venue-neighborhood__columns ul {
    margin-top: 0;
}

.venue-neighborhood li::before {
    border-left: 3px solid var(--color-compliance-blue);
    border-bottom: 3px solid var(--color-compliance-blue);
}

.venue-location {
    display: flex;
    flex-direction: column;
}

.venue-map {
    display: block;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.venue-map img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.venue-map__address {
    padding: 20px 15px;
    background-color: var(--color-arctic-white);
    text-align: center;
}

.venue-map__address p {
    margin-top: 0;
    font-size: 10px;
    color: var(--color-titanium-gray);
}

.venue-map__address p:first-child {
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.venue-map__address span {
    margin-left: 15px;
}

@media only screen and (min-width: 600px) {
    .venue-hero__logo {
        width: 220px;
    }

    .venue-hero__intro p,
    .venue-covered p,
    .venue-booking__note p {
        font-size: 18px;
    }

    .venue-map__address p {
        font-size: 12px;
    }
}

@media only screen and (min-width: 1000px) {
    .tab-venue-accommodation .w-1-1 {
        flex-direction: row;
    }

    .tab-venue-accommodation .w-1-2 {
        max-width: 50%;
    }

    .venue-gallery {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }

    .venue-neighborhood__columns {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .venue-hero__logo {
        width: 275px;
    }

    .venue-hero__intro p,
    .venue-covered p,
    .venue-booking__note p {
        font-size: 20px;
    }

    .venue-hero__photo {
        margin-bottom: 0;
    }

    .venue-rates {
        flex-direction: row;
        gap: 30px;
    }

    .venue-rates__item {
        max-width: 300px;
    }

    .venue-map__address p {
        font-size: 16px;
    }
}

/**************************************************************************************************************/
/**************************************************************************************************************/
/**************************************************************************************************************/
/* CONFERENCE DETAILS — CONFERENCE ACTIVITIES TAB */
/**************************************************************************************************************/
/**************************************************************************************************************/
/**************************************************************************************************************/
.conference-activities__grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.activity-card {
    background-color: var(--color-mist-blue);
}

.activity-card__header {
    padding: 15px;
}

.activity-card__icon {
    width: 50px;
    height: 50px;
}

.tab-content h4.activity-card__label {
    margin-top: 15px;
    font-family: var(--font-sans);
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    color: var(--color-deepest-blue);
    text-transform: uppercase;
}

p.activity-card__date {
    margin-top: 0;
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 600;
    font-size: 24px;
    color: var(--color-avant-red);
}

.activity-card__image {
    margin-top: 30px;
    width: 100%;
    aspect-ratio: 1 / 1;
}

.activity-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media only screen and (min-width: 1000px) {
    .conference-activities__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .activity-card__header {
        padding: 30px;
    }
}

/**************************************************************************************************************/
/**************************************************************************************************************/
/**************************************************************************************************************/
/* CONFERENCE DETAILS — ORGANIZERS TAB */
/**************************************************************************************************************/
/**************************************************************************************************************/
/**************************************************************************************************************/
.tab-organizers .w-1-1.gap60 {
    flex-direction: column;
}

.tab-organizers .w-1-1.gap60 .w-1-2 {
    max-width: unset;
}

@media only screen and (min-width: 1000px) {
    .tab-organizers .w-1-1.gap60 {
        flex-direction: row;
    }
}

/**************************************************************************************************************/
/**************************************************************************************************************/
/**************************************************************************************************************/
/* PARTNERSHIP */
/**************************************************************************************************************/
/**************************************************************************************************************/
/**************************************************************************************************************/
.partnership .eyebrow {
    display: flex;
    justify-content: center;
}

.partnership__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 10px;
}

.partnership__card {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 112px;
    padding: 10px;
    background-color: var(--color-arctic-white);
}

.partnership__card img {
    max-width: 100%;
    max-height: 100%;
}

@media only screen and (min-width: 600px) {
    .partnership__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media only screen and (min-width: 1000px) {
    .partnership__grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media only screen and (min-width: 1200px) {
    .partnership {
        padding-block: 100px;
    }
}

/**************************************************************************************************************/
/**************************************************************************************************************/
/**************************************************************************************************************/
/* SPONSORSHIP OVERVIEW */
/**************************************************************************************************************/
/**************************************************************************************************************/
/**************************************************************************************************************/
.sponsorship-overview {
    background-color: var(--color-pure-white);
}

.sponsorship-overview .w-1-1.gap60 {
    flex-direction: column;
}

.sponsorship-overview .w-1-1.gap60 .w-1-2 {
    max-width: unset;
}

.sponsorship-overview .btn {
    margin: auto;
}

.content-sub-block {
    margin-bottom: 30px;
}

.content-sub-block h2 {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.2;
    color: var(--color-deepest-blue);
}

.sponsorship-overview .tab-content + .w-1-1 {
    margin-top: 40px;
}

@media only screen and (min-width: 1000px) {
    .sponsorship-overview .w-1-1.gap60 {
        flex-direction: row;
    }
}

@media only screen and (min-width: 1200px) {
    .content-sub-block h2 {
        font-size: 40px;
    }
}

/**************************************************************************************************************/
/**************************************************************************************************************/
/**************************************************************************************************************/
/* SPONSORSHIP PACKAGES */
/**************************************************************************************************************/
/**************************************************************************************************************/
/**************************************************************************************************************/

/* .pricing-card/.tkt-slctr-tbl/.cntr/.tckt-slctr-tbl-td-price/etc. are the
   SAME shared component lp-conference's Registration section already
   defines above — not re-declared here. The one exception is
   .tckt-slctr-tbl-td-name: Registration's row has two lines (a bold title
   + a smaller dates line, styled via a nested <strong>/<span>), while this
   section's row is a single line styled directly on the <td> — same class
   name, genuinely different rule, so it's scoped under .sponsorship-packages
   here to avoid the two sections fighting over one shared selector. */
.sponsorship-packages {
    background-color: var(--color-arctic-white);
}

.sponsorship-packages__block {
    margin-bottom: 60px;
}

.sponsorship-packages__block:last-of-type {
    margin-bottom: 0;
}

.extra-title {
    display: block;
    width: 100%;
    margin: 45px auto -15px auto;
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 18px;
    line-height: 1.25em;
    color: var(--color-deepest-blue);
    text-align: center;
}

.extra-title strong {
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--color-avant-red);
}

.sponsorship-packages__cards {
    flex-direction: column;
    margin-top: 45px;
}

.sponsorship-packages__cards .w-1-3,
.sponsorship-packages__cards .w-1-5 {
    max-width: unset;
}

.pricing-card.compact-mode {
    padding: 20px;
}

.compact-mode .pricing-card__badge {
    left: 20px;
    padding: 5px 10px;
    font-weight: 600;
    font-size: 9px;
}

.compact-mode .pricing-card__subtitle {
    margin-top: 10px;
    font-weight: 600;
    font-size: 12px;
}

.compact-mode .pricing-card__price {
    margin-top: 30px;
    font-size: 36px;
}

.compact-mode .pricing-card__price-currency {
    display: inline-block;
    margin-right: 5px;
    font-size: 18px;
}

.compact-mode .pricing-card__price-suffix {
    margin-top: 1em;
    font-size: 10px;
}

.pricing-card.compact-mode ul {
    gap: 10px;
    margin-top: 30px;
    font-size: 14px;
}

.pricing-card.compact-mode ul li {
    padding-left: 18px;
}

.pricing-card.compact-mode ul li::before {
    top: 4px;
    width: 10px;
    height: 5px;
    border-left: 2px solid var(--color-avant-red);
    border-bottom: 2px solid var(--color-avant-red);
}

.sponsorship-packages__order {
    flex-direction: column;
    margin-top: 60px;
}

.sponsorship-packages__order h2 {
    color: var(--color-avant-red);
}

.tkt-slctr-tbl-group-row td {
    padding: 10px;
    background-color: var(--color-deepest-blue);
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 13px;
    color: var(--color-caribbean-blue);
    text-transform: uppercase;
    letter-spacing: .05em;
}

.sponsorship-packages .tckt-slctr-tbl-td-name {
    font-weight: 700;
    font-size: 14px;
}

.tckt-slctr-tbl-td-select {
    padding: 10px;
}

.ticket-selector-checkbox {
    position: relative;
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 2px solid var(--color-calm-gray);
    background-color: var(--color-pure-white);
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.ticket-selector-checkbox:checked {
    border-color: var(--color-compliance-blue);
    background-color: var(--color-compliance-blue);
}

.ticket-selector-checkbox:checked::after {
    content: "";
    position: absolute;
    top: 5px;
    left: 4px;
    display: block;
    width: 12px;
    height: 6px;
    border-left: 2px solid var(--color-pure-white);
    border-bottom: 2px solid var(--color-pure-white);
    transform: rotate(-45deg);
}

@media only screen and (min-width: 1000px) {
    .sponsorship-packages__cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .sponsorship-packages__cards--compact {
        grid-template-columns: repeat(5, 1fr);
    }

    .tckt-slctr-tbl-td-select {
        padding: 10px 15px;
    }

    .sponsorship-packages .tckt-slctr-tbl-td-name {
        font-size: 16px;
    }
}

@media only screen and (min-width: 1200px) {
    .extra-title {
        margin: 60px auto -15px auto;
        font-size: 21px;
    }

    .extra-title strong {
        font-size: 14px;
    }
}

/**************************************************************************************************************/
/**************************************************************************************************************/
/**************************************************************************************************************/
/* SPONSORSHIP TIERS */
/**************************************************************************************************************/
/**************************************************************************************************************/
/**************************************************************************************************************/
.sponsorship-tiers {
    background-color: var(--color-arctic-white);
}

.sponsorship-tiers h3 {
    margin-top: 60px;
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 600;
    font-size: 24px;
    color: var(--color-compliance-blue);
}

.pricing-table-wrap:first-of-type {
    margin-top: 45px;
}

.pricing-table-scroll {
    margin-top: 20px;
    overflow-x: auto;
}

.pricing-table {
    width: 100%;
    min-width: 600px;
    border-collapse: separate;
    border-spacing: 2px;
}

.pricing-table-wrap h3 + .pricing-table-scroll {
    margin-top: 20px;
}

.pricing-table thead th {
    padding: 10px;
    background-color: var(--color-deepest-blue);
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 13px;
    color: var(--color-pure-white);
    text-align: center;
}

.pricing-table thead th:first-child {
    text-align: left;
}

.pricing-table__tier-price {
    display: inline-block;
    margin-top: 4px;
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
    font-size: 16px;
}

.pricing-table tbody tr {
    background-color: var(--color-arctic-chrome);
}

.pricing-table tbody td {
    padding: 10px;
    font-size: 13px;
    color: var(--color-titanium-gray);
}

.pricing-table tbody td:first-child {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 12px;
    color: var(--color-deepest-blue);
}

.pricing-table .cntr {
    text-align: center;
}

.pricing-table__check {
    display: inline-block;
    width: 12px;
    height: 7px;
    border-left: 2px solid var(--color-avant-red);
    border-bottom: 2px solid var(--color-avant-red);
    transform: rotate(-45deg);
}

@media only screen and (min-width: 1000px) {
    .pricing-table {
        min-width: unset;
    }

    .pricing-table thead th {
        padding: 10px 15px;
        font-size: 14px;
    }

    .pricing-table tbody td {
        padding: 10px 15px;
        font-size: 14px;
    }

    .pricing-table tbody td:first-child {
        font-size: 13px;
    }
}

/**************************************************************************************************************/
/**************************************************************************************************************/
/**************************************************************************************************************/
/* SPONSORSHIP REGISTRATION */
/**************************************************************************************************************/
/**************************************************************************************************************/
/**************************************************************************************************************/
.sponsorship-registration {
    background-color: var(--color-pure-white);
}

.gform_wrapper {
    width: 100%;
    max-width: 740px;
    margin: 45px auto 0;
}

.gform_fields {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.gfield_label,
.gform-field-label {
    display: block;
    margin-bottom: 8px;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 13px;
    color: var(--color-deepest-blue);
}

.gform-field-label--type-sub {
    margin-top: 6px;
    margin-bottom: 0;
    font-weight: 400;
    font-size: 11px;
    color: var(--color-financial-gray);
}

.gfield_required_asterisk {
    margin-left: 4px;
    color: var(--color-avant-red);
}

.gfield_description {
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.4;
    color: var(--color-financial-gray);
}

.ginput_container input[type="text"],
.ginput_container input[type="email"],
.ginput_container select {
    display: block;
    width: 100%;
    height: 44px;
    padding: 0 15px;
    border: 1px solid var(--color-calm-gray);
    background-color: var(--color-pure-white);
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--color-deepest-blue);
    appearance: none;
    -webkit-appearance: none;
}

.ginput_container input:focus,
.ginput_container select:focus {
    border-color: var(--color-compliance-blue);
}

.gform-grid-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.gform-grid-col {
    flex: 1 1 220px;
}

.gform-grid-col--size-auto {
    flex: 1 1 160px;
}

.sponsorship-registration__wire-note {
    font-weight: 700;
    font-size: 14px;
    color: var(--color-compliance-blue);
}

.ginput_stripe_creditcard .gform-theme-field-control {
    height: 44px;
    border: 1px dashed var(--color-calm-gray);
    background-color: var(--color-arctic-white);
}

.ginput_stripe_creditcard + .gfield_description {
    color: var(--color-avant-red);
}

.ginput_container_total {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.ginput_total {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 700;
    font-size: 28px;
    color: var(--color-deepest-blue);
}

.gform_footer {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.gform_footer .gform_button {
    width: 300px;
    max-width: 100%;
    height: 40px;
    border: 2px solid var(--color-avant-red);
    background-color: var(--color-avant-red);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 11px;
    letter-spacing: .25em;
    color: var(--color-pure-white);
    text-transform: uppercase;
}

@media only screen and (min-width: 1200px) {
    .gform_footer .gform_button {
        height: 50px;
        font-size: 16px;
    }
}

/**************************************************************************************************************/
/**************************************************************************************************************/
/**************************************************************************************************************/
/* BIO MODAL */
/**************************************************************************************************************/
/**************************************************************************************************************/
/**************************************************************************************************************/
/* Same fixed-overlay/fade+scale technique as .search-modal — one shared
   modal instance for the whole page, populated by main.js reading straight
   from whichever .speaker-card/.moderator-card was clicked. */
.bio-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    transition-property: visibility;
    transition-duration: 0s;
    transition-delay: .3s;
}

.bio-modal--open {
    visibility: visible;
    transition-delay: 0s;
}

.bio-modal__backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(3, 2, 1, 0);
    transition-property: background-color;
    transition-duration: .3s;
    transition-timing-function: ease;
}

.bio-modal--open .bio-modal__backdrop {
    background-color: rgba(0, 0, 0, .5);
}

.bio-modal__box {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 800px;
    max-height: calc(100vh - 200px);
    margin-inline: var(--grid-side-padding);
    padding: 45px;
    background-color: var(--color-pure-white);
    opacity: 0;
    transform: scale(.96);
    transition-property: transform, opacity;
    transition-duration: .3s;
    transition-timing-function: ease;
}

.bio-modal--open .bio-modal__box {
    opacity: 1;
    transform: scale(1);
}

/* Kept invisible past the open transition above for as long as the Ajax
   response is still pending — printing header/body straight into an
   already-visible box caused a flicker/reflow from the sudden text volume.
   The combined-class selector (not source order) is what guarantees this
   wins over the --open rule above while both classes are present. */
.bio-modal--open.bio-modal--loading .bio-modal__box {
    opacity: 0;
}

.bio-modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 24px;
    height: 24px;
}

.bio-modal__close::before,
.bio-modal__close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-titanium-gray);
    transition-property: background-color;
    transition-duration: .2s;
    transition-timing-function: ease;
}

.bio-modal__close:hover::before,
.bio-modal__close:hover::after {
    background-color: var(--color-avant-red);
}

.bio-modal__close::before {
    transform: rotate(45deg);
}

.bio-modal__close::after {
    transform: rotate(-45deg);
}

.bio-modal__header {
    display: flex;
    flex-shrink: 0;
    gap: 20px;
    padding-right: 30px;
}

.bio-modal__photo {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    object-fit: cover;
}

.bio-modal__name {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.2;
    color: var(--color-deepest-blue);
}

.bio-modal__credentials {
    margin-top: 5px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .05em;
    color: var(--color-compliance-blue);
    text-transform: uppercase;
}

.bio-modal__title {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.4;
    color: var(--color-financial-gray);
}

.bio-modal__body {
    flex-shrink: 1;
    margin-top: 30px;
    padding-right: 15px;
    overflow-y: auto;
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-titanium-gray);
}

.bio-modal__body p + p {
    margin-top: 1em;
}

.bio-modal__error {
    padding: 40px 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-titanium-gray);
    text-align: center;
}

/* Sibling of .bio-modal__backdrop/.bio-modal__box, not nested inside the
   box — centered on the whole screen via .bio-modal (position:fixed,
   inset:0), independent of the box's own size/position. This is what lets
   .bio-modal__box stay fully decoupled: it can sit at opacity:0 for the
   entire loading phase without the spinner being affected by (or fighting
   for space with) whatever the box's previous content left behind. */
.bio-modal__loading {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    width: 32px;
    height: 32px;
    border: 3px solid var(--color-arctic-chrome);
    border-top-color: var(--color-compliance-blue);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: bio-modal-spin .8s linear infinite;
}

.bio-modal--loading .bio-modal__loading {
    display: block;
}

@keyframes bio-modal-spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/**************************************************************************************************************/
/**************************************************************************************************************/
/**************************************************************************************************************/
/* FOOTER */
/**************************************************************************************************************/
/**************************************************************************************************************/
/**************************************************************************************************************/
.site-footer {
    background: linear-gradient(135deg, var(--color-deepest-blue), var(--color-compliance-blue));
    color: var(--color-pure-white);
}

.site-footer__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 60px;
    padding-block: 100px 60px;
}

.site-footer__brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 340px;
}

.site-footer__logo {
    display: block;
}

.site-footer__logo img {
    width: 220px;
    height: auto;
}

.site-footer__tagline {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.4;
}

.site-footer__date {
    font-family: var(--font-sans);
    font-size: 14px;
}

.site-footer .eyebrow p {
    color: var(--color-pure-white);
}

.site-footer__col {
    min-width: 160px;
}

.site-footer__col-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
    font-family: var(--font-sans);
    font-size: 14px;
}

.site-footer__col-list a {
    transition: color .2s ease;
}

.site-footer__col-list a:hover {
    color: var(--color-caribbean-blue);
}

.site-footer__col-list + .eyebrow {
    margin-top: 30px;
}

.site-footer__col .social-icons {
    margin-top: 20px;
}

.site-footer__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-block: 15px;
    border-top: 1px solid rgba(255, 255, 255, .2);
    font-family: var(--font-sans);
}

.site-footer__copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, .7);
}

.site-footer__credit {
    display: block;
    opacity: .7;
    transition: opacity .2s ease;
}

.site-footer__credit:hover {
    opacity: 1;
}

.site-footer__credit img {
    width: 32px;
    height: auto;
}

@media only screen and (min-width: 1000px) {
    .site-footer__bottom {
        flex-direction: row;
        gap: 20px;
    }
}