/* Tradeshow detail page — page-level polish (tradeshow_detail.blade.php only).

   Everything is scoped under .tsd (the page wrapper) because the hero,
   article, FAQ, quote-form and CTA classes are shared with
   blog_detail.blade.php and must not change there. Base rules still live in
   style.css / responsive.css / quote_request.css; this only refines them.

   - Consistent side gutters for every contained section (article + quote
     form, builders band, testimonials): the homepage rule — clear the fixed
     "Get your 3 quotes now" tab, 30px below 768px / 45px from 768px, both
     sides. Hero, CTA and footer stay full-bleed.
   - Premium-but-B2B finish: hairline borders, soft layered shadows, one
     heading system (eyebrow + title), restrained motion.
   - Motion: scroll reveals ([data-tsd-reveal] → .is-in, see
     tradeshow_detail.js), hover lifts, smooth FAQ accordion, button arrows.
     All of it is switched off under prefers-reduced-motion. */

.tsd {
    --tsd-green: #0C2E16;
    --tsd-green-2: #16462A;
    --tsd-green-hover: #234B2B;
    --tsd-lime: #CFFF7F;
    --tsd-navy: #0C1633;
    --tsd-text: #374151;
    --tsd-muted: #6B7280;
    --tsd-line: #E6E9E4;
    --tsd-soft: #F5F7F3;
    --tsd-bg: #FAFBF9;
    --tsd-gutter: 30px;
    --tsd-radius: 20px;
    --tsd-shadow: 0 1px 1px rgba(12, 46, 22, 0.04), 0 4px 10px -4px rgba(12, 46, 22, 0.06), 0 24px 48px -28px rgba(12, 46, 22, 0.16);
    --tsd-ease: cubic-bezier(0.2, 0.7, 0.2, 1);

    display: flow-root; /* contains the floated legacy sections */
    font-family: 'Outfit', sans-serif;
}
@media (min-width: 768px) {
    .tsd { --tsd-gutter: 45px; }
}

/* shared heading system (eyebrow pill + title) — same look as the builders band */
.tsd .tsd-eyebrow {
    display: inline-block;
    margin: 0;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(12, 46, 22, 0.12);
    background: rgba(255, 255, 255, 0.75);
    font-size: 12px;
    line-height: 16px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(12, 46, 22, 0.7);
}
.tsd .tsd-head {
    max-width: 768px;
    margin: 0 auto 40px;
    text-align: center;
}
.tsd .tsd-title {
    margin: 16px 0 0;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--tsd-green);
    text-wrap: balance;
}
@media (min-width: 640px) {
    .tsd .tsd-title { font-size: 40px; }
}

/* =========================== HERO =========================== */
/* same side gutter as the rest of the page, so the content clears the fixed
   "Get your 3 quotes now" tab (the legacy 4% overlapped it on phones) */
.tsd .trad_sho_detl1 {
    padding-left: var(--tsd-gutter);
    padding-right: var(--tsd-gutter);
}
.tsd .trad_sho_detl1 .left-box {
    animation: tsd-rise 0.8s var(--tsd-ease) both;
}
.tsd .trad_sho_detl1 h1 {
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.12;
    color: var(--tsd-green);
    text-wrap: balance;
}
.tsd .trad_sho_detl1 h2 {
    color: var(--tsd-green);
    opacity: 0.85;
}
.tsd .trad_sho_detl1 p {
    color: #1F3A2A;
}
.tsd .trad_sho_detl1 .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-weight: 600;
    box-shadow: 0 10px 24px -12px rgba(12, 46, 22, 0.7);
    transition: transform 0.3s var(--tsd-ease), box-shadow 0.3s ease, background 0.3s ease;
}
.tsd .trad_sho_detl1 .btn svg,
.tsd .footer_last .cta_btn svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.3s var(--tsd-ease);
}
.tsd .trad_sho_detl1 .btn:hover {
    background: var(--tsd-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 16px 30px -12px rgba(12, 46, 22, 0.75);
}
.tsd .trad_sho_detl1 .btn:hover svg,
.tsd .footer_last .cta_btn:hover svg {
    transform: translateX(4px);
}

/* countdown: brand dark green glass instead of slate */
.tsd .trad_sho_detl1 .count-wrapper {
    box-sizing: border-box;
    width: 380px;
    max-width: 100%; /* legacy fixed 380px overflowed phones */
    padding: 18px 20px 22px;
    border-radius: var(--tsd-radius);
    background: linear-gradient(160deg, rgba(12, 46, 22, 0.94) 0%, rgba(8, 30, 15, 0.96) 100%);
    border: 1px solid rgba(207, 255, 127, 0.18);
    box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.6);
    animation: tsd-rise 0.8s var(--tsd-ease) 0.15s both;
}
@supports (backdrop-filter: blur(8px)) {
    .tsd .trad_sho_detl1 .count-wrapper {
        backdrop-filter: blur(8px);
    }
}
.tsd .trad_sho_detl1 .count-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.75);
}
.tsd .trad_sho_detl1 .count-header::before {
    content: "";
    width: 8px;
    height: 8px;
    margin: 0;
    border-radius: 50%;
    background: var(--tsd-lime);
    box-shadow: 0 0 0 0 rgba(207, 255, 127, 0.6);
    animation: tsd-pulse 2s ease-out infinite;
}
.tsd .trad_sho_detl1 .tbox {
    padding: 12px 4px 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.tsd .trad_sho_detl1 .tbox .num {
    font-size: 30px;
    line-height: 1.1;
    font-variant-numeric: tabular-nums;
    color: #fff;
}
.tsd .trad_sho_detl1 .tbox .lbl {
    margin-top: 4px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: var(--tsd-lime);
    opacity: 0.85;
}
/* phones: a slimmer countdown — smaller numbers, tighter boxes, softer shadow */
@media (max-width: 600px) {
    .tsd .trad_sho_detl1 .count-wrapper {
        width: 100%;
        padding: 14px 14px 16px;
        border-radius: 16px;
        box-shadow: 0 14px 28px -18px rgba(0, 0, 0, 0.45);
    }
    .tsd .trad_sho_detl1 .count-header {
        margin-bottom: 10px;
        font-size: 11px;
        letter-spacing: 0.16em;
    }
    .tsd .trad_sho_detl1 .timer-grid {
        gap: 8px;
    }
    .tsd .trad_sho_detl1 .tbox {
        padding: 9px 2px 8px;
        border-radius: 10px;
    }
    .tsd .trad_sho_detl1 .tbox .num {
        font-size: 22px;
    }
    .tsd .trad_sho_detl1 .tbox .lbl {
        margin-top: 2px;
        font-size: 10px;
        letter-spacing: 0.1em;
    }
}

@media (max-width: 360px) {
    .tsd .trad_sho_detl1 .count-wrapper {
        padding: 12px 10px 14px;
    }
    .tsd .trad_sho_detl1 .timer-grid {
        gap: 6px;
    }
    .tsd .trad_sho_detl1 .tbox .num {
        font-size: 20px;
    }
    .tsd .trad_sho_detl1 .tbox .lbl {
        font-size: 9px;
        letter-spacing: 0.08em;
    }
}

/* ================ MAIN: article + quote form ================ */
.tsd .trad_sho_detl2 {
    padding: 56px var(--tsd-gutter) 72px;
    gap: 32px;
    justify-content: space-between;
    background: var(--tsd-bg);
}
.tsd .trad_sho_detl2 > .clear {
    display: none; /* legacy float-clearer; as a flex item it pushed the form off the gutter */
}
.tsd .trad_sho_detl2 > .left {
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
}
.tsd .trad_sho_detl2 > .right {
    flex: 0 0 440px;
    width: 440px;
    position: sticky;
    top: 88px; /* sticky site header (65px) + breathing room */
}
/* while the visitor works in the form: scrolls with the page, pinned at the
   spot it was stuck at (tradeshow_detail.js sets --tsd-release-top) */
.tsd .trad_sho_detl2 > .right.is-released {
    position: relative;
    top: var(--tsd-release-top, 0px);
}
@media (max-width: 1100px) {
    .tsd .trad_sho_detl2 > .left,
    .tsd .trad_sho_detl2 > .right {
        flex-basis: auto;
        width: 100%;
    }
    .tsd .trad_sho_detl2 > .right {
        position: static;
    }
}

.tsd .Left_inner,
.tsd .detl_faq {
    padding: 44px 48px;
    border-radius: var(--tsd-radius);
    background: #fff;
    border: 1px solid var(--tsd-line);
    box-shadow: var(--tsd-shadow);
}
@media (max-width: 767px) {
    .tsd .Left_inner,
    .tsd .detl_faq {
        padding: 26px 20px;
    }
}

.tsd .detl_main_h2_main {
    margin: 0 0 24px;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--tsd-green);
}

/* key facts — 3 stat cards over one wide venue card (full address + map
   link). Selectors carry .Left_inner ul/li weight on purpose: most shows'
   stored seo_script <style> sets `.trad_sho_detl2 .Left_inner ul/li`
   (list-style, 40px indent, 18px text) and loads after this file. */
.tsd .Left_inner ul.tsd-facts {
    list-style: none;
    margin: 0 0 40px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.tsd .Left_inner ul.tsd-facts > li.tsd-fact {
    position: relative;
    margin: 0;
    display: flex;
    flex-direction: column;
    padding: 20px 22px 18px;
    border-radius: 16px;
    border: 1px solid var(--tsd-line);
    background: linear-gradient(180deg, #F6F9F2 0%, #FFFFFF 70%);
    font-size: 15px;
    color: var(--tsd-text);
    overflow: hidden;
    transition: opacity 0.7s var(--tsd-ease), transform 0.35s var(--tsd-ease), border-color 0.3s ease, box-shadow 0.35s ease;
    transition-delay: var(--tsd-delay, 0s), 0s, 0s, 0s;
}
.tsd .Left_inner ul.tsd-facts > li.tsd-fact:hover {
    transform: translateY(-3px);
    border-color: rgba(12, 46, 22, 0.28);
    box-shadow: 0 18px 36px -22px rgba(12, 46, 22, 0.45);
}
.tsd .tsd-fact__top {
    display: flex;
    align-items: center;
    gap: 10px;
}
.tsd .tsd-fact__icon {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--tsd-green);
    color: var(--tsd-lime);
    transition: transform 0.35s var(--tsd-ease);
}
.tsd .tsd-fact:hover .tsd-fact__icon {
    transform: rotate(-6deg) scale(1.06);
}
.tsd .tsd-fact__icon svg,
.tsd .tsd-fact__pin svg,
.tsd .tsd-fact__map svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.tsd .tsd-fact__icon svg {
    width: 17px;
    height: 17px;
}
.tsd .tsd-fact__lbl {
    font-size: 11px;
    line-height: 14px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--tsd-muted);
}
.tsd .tsd-fact__val {
    margin-top: 16px;
    font-size: 26px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--tsd-green);
    font-variant-numeric: tabular-nums;
}
.tsd .tsd-fact__sub {
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.4;
    color: var(--tsd-muted);
}

/* the wide venue card — dark, so the full address reads as the anchor */
.tsd .Left_inner ul.tsd-facts > li.tsd-fact--place {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    gap: 18px;
    padding: 22px 24px;
    border-color: transparent;
    background:
        radial-gradient(420px 160px at 100% 0%, rgba(207, 255, 127, 0.16), transparent 70%),
        linear-gradient(135deg, #0C2E16 0%, #10391D 100%);
    color: #fff;
}
.tsd .Left_inner ul.tsd-facts > li.tsd-fact--place::before {
    /* faint blueprint grid, same motif as the bottom CTA */
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 28px 28px;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 55%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 55%);
    pointer-events: none;
}
.tsd .Left_inner ul.tsd-facts > li.tsd-fact--place:hover {
    border-color: transparent;
    box-shadow: 0 22px 40px -22px rgba(12, 46, 22, 0.7);
}
.tsd .tsd-fact__pin {
    position: relative;
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--tsd-lime);
    color: var(--tsd-green);
    transition: transform 0.35s var(--tsd-ease);
}
.tsd .tsd-fact--place:hover .tsd-fact__pin {
    transform: translateY(-2px);
}
.tsd .tsd-fact__pin svg {
    width: 24px;
    height: 24px;
}
.tsd .tsd-fact__place {
    position: relative;
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.tsd .tsd-fact--place .tsd-fact__lbl {
    color: rgba(207, 255, 127, 0.8);
}
.tsd .tsd-fact__venue {
    margin-top: 2px;
    font-size: 20px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #fff;
}
.tsd .tsd-fact__addr {
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.75);
}
.tsd .tsd-fact__map {
    position: relative;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 11px 18px;
    border-radius: 999px;
    border: 1px solid rgba(207, 255, 127, 0.5);
    color: var(--tsd-lime);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.tsd .tsd-fact__map svg {
    width: 15px;
    height: 15px;
    transition: transform 0.3s var(--tsd-ease);
}
.tsd .tsd-fact__map:hover,
.tsd .tsd-fact__map:focus-visible {
    transform: none; /* cancel style.css's global a:hover scale */
    background: var(--tsd-lime);
    border-color: var(--tsd-lime);
    color: var(--tsd-green);
}
.tsd .tsd-fact__map:hover svg {
    transform: translate(2px, -2px);
}

@media (max-width: 640px) {
    .tsd .Left_inner ul.tsd-facts {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .tsd .Left_inner ul.tsd-facts > li.tsd-fact {
        padding: 16px 18px;
    }
    .tsd .tsd-fact__val {
        margin-top: 12px;
        font-size: 22px;
    }
    .tsd .Left_inner ul.tsd-facts > li.tsd-fact--place {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 20px 18px;
    }
    .tsd .tsd-fact__map {
        width: 100%;
        justify-content: center;
    }
}

/* ===================== ARTICLE (full_description) =====================
   A complete style set for everything the CKEditor 5 article can contain —
   typography, lists, blockquote, tables (figure.table), images
   (figure.image, side/resized, bare <img>), hr, code. Self-sufficient, so the
   stored per-show seo_script <style> (255 of 303 shows) can be deleted
   without the article changing. Until then these selectors are weighted
   (.tsd .trad_sho_detl2 .Left_inner .tsd-prose …) to win over it: it loads
   after this file and uses up to `.trad_sho_detl2 .Left_inner .table
   tr:nth-child(even) td`. Test page (local only):
   /tradeshow/style-test-all-article-elements. */

.tsd .trad_sho_detl2 .Left_inner .tsd-prose {
    color: var(--tsd-text);
    font-size: 18px;
    line-height: 1.7;
    overflow-wrap: break-word;
}
.tsd .trad_sho_detl2 .Left_inner .tsd-prose::after {
    /* contain floated side images */
    content: "";
    display: table;
    clear: both;
}

/* ---- text ---- */
.tsd .trad_sho_detl2 .Left_inner .tsd-prose p {
    display: block; /* style.css's `.left p` is inline-block, which can't wrap around side images */
    width: auto;
    margin: 0 0 20px;
    font-size: 18px;
    line-height: 1.7;
    color: var(--tsd-text);
}
.tsd .trad_sho_detl2 .Left_inner .tsd-prose strong,
.tsd .trad_sho_detl2 .Left_inner .tsd-prose b {
    font-weight: 700;
    color: var(--tsd-navy);
}
.tsd .trad_sho_detl2 .Left_inner .tsd-prose h2,
.tsd .trad_sho_detl2 .Left_inner .tsd-prose h3,
.tsd .trad_sho_detl2 .Left_inner .tsd-prose h4,
.tsd .trad_sho_detl2 .Left_inner .tsd-prose h5,
.tsd .trad_sho_detl2 .Left_inner .tsd-prose h6 {
    font-weight: 700;
    color: var(--tsd-navy);
    text-wrap: balance;
}
.tsd .trad_sho_detl2 .Left_inner .tsd-prose h2 {
    clear: both;
    margin: 44px 0 14px;
    font-size: 26px;
    line-height: 1.25;
    letter-spacing: -0.015em;
}
.tsd .trad_sho_detl2 .Left_inner .tsd-prose > h2:first-child {
    margin-top: 0;
}
.tsd .trad_sho_detl2 .Left_inner .tsd-prose h3 {
    margin: 32px 0 10px;
    font-size: 21px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}
.tsd .trad_sho_detl2 .Left_inner .tsd-prose h4 {
    margin: 26px 0 8px;
    font-size: 18px;
    line-height: 1.35;
}
.tsd .trad_sho_detl2 .Left_inner .tsd-prose h5,
.tsd .trad_sho_detl2 .Left_inner .tsd-prose h6 {
    margin: 24px 0 8px;
    font-size: 13px;
    line-height: 1.4;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--tsd-green);
}
.tsd .trad_sho_detl2 .Left_inner .tsd-prose h6 {
    color: var(--tsd-muted);
}
/* headings directly under a heading don't need the big top gap */
.tsd .trad_sho_detl2 .Left_inner .tsd-prose :is(h2, h3, h4) + :is(h3, h4, h5, h6) {
    margin-top: 12px;
}

/* ---- links ---- */
.tsd .trad_sho_detl2 .Left_inner .tsd-prose a {
    color: var(--tsd-green);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 3px;
    text-decoration-color: rgba(12, 46, 22, 0.35);
    transition: text-decoration-color 0.2s ease, background-color 0.2s ease;
}
.tsd .trad_sho_detl2 .Left_inner .tsd-prose a:hover {
    transform: none; /* cancel style.css's global a:hover scale on inline links */
    text-decoration-color: var(--tsd-green);
    background-color: rgba(207, 255, 127, 0.45);
}

/* ---- lists — kept simple: native disc / decimal markers, brand-coloured ---- */
.tsd .trad_sho_detl2 .Left_inner .tsd-prose ul,
.tsd .trad_sho_detl2 .Left_inner .tsd-prose ol {
    margin: 0 0 22px;
    padding: 0 0 0 26px;
}
.tsd .trad_sho_detl2 .Left_inner .tsd-prose ul {
    list-style: disc;
}
.tsd .trad_sho_detl2 .Left_inner .tsd-prose ul ul {
    list-style: circle;
}
.tsd .trad_sho_detl2 .Left_inner .tsd-prose ul ul ul {
    list-style: square;
}
.tsd .trad_sho_detl2 .Left_inner .tsd-prose ol {
    list-style: decimal;
}
.tsd .trad_sho_detl2 .Left_inner .tsd-prose ol ol {
    list-style: lower-alpha;
}
.tsd .trad_sho_detl2 .Left_inner .tsd-prose li {
    margin: 0 0 8px;
    padding-left: 4px;
    font-size: 18px;
    line-height: 1.6;
    color: var(--tsd-text);
}
.tsd .trad_sho_detl2 .Left_inner .tsd-prose li::marker {
    color: var(--tsd-green);
}
.tsd .trad_sho_detl2 .Left_inner .tsd-prose ol > li::marker {
    font-weight: 700;
}
.tsd .trad_sho_detl2 .Left_inner .tsd-prose li > ul,
.tsd .trad_sho_detl2 .Left_inner .tsd-prose li > ol {
    margin: 8px 0 0;
}

/* ---- blockquote ---- */
.tsd .trad_sho_detl2 .Left_inner .tsd-prose blockquote {
    position: relative;
    margin: 32px 0;
    padding: 26px 30px 24px 84px;
    border: 1px solid var(--tsd-line);
    border-radius: 16px;
    background: var(--tsd-soft);
    font-style: normal;
}
.tsd .trad_sho_detl2 .Left_inner .tsd-prose blockquote::before {
    content: "\201C";
    position: absolute;
    left: 26px;
    top: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 14px;
    border-radius: 12px;
    background: var(--tsd-green);
    color: var(--tsd-lime);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 44px;
    line-height: 1;
}
.tsd .trad_sho_detl2 .Left_inner .tsd-prose blockquote p {
    margin: 0 0 12px;
    font-size: 20px;
    line-height: 1.55;
    font-weight: 500;
    color: var(--tsd-navy);
}
.tsd .trad_sho_detl2 .Left_inner .tsd-prose blockquote p:last-child {
    margin-bottom: 0;
}
/* a short last paragraph after the quote reads as the attribution */
.tsd .trad_sho_detl2 .Left_inner .tsd-prose blockquote p:last-child:not(:first-child) {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--tsd-muted);
}

/* ---- tables ---- */
.tsd .trad_sho_detl2 .Left_inner .tsd-prose figure.table,
.tsd .trad_sho_detl2 .Left_inner .tsd-prose .table,
.tsd .trad_sho_detl2 .Left_inner .tsd-prose > table {
    clear: both;
    display: block;
    width: 100%;
    margin: 28px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid var(--tsd-line);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 24px -20px rgba(12, 46, 22, 0.35);
}
.tsd .trad_sho_detl2 .Left_inner .tsd-prose table {
    width: 100%;
    min-width: 520px; /* scroll on phones instead of crushing columns */
    border-collapse: collapse;
    table-layout: auto;
    font-size: 15px;
    line-height: 1.5;
}
.tsd .trad_sho_detl2 .Left_inner .tsd-prose > table {
    display: table;
}
.tsd .trad_sho_detl2 .Left_inner .tsd-prose .table table th,
.tsd .trad_sho_detl2 .Left_inner .tsd-prose table th {
    padding: 14px 16px;
    border: 0;
    background: var(--tsd-green);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: left;
    vertical-align: bottom;
    white-space: nowrap;
}
.tsd .trad_sho_detl2 .Left_inner .tsd-prose .table table td,
.tsd .trad_sho_detl2 .Left_inner .tsd-prose table td {
    padding: 14px 16px;
    border: 0;
    border-top: 1px solid var(--tsd-line);
    color: var(--tsd-text);
    vertical-align: top;
    background: #fff;
    transition: background 0.2s ease;
}
.tsd .trad_sho_detl2 .Left_inner .tsd-prose .table table tr:nth-child(even) td,
.tsd .trad_sho_detl2 .Left_inner .tsd-prose table tr:nth-child(even) td {
    background: #F8FAF6;
}
.tsd .trad_sho_detl2 .Left_inner .tsd-prose .table table tbody tr:first-child td,
.tsd .trad_sho_detl2 .Left_inner .tsd-prose table tbody tr:first-child td {
    border-top: 0;
}
.tsd .trad_sho_detl2 .Left_inner .tsd-prose .table table tbody tr:hover td,
.tsd .trad_sho_detl2 .Left_inner .tsd-prose table tbody tr:hover td {
    background: rgba(207, 255, 127, 0.28);
}
.tsd .trad_sho_detl2 .Left_inner .tsd-prose table td:first-child {
    font-weight: 600;
    color: var(--tsd-green);
}
.tsd .trad_sho_detl2 .Left_inner .tsd-prose figure.table > figcaption {
    padding: 10px 16px;
    border-top: 1px solid var(--tsd-line);
    background: var(--tsd-soft);
    font-size: 13px;
    line-height: 1.5;
    color: var(--tsd-muted);
    caption-side: bottom;
}

/* ---- images ---- */
.tsd .trad_sho_detl2 .Left_inner .tsd-prose img {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
}
.tsd .trad_sho_detl2 .Left_inner .tsd-prose figure.image {
    clear: both;
    display: block;
    margin: 30px 0;
    padding: 0;
}
.tsd .trad_sho_detl2 .Left_inner .tsd-prose figure.image img {
    display: block;
    width: 100%;
    box-shadow: 0 18px 40px -26px rgba(12, 46, 22, 0.45);
}
.tsd .trad_sho_detl2 .Left_inner .tsd-prose figure.image > figcaption {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--tsd-muted);
}
.tsd .trad_sho_detl2 .Left_inner .tsd-prose figure.image > figcaption::before {
    content: "";
    flex: 0 0 16px;
    height: 2px;
    margin-top: 0.7em;
    background: var(--tsd-lime);
    box-shadow: 0 0 0 1px var(--tsd-green);
}
/* CKEditor side / aligned / resized images (width comes inline) */
.tsd .trad_sho_detl2 .Left_inner .tsd-prose figure.image.image-style-side,
.tsd .trad_sho_detl2 .Left_inner .tsd-prose figure.image.image-style-align-right {
    clear: none;
    float: right;
    max-width: 50%;
    margin: 6px 0 20px 28px;
}
.tsd .trad_sho_detl2 .Left_inner .tsd-prose figure.image.image-style-align-left {
    clear: none;
    float: left;
    max-width: 50%;
    margin: 6px 28px 20px 0;
}
.tsd .trad_sho_detl2 .Left_inner .tsd-prose figure.image.image-style-align-center {
    margin-left: auto;
    margin-right: auto;
}
.tsd .trad_sho_detl2 .Left_inner .tsd-prose figure.image_resized {
    max-width: 100%;
}
/* older content: a bare <img> dropped inside a paragraph */
.tsd .trad_sho_detl2 .Left_inner .tsd-prose p > img {
    display: block;
    width: 100%;
    margin: 18px 0 4px;
    box-shadow: 0 18px 40px -26px rgba(12, 46, 22, 0.45);
}
/* media embeds */
.tsd .trad_sho_detl2 .Left_inner .tsd-prose figure.media,
.tsd .trad_sho_detl2 .Left_inner .tsd-prose iframe {
    display: block;
    width: 100%;
    margin: 30px 0;
    border: 0;
    border-radius: 14px;
    overflow: hidden;
}
.tsd .trad_sho_detl2 .Left_inner .tsd-prose iframe {
    aspect-ratio: 16 / 9;
    height: auto;
}

/* ---- hr ---- */
.tsd .trad_sho_detl2 .Left_inner .tsd-prose hr {
    clear: both;
    height: 1px;
    margin: 44px 0;
    border: 0;
    background: linear-gradient(90deg, transparent, var(--tsd-line) 12%, var(--tsd-line) 88%, transparent);
}

/* ---- code ---- */
.tsd .trad_sho_detl2 .Left_inner .tsd-prose code {
    padding: 2px 7px;
    border: 1px solid var(--tsd-line);
    border-radius: 6px;
    background: var(--tsd-soft);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.86em;
    color: var(--tsd-green);
}
.tsd .trad_sho_detl2 .Left_inner .tsd-prose pre {
    clear: both;
    margin: 28px 0;
    padding: 20px 24px;
    overflow-x: auto;
    border-radius: 14px;
    background: #0C2E16;
    color: #E6F6D2;
    font-size: 14px;
    line-height: 1.65;
}
.tsd .trad_sho_detl2 .Left_inner .tsd-prose pre code {
    padding: 0;
    border: 0;
    background: none;
    color: inherit;
    font-size: inherit;
}

@media (max-width: 767px) {
    .tsd .trad_sho_detl2 .Left_inner .tsd-prose,
    .tsd .trad_sho_detl2 .Left_inner .tsd-prose p,
    .tsd .trad_sho_detl2 .Left_inner .tsd-prose li {
        font-size: 16px;
    }
    .tsd .trad_sho_detl2 .Left_inner .tsd-prose h2 {
        margin-top: 34px;
        font-size: 22px;
    }
    .tsd .trad_sho_detl2 .Left_inner .tsd-prose h3 {
        font-size: 19px;
    }
    .tsd .trad_sho_detl2 .Left_inner .tsd-prose h4 {
        font-size: 17px;
    }
    .tsd .trad_sho_detl2 .Left_inner .tsd-prose blockquote {
        padding: 70px 20px 20px;
    }
    .tsd .trad_sho_detl2 .Left_inner .tsd-prose blockquote::before {
        left: 20px;
        top: 20px;
    }
    .tsd .trad_sho_detl2 .Left_inner .tsd-prose blockquote p {
        font-size: 18px;
    }
    /* side images go full width on phones */
    .tsd .trad_sho_detl2 .Left_inner .tsd-prose figure.image.image-style-side,
    .tsd .trad_sho_detl2 .Left_inner .tsd-prose figure.image.image-style-align-right,
    .tsd .trad_sho_detl2 .Left_inner .tsd-prose figure.image.image-style-align-left {
        float: none;
        width: 100% !important;
        max-width: 100%;
        margin: 24px 0;
    }
}

/* the article's second half, after the builders section
   (tradeshow_detail.blade.php, App\Services\TradeshowArticleSplit) */
.tsd .trad_sho_detl2 .Left_inner.tsd-article-cont {
    margin-top: 32px;
}

/* FAQ */
.tsd .detl_faq {
    max-width: none;
    margin-top: 32px;
    text-align: left;
}
.tsd .detl_faq .faq_title {
    margin: 0;
    font-size: 32px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--tsd-green);
}
.tsd .detl_faq .faq_box {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.tsd .detl_faq .faq_item {
    margin: 0;
    padding: 0;
    border-radius: 14px;
    border: 1px solid var(--tsd-line);
    background: #fff;
    transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.tsd .detl_faq .faq_item:hover {
    background: var(--tsd-soft);
    border-color: rgba(12, 46, 22, 0.22);
}
.tsd .detl_faq .faq_item.active {
    background: #fff;
    border-color: rgba(12, 46, 22, 0.35);
    box-shadow: 0 14px 30px -20px rgba(12, 46, 22, 0.4);
}
.tsd .detl_faq .faq_q {
    gap: 16px;
    padding: 18px 20px 18px 22px;
    border-radius: 14px;
}
.tsd .detl_faq .faq_q:focus-visible {
    outline: 2px solid var(--tsd-green);
    outline-offset: 2px;
}
.tsd .detl_faq .faq_t_det {
    margin: 0;
    font-size: 17px;
    line-height: 1.4;
    font-weight: 600;
    color: var(--tsd-navy);
}
.tsd .detl_faq .faq_icon {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--tsd-soft);
    color: var(--tsd-green);
    transition: transform 0.4s var(--tsd-ease), background 0.3s ease, color 0.3s ease;
}
.tsd .detl_faq .faq_icon svg {
    width: 14px;
    height: 14px;
}
.tsd .detl_faq .faq_item:hover .faq_icon {
    background: rgba(207, 255, 127, 0.6);
}
.tsd .detl_faq .faq_item.active .faq_icon {
    transform: rotate(180deg);
    background: var(--tsd-green);
    color: var(--tsd-lime);
}
/* smooth open/close to the answer's real height (grid-rows 0fr → 1fr),
   instead of the base max-height:600px guess */
.tsd .detl_faq .faq_a {
    display: grid !important;
    grid-template-rows: 0fr;
    max-height: none;
    margin: 0;
    opacity: 0;
    transition: grid-template-rows 0.4s var(--tsd-ease), opacity 0.3s ease;
}
.tsd .detl_faq .faq_a > .faq_a_p {
    min-height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0 22px;
    font-size: 16px;
    line-height: 1.65;
    color: var(--tsd-text);
    transition: padding 0.4s var(--tsd-ease);
}
.tsd .detl_faq .faq_item.active .faq_a {
    grid-template-rows: 1fr;
    max-height: none; /* the legacy 600px cap cut long answers off on phones */
    margin: 0;
    opacity: 1;
}
.tsd .detl_faq .faq_item.active .faq_a > .faq_a_p {
    padding: 0 22px 20px;
}

/* quote form */
.tsd .form_2 .quote-form {
    padding: 28px 24px 26px;
    margin-bottom: 0;
    border-radius: var(--tsd-radius);
    border: 1px solid var(--tsd-line);
    box-shadow: var(--tsd-shadow);
}
.tsd .form_2 .form-title {
    margin-bottom: 18px;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.015em;
    color: var(--tsd-green);
}
.tsd .form_2 .form-control {
    border-radius: 10px;
    border-color: #DDE2DA;
    background-color: #FBFCFA;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.tsd .form_2 .form-control:hover {
    border-color: #C7CFC3;
}
.tsd .form_2 .form-control:focus {
    border-color: var(--tsd-green);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(207, 255, 127, 0.75);
}
.tsd .form_2 .btn-submit {
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 14px 16px;
    background: var(--tsd-green);
    color: #fff;
    box-shadow: 0 12px 24px -14px rgba(12, 46, 22, 0.8);
    transition: transform 0.3s var(--tsd-ease), box-shadow 0.3s ease, background 0.3s ease;
}
.tsd .form_2 .btn-submit:hover {
    background: var(--tsd-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 18px 30px -14px rgba(12, 46, 22, 0.85);
}
.tsd .form_2 .btn-submit:active {
    transform: translateY(0);
}

/* human check: question + a compact answer box on one line (answers are 1–3 digits) */
.tsd .form_2 .form-group:has(#captcha_answer) {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 12px;
}
.tsd .form_2 #captchaLabel {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--tsd-navy);
}
.tsd .form_2 #captcha_answer {
    flex: 0 0 132px;
    width: 132px;
    padding-left: 8px;
    padding-right: 8px;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.04em;
}
.tsd .form_2 #captcha_answer::placeholder {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0;
}
.tsd .form_2 .form-group:has(#captcha_answer) .field-error {
    flex-basis: 100%;
}

/* file upload: styled drop zone + file list (tradeshow_detail.js enhances the
   form's own booth_file[] input; the old "20MB" helper line is replaced by the
   zone's hint, which states the server's real limits) */
.tsd .form_2 .small-text:has(+ .file-group) {
    display: none;
}
.tsd .form_2 .tsd-upload {
    position: relative;
    margin-top: 4px;
}
.tsd .form_2 .tsd-upload .file-input {
    /* visually hidden, still focusable and submitted with the form */
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
}
.tsd .form_2 .tsd-upload__zone {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 14px;
    border: 1.5px dashed #C9D3C4;
    border-radius: 12px;
    background: #FBFCFA;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.tsd .form_2 .tsd-upload__zone:hover,
.tsd .form_2 .tsd-upload__zone.is-drag {
    border-color: var(--tsd-green);
    background: rgba(207, 255, 127, 0.18);
}
.tsd .form_2 .tsd-upload:focus-within .tsd-upload__zone {
    border-color: var(--tsd-green);
    box-shadow: 0 0 0 3px rgba(207, 255, 127, 0.75);
}
.tsd .form_2 .tsd-upload__icon {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--tsd-green);
    color: var(--tsd-lime);
    transition: transform 0.25s var(--tsd-ease);
}
.tsd .form_2 .tsd-upload__zone:hover .tsd-upload__icon,
.tsd .form_2 .tsd-upload__zone.is-drag .tsd-upload__icon {
    transform: translateY(-2px);
}
.tsd .form_2 .tsd-upload svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.tsd .form_2 .tsd-upload__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.tsd .form_2 .tsd-upload__title {
    font-size: 14px;
    color: var(--tsd-text);
}
.tsd .form_2 .tsd-upload__title strong {
    color: var(--tsd-green);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(12, 46, 22, 0.3);
}
.tsd .form_2 .tsd-upload__hint {
    font-size: 12px;
    line-height: 1.4;
    color: var(--tsd-muted);
}

.tsd .form_2 .tsd-upload__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.tsd .form_2 .tsd-upload.has-files .tsd-upload__list {
    margin-top: 8px;
}
.tsd .form_2 .tsd-upload__file {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 6px 6px 6px 6px;
    border: 1px solid var(--tsd-line);
    border-radius: 10px;
    background: #fff;
    animation: tsd-file-in 0.25s ease both;
}
.tsd .form_2 .tsd-upload__file.is-bad {
    border-color: #e63946;
    background: #fff6f6;
}
@keyframes tsd-file-in {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: none; }
}
.tsd .form_2 .tsd-upload__thumb {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--tsd-soft);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.tsd .form_2 .tsd-upload__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tsd .form_2 .tsd-upload__badge {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #b42318;
}
.tsd .form_2 .tsd-upload__meta {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}
.tsd .form_2 .tsd-upload__name {
    font-size: 13px;
    font-weight: 600;
    color: var(--tsd-navy);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.tsd .form_2 .tsd-upload__size {
    font-size: 11.5px;
    color: var(--tsd-muted);
}
.tsd .form_2 .tsd-upload__remove {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: var(--tsd-muted);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}
.tsd .form_2 .tsd-upload__remove:hover,
.tsd .form_2 .tsd-upload__remove:focus-visible {
    background: #fdecec;
    color: #c0262d;
}
.tsd .form_2 .tsd-upload__remove svg {
    width: 16px;
    height: 16px;
}

/* phone country dropdown (intl-tel-input): its list sizes itself to the
   longest country name on one line (~505px), which ran past the page edge.
   Keep it to the phone field's width (the form's content width) and let
   long names wrap. */
.tsd .form_2 .iti__country-list {
    width: 390px;
    max-width: calc(100vw - 60px);
    max-height: 260px;
    white-space: normal;
    border: 1px solid var(--tsd-line);
    border-radius: 12px;
    box-shadow: 0 18px 40px -18px rgba(12, 46, 22, 0.45);
    overflow-x: hidden;
}
.tsd .form_2 .iti__country {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    line-height: 1.3;
}
.tsd .form_2 .iti__country-name {
    flex: 1;
    min-width: 0;
}
.tsd .form_2 .iti__dial-code {
    flex: 0 0 auto;
}
.tsd .form_2 .iti__country.iti__highlight {
    background: rgba(207, 255, 127, 0.4);
}

/* builders band: share the page gutter */
.tsd .ts_builders {
    padding-left: var(--tsd-gutter);
    padding-right: var(--tsd-gutter);
}

/* ======================== TESTIMONIALS ======================== */
.tsd .tsd-stories {
    float: left;
    width: 100%;
    padding: 72px var(--tsd-gutter) 88px;
    background: var(--tsd-bg);
    border-top: 1px solid var(--tsd-line);
}
.tsd .tsd-stories__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}
@media (max-width: 900px) {
    .tsd .tsd-stories__grid { grid-template-columns: 1fr; }
}
.tsd .tsd-story {
    position: relative;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 32px 32px 28px;
    border-radius: var(--tsd-radius);
    border: 1px solid var(--tsd-line);
    background: #fff;
    box-shadow: var(--tsd-shadow);
    transition: transform 0.4s var(--tsd-ease), box-shadow 0.4s ease;
}
.tsd .tsd-story:hover {
    transform: translateY(-3px);
    box-shadow: 0 1px 1px rgba(12, 46, 22, 0.05), 0 30px 56px -28px rgba(12, 46, 22, 0.3);
}
.tsd .tsd-story__mark {
    position: absolute;
    top: 26px;
    right: 28px;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--tsd-lime);
    color: var(--tsd-green);
}
.tsd .tsd-story__mark svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}
.tsd .tsd-story__stars {
    display: flex;
    gap: 3px;
    color: #E8A317;
}
.tsd .tsd-story__stars svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
}
.tsd .tsd-story__quote {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 19px;
    line-height: 1.6;
    font-weight: 500;
    color: var(--tsd-navy);
    background: none;
}
.tsd .tsd-story__who {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--tsd-line);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--tsd-muted);
}
.tsd .tsd-story__who strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--tsd-green);
}
.tsd .tsd-story__avatar {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--tsd-green);
    color: var(--tsd-lime);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

/* ================ MORE TRADE SHOWS (related) ================ */
.tsd .tsd-related {
    float: left;
    width: 100%;
    padding: 64px var(--tsd-gutter) 72px;
    background: #fff;
    border-top: 1px solid var(--tsd-line);
}
.tsd .tsd-related__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
.tsd .tsd-rel {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    border: 1px solid var(--tsd-line);
    background: #fff;
    color: var(--tsd-text);
    text-align: center;
    text-decoration: none;
    overflow: hidden;
    box-shadow: var(--tsd-shadow);
    transition: opacity 0.7s var(--tsd-ease), transform 0.35s var(--tsd-ease), box-shadow 0.35s ease, border-color 0.3s ease;
    transition-delay: var(--tsd-delay, 0s), 0s, 0s, 0s;
}
.tsd .tsd-rel:hover,
.tsd .tsd-rel:focus-visible {
    transform: translateY(-4px); /* also overrides style.css's global a:hover scale */
    border-color: rgba(12, 46, 22, 0.25);
    box-shadow: 0 1px 1px rgba(12, 46, 22, 0.05), 0 26px 48px -26px rgba(12, 46, 22, 0.35);
    color: var(--tsd-text);
}
.tsd .tsd-rel:focus-visible {
    outline: 2px solid var(--tsd-green);
    outline-offset: 3px;
}
.tsd.tsd-js .tsd-rel.is-in:hover {
    transform: translateY(-4px);
}

/* logo area (first design): bordered white square logo tile top-left on the
   white card, show name beside it — up to 3 lines = the tile's height */
.tsd .tsd-rel__band {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    text-align: left;
    background:
        radial-gradient(160px 90px at 100% 0%, rgba(207, 255, 127, 0.35), transparent 70%),
        linear-gradient(180deg, #F2F7EC 0%, #F8FBF5 100%);
    border-bottom: 1px solid var(--tsd-line);
}
.tsd .tsd-rel__logo {
    flex: 0 0 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px; /* square */
    padding: 8px;
    border-radius: 14px;
    border: 1px solid rgba(12, 46, 22, 0.08);
    background: #fff;
    box-shadow: 0 10px 20px -14px rgba(12, 46, 22, 0.45);
    transition: transform 0.35s var(--tsd-ease), border-color 0.3s ease, box-shadow 0.3s ease;
}
.tsd .tsd-rel:hover .tsd-rel__logo {
    transform: translateY(-2px);
    border-color: rgba(12, 46, 22, 0.25);
}
.tsd .tsd-rel__logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.tsd .tsd-rel__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 16px 16px 14px;
}
.tsd .tsd-rel__name {
    position: relative;
    flex: 1;
    min-width: 0;
    font-size: 17px;
    line-height: 29px; /* up to 3 lines = 87px ≈ the 88px square logo tile */
    font-weight: 700;
    letter-spacing: -0.015em;
    color: var(--tsd-navy);
    text-wrap: balance;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* date + location — the primary facts, so they carry the weight */
.tsd .tsd-rel__meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch; /* left-aligned, in line with the logo tile above */
    padding-left: 2px;
    text-align: left;
    gap: 6px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--tsd-navy);
    font-variant-numeric: tabular-nums;
}
.tsd .tsd-rel__meta > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    line-height: 1.35;
}
.tsd .tsd-rel__meta svg,
.tsd .tsd-rel__go svg {
    flex: 0 0 14px;
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.tsd .tsd-rel__meta svg {
    flex-basis: 26px;
    width: 26px;
    height: 26px;
    padding: 6px;
    border-radius: 8px;
    background: var(--tsd-soft);
    border: 1px solid var(--tsd-line);
    color: var(--tsd-green);
    stroke-width: 2.2;
}
/* the date carries the most weight: bold navy, dark icon tile */
.tsd .tsd-rel__meta > span:first-child {
    font-size: 15px;
    font-weight: 700;
    color: var(--tsd-navy);
}
.tsd .tsd-rel__meta > span:first-child svg {
    background: var(--tsd-green);
    border-color: var(--tsd-green);
    color: var(--tsd-lime);
}
/* location is secondary */
.tsd .tsd-rel__meta > span + span {
    font-size: 14px;
    font-weight: 500;
    color: var(--tsd-muted);
}

/* attendees / exhibitors — secondary: small, quiet, no panel */
.tsd .tsd-rel__stats {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-top: 10px;
    border-top: 1px dashed var(--tsd-line);
}
.tsd .tsd-rel__stats--n1 {
    grid-template-columns: 1fr;
}
.tsd .tsd-rel__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
}
.tsd .tsd-rel__stat + .tsd-rel__stat {
    border-left: 1px solid var(--tsd-line);
}
.tsd .tsd-rel__stat strong {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--tsd-text);
    font-variant-numeric: tabular-nums;
}
.tsd .tsd-rel__stat small {
    margin-top: 1px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--tsd-muted);
}

.tsd .tsd-rel__why {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
}
.tsd .tsd-rel__why > span {
    max-width: 100%;
    padding: 3px 10px;
    border-radius: 999px;
    border: 1px solid rgba(12, 46, 22, 0.14);
    background: rgba(207, 255, 127, 0.28);
    font-size: 11.5px;
    line-height: 16px;
    font-weight: 600;
    color: var(--tsd-green);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* full-width action bar */
.tsd .tsd-rel__go {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 16px;
    border-top: 1px solid var(--tsd-line);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--tsd-green);
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.tsd .tsd-rel__go svg {
    transition: transform 0.3s var(--tsd-ease);
}
.tsd .tsd-rel:hover .tsd-rel__go {
    background: var(--tsd-lime);
    border-top-color: var(--tsd-lime);
}
.tsd .tsd-rel:hover .tsd-rel__go svg {
    transform: translateX(4px);
}
.tsd .tsd-related__all {
    margin-top: 28px;
    text-align: center;
}
.tsd .tsd-related__all a {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 999px;
    border: 1.5px solid var(--tsd-green);
    color: var(--tsd-green);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease;
}
.tsd .tsd-related__all a:hover {
    transform: none;
    background: var(--tsd-green);
    color: #fff;
}
@media (max-width: 1100px) {
    .tsd .tsd-related__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
/* phones: a swipeable row with the next card peeking in */
@media (max-width: 640px) {
    .tsd .tsd-related {
        padding-top: 56px;
        padding-bottom: 60px;
    }
    .tsd .tsd-related__grid {
        grid-template-columns: none;
        grid-auto-flow: column;
        grid-auto-columns: 82%;
        gap: 14px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        margin: 0 calc(-1 * var(--tsd-gutter));
        padding: 4px var(--tsd-gutter) 18px;
        scroll-padding-left: var(--tsd-gutter);
        scrollbar-width: none;
    }
    .tsd .tsd-related__grid::-webkit-scrollbar {
        display: none;
    }
    .tsd .tsd-rel {
        scroll-snap-align: start;
    }
}

/* ============================ CTA ============================ */
.tsd .footer_last {
    float: left;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    padding: 88px var(--tsd-gutter);
    background:
        radial-gradient(700px 320px at 50% -10%, rgba(207, 255, 127, 0.18), transparent 70%),
        linear-gradient(160deg, #0C2E16 0%, #06200F 100%);
}
.tsd .footer_last::before {
    /* faint blueprint grid — a nod to booth plans, kept very quiet */
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
    pointer-events: none;
}
.tsd .tsd-cta {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
}
.tsd .footer_last h2 {
    font-size: 40px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-wrap: balance;
}
.tsd .footer_last p {
    margin: 16px auto 32px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.78);
}
.tsd .footer_last .cta_btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--tsd-lime);
    color: var(--tsd-green);
    box-shadow: 0 16px 36px -16px rgba(207, 255, 127, 0.55);
    transition: transform 0.3s var(--tsd-ease), box-shadow 0.3s ease, background 0.3s ease;
}
.tsd .footer_last .cta_btn:hover {
    background: #DBFF9C;
    transform: translateY(-2px);
    box-shadow: 0 22px 44px -16px rgba(207, 255, 127, 0.7);
}
@media (max-width: 767px) {
    .tsd .footer_last { padding: 64px var(--tsd-gutter); }
    .tsd .footer_last h2 { font-size: 28px; }
    .tsd .footer_last p { font-size: 16px; }
}

/* ======================= REVEALS ======================= */
.tsd.tsd-js [data-tsd-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s var(--tsd-ease), transform 0.7s var(--tsd-ease);
    transition-delay: var(--tsd-delay, 0s);
}
.tsd.tsd-js [data-tsd-reveal].is-in {
    opacity: 1;
    transform: none;
}
/* testimonial cards are reveal targets — keep their hover lift once shown */
/* event name + event-fact tiles: a keyframe animation, not a transition — they're usually
   revealed while the page is still loading, before a first paint, and a
   transition from a never-painted state is skipped (they'd just pop in).
   Starts a beat after the hero's own rise so the two read as one sequence. */
.tsd.tsd-js .tsd-updated[data-tsd-reveal].is-in,
.tsd.tsd-js .detl_main_h2_main[data-tsd-reveal].is-in,
.tsd.tsd-js .tsd-fact[data-tsd-reveal].is-in {
    opacity: 1;
    transform: none;
    /* backwards, not both: hold the hidden start during the delay, then
       hand back to the normal styles so the hover lift still works */
    animation: tsd-rise 0.7s var(--tsd-ease) backwards;
    animation-delay: calc(0.25s + var(--tsd-delay, 0s));
}
.tsd.tsd-js .tsd-story.is-in {
    transition: opacity 0.7s var(--tsd-ease), transform 0.4s var(--tsd-ease), box-shadow 0.4s ease;
}
.tsd.tsd-js .tsd-story.is-in:hover {
    transform: translateY(-3px);
}

@keyframes tsd-rise {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: none; }
}
@keyframes tsd-pulse {
    0% { box-shadow: 0 0 0 0 rgba(207, 255, 127, 0.6); }
    70% { box-shadow: 0 0 0 8px rgba(207, 255, 127, 0); }
    100% { box-shadow: 0 0 0 0 rgba(207, 255, 127, 0); }
}

@media (prefers-reduced-motion: reduce) {
    .tsd *,
    .tsd *::before,
    .tsd *::after {
        animation: none !important;
        transition: none !important;
    }
    .tsd.tsd-js [data-tsd-reveal] {
        opacity: 1;
        transform: none;
    }
}

/* =================================================================
   ONE CONTINUOUS PAGE (2026-09-23) — less segmented. Each numbered part
   can be removed on its own:
   1. article on the page itself, no boxes (intro / rest / FAQ)
   2. FAQ as a divided list, not boxed items
   3. one background from hero to CTA, no section border lines
   4. hero fades into the page; the main area overlaps its bottom edge
   5. one heading style (left in the article column, centred below it);
      the FAQ is its own centred section below the article + form
   6. one spacing step between sections
   ================================================================= */
.tsd {
    --tsd-section: 72px; /* 6. space between sections */
}
@media (max-width: 767px) {
    .tsd { --tsd-section: 52px; }
}

/* 1. article: no card around the intro, the rest of the article or the FAQ */
.tsd .Left_inner,
.tsd .detl_faq {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
}
/* the builders section is part of the article: same gap as before an
   article h2 (44px / 34px on phones; the intro's last paragraph already
   brings 20px) */
.tsd .ts_builders.ts_builders--inline {
    margin-top: 24px;
    margin-bottom: 0;
}
.tsd .trad_sho_detl2 .Left_inner.tsd-article-cont {
    margin-top: 44px;
}
@media (max-width: 767px) {
    .tsd .ts_builders.ts_builders--inline { margin-top: 14px; }
    .tsd .trad_sho_detl2 .Left_inner.tsd-article-cont { margin-top: 34px; }
}

/* 2. FAQ: questions split by hairlines */
.tsd .detl_faq .faq_box {
    gap: 0;
    border-top: 1px solid var(--tsd-line);
}
.tsd .detl_faq .faq_item,
.tsd .detl_faq .faq_item:hover,
.tsd .detl_faq .faq_item.active {
    border: 0;
    border-bottom: 1px solid var(--tsd-line);
    border-radius: 0;
    background: none;
    box-shadow: none;
}
.tsd .detl_faq .faq_q {
    padding: 20px 0;
    border-radius: 0;
}
.tsd .detl_faq .faq_item:hover .faq_t_det,
.tsd .detl_faq .faq_item.active .faq_t_det {
    color: var(--tsd-green);
}
.tsd .detl_faq .faq_a > .faq_a_p,
.tsd .detl_faq .faq_item.active .faq_a > .faq_a_p {
    padding-left: 0;
    padding-right: 48px;
}
.tsd .detl_faq .faq_item.active .faq_a > .faq_a_p {
    padding-bottom: 22px;
}
@media (max-width: 767px) {
    .tsd .detl_faq .faq_a > .faq_a_p,
    .tsd .detl_faq .faq_item.active .faq_a > .faq_a_p {
        padding-right: 8px;
    }
}

/* 3. one background (on the page wrapper, so the main area can overlap the
   hero's fade without covering it), no border lines between sections */
.tsd {
    background: var(--tsd-bg);
}
.tsd .trad_sho_detl2,
.tsd .tsd-stories,
.tsd .tsd-related {
    background: none;
    border-top: 0;
}
/* 6. even rhythm below the article: each section = one step on top */
.tsd .trad_sho_detl2 {
    padding-bottom: 0;
}
.tsd .tsd-stories {
    padding-top: calc(var(--tsd-section) + 24px);
    padding-bottom: 0;
}
.tsd .tsd-related {
    padding-top: calc(var(--tsd-section) + 24px);
    padding-bottom: calc(var(--tsd-section) + 24px);
}

/* 4. hero fades into the page; the article + form overlap its bottom edge */
.tsd .trad_sho_detl1 {
    padding-bottom: 152px;
}
.tsd .trad_sho_detl1::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 160px;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(250, 251, 249, 0) 0%, var(--tsd-bg) 100%);
}
.tsd .trad_sho_detl2 {
    position: relative;
    z-index: 2;
    margin-top: -72px;
    padding-top: 0;
}
@media (max-width: 1100px) {
    .tsd .trad_sho_detl1 { padding-bottom: 112px; }
    .tsd .trad_sho_detl2 { margin-top: -48px; }
}

/* FAQ: its own full-width section below the article + form, centred */
.tsd > .detl_faq {
    float: left;
    width: 100%;
    margin: 0;
    padding: calc(var(--tsd-section) + 24px) var(--tsd-gutter) 0;
}
.tsd > .detl_faq .faq_title {
    text-align: center;
}
.tsd > .detl_faq .faq_box {
    max-width: 880px;
    margin: 36px auto 0;
}

/* 5. headings: in the article column left-aligned, same size as the FAQ */
.tsd .ts_builders--inline .ts_builders__head {
    max-width: none;
    margin: 0 0 28px;
    text-align: left;
}
.tsd .ts_builders--inline .ts_builders__title,
.tsd .detl_main_h2_main {
    font-size: 32px;
}
/* the FAQ title now matches the other full-width section titles */
.tsd > .detl_faq .faq_title {
    font-size: 40px;
}
@media (max-width: 767px) {
    .tsd .ts_builders--inline .ts_builders__title,
    .tsd .detl_main_h2_main {
        font-size: 26px;
    }
    .tsd > .detl_faq .faq_title {
        font-size: 30px;
    }
}
.tsd .ts_builders--inline .ts_builders__title {
    margin-top: 0;
}
.tsd .ts_builders--inline .ts_builders__sub {
    margin-top: 8px;
    font-size: 16px;
}

/* quote form starts level with the event-fact tiles (not the "CES 2027"
   title above them): title height (32px × 1.15) + its 24px margin */
@media (min-width: 1101px) {
    .tsd .trad_sho_detl2 > .right {
        margin-top: calc(32px * 1.15 + 24px);
    }
}
/* written article sits a little in from the tiles / builder cards */
@media (min-width: 768px) {
    .tsd .trad_sho_detl2 .Left_inner .tsd-prose {
        padding-left: 28px;
    }
}

/* reading progress bar (tradeshow_detail.js) — under the sticky header */
.tsd .tsd-progress {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    height: 3px;
    z-index: 998; /* under the site header's mobile menu */
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.tsd .tsd-progress.is-on {
    opacity: 1;
}
.tsd .tsd-progress__fill {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--tsd-green) 0%, #5E9C2E 60%, var(--tsd-lime) 100%);
    transform: scaleX(0);
    transform-origin: 0 50%;
}

/* "Event details last updated …" — footnote under the fact tiles (Kanboard #69) */
.tsd .trad_sho_detl2 .Left_inner ul.tsd-facts:has(+ .tsd-updated) {
    margin-bottom: 12px;
}
.tsd .trad_sho_detl2 .Left_inner .tsd-updated {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 8px;
    width: auto;
    margin: 0 0 36px;
    padding-left: 2px;
    font-size: 13.5px;
    line-height: 1.4;
    font-weight: 500;
    color: var(--tsd-muted);
}
.tsd .tsd-updated svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: var(--tsd-green);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.tsd .tsd-updated time {
    font-weight: 600;
    color: var(--tsd-green);
}
.tsd .tsd-updated span {
    display: inline; /* plain text runs, so a long organizer name wraps naturally */
}
@media (max-width: 600px) {
    /* phones: organizer on its own line, no dangling separator */
    .tsd .tsd-updated span.tsd-updated__sep { display: none; }
    .tsd .tsd-updated span.tsd-updated__sep + span { flex-basis: 100%; padding-left: 21px; }
}
.tsd .tsd-updated strong {
    font-weight: 600;
    color: var(--tsd-text);
}
.tsd .tsd-updated__sep {
    color: #c3c9c1;
}

/* ---------- Organizer fact card ----------
   With an organizer the facts are a 2 × 2 grid + the wide venue card:
     Event dates | Attendees
     Organizer   | Exhibitors
     Venue
   — wider cards, so organizer names and their tooltips have room. Without
   one, the base 3-across row stays. */
.tsd .Left_inner ul.tsd-facts.tsd-facts--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
/* a long organizer name with no acronym: text size, up to 3 lines */
.tsd .tsd-fact__val.tsd-fact__val--text {
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.tsd .tsd-amp {
    font-weight: 500;
    color: var(--tsd-muted);
}
/* acronym with the full name on hover / keyboard focus */
.tsd .Left_inner ul.tsd-facts > li.tsd-fact--org {
    overflow: visible;
    z-index: 1;
}
.tsd .tsd-abbr {
    /* static: the tooltip below positions against the card (li), so it
       always stays within the card's width — anchored to the acronym it
       ran past the screen edge on the right-hand card (sideways scroll) */
    position: static;
    text-decoration: underline dotted rgba(12, 46, 22, 0.35);
    text-underline-offset: 4px;
    text-decoration-thickness: 1.5px;
    cursor: help;
    outline: none;
}
.tsd .tsd-abbr::after {
    content: attr(data-full);
    position: absolute;
    left: 14px;
    bottom: calc(100% + 8px);
    width: max-content;
    max-width: calc(100% - 28px); /* never wider than the card */
    padding: 8px 12px;
    border-radius: 10px;
    background: var(--tsd-green);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0;
    white-space: normal;
    box-shadow: 0 12px 24px -12px rgba(0, 0, 0, 0.45);
    opacity: 0;
    transform: translateY(4px);
    pointer-events: none;
    transition: opacity 0.15s ease, transform 0.15s ease;
    z-index: 5;
}
.tsd .tsd-abbr:hover::after,
.tsd .tsd-abbr:focus-visible::after {
    opacity: 1;
    transform: none;
}
.tsd .tsd-abbr:focus-visible {
    border-radius: 4px;
    box-shadow: 0 0 0 3px rgba(207, 255, 127, 0.9);
}
/* text for screen readers / text-only readers, not shown on screen */
.tsd .tsd-sr {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}
/* 4+ organizers: "+N more" chip; its tooltip lists every organizer
   (same card-anchored tooltip as .tsd-abbr; tap toggles .is-open) */
.tsd .tsd-more {
    position: static;
    display: inline-block;
    vertical-align: middle;
    margin: 0 0 0 4px;
    padding: 3px 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(12, 46, 22, 0.08);
    color: var(--tsd-green);
    font: inherit;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0;
    cursor: pointer;
    outline: none;
}
.tsd .tsd-more:hover,
.tsd .tsd-more.is-open {
    background: rgba(12, 46, 22, 0.14);
}
.tsd .tsd-more:focus-visible {
    box-shadow: 0 0 0 3px rgba(207, 255, 127, 0.9);
}
.tsd .tsd-more::after {
    content: attr(data-full);
    position: absolute;
    left: 14px;
    top: calc(100% + 8px); /* opens downward: a long list opening upward ran under the sticky header */
    width: max-content;
    max-width: calc(100% - 28px);
    padding: 10px 12px;
    border-radius: 10px;
    background: var(--tsd-green);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    text-align: left;
    white-space: pre-line;
    box-shadow: 0 12px 24px -12px rgba(0, 0, 0, 0.45);
    opacity: 0;
    transform: translateY(-4px);
    pointer-events: none;
    transition: opacity 0.15s ease, transform 0.15s ease;
    z-index: 5;
}
.tsd .tsd-more:hover::after,
.tsd .tsd-more:focus-visible::after,
.tsd .tsd-more.is-open::after {
    opacity: 1;
    transform: none;
}
/* phones: one column (the base rule) */
@media (max-width: 640px) {
    .tsd .Left_inner ul.tsd-facts.tsd-facts--4 {
        grid-template-columns: 1fr;
    }
}
