/* ==========================================================================
   Lamborajo — Editorial page design system
   Self-contained CSS for the per-page templates (page-{slug}.php).
   Deliberately independent of the compiled Tailwind build so these pages
   never depend on a rebuild to look right.
   ========================================================================== */

:root {
    --lb-ink: #0E1A24;
    --lb-ink-2: #1B2C3A;
    --lb-muted: #5B6B7A;
    --lb-muted-2: #8A98A5;
    --lb-accent: #2E6BE6;
    --lb-accent-2: #1F51C4;
    --lb-accent-soft: rgba(46, 107, 230, .09);
    --lb-canvas: #F5F7FA;
    --lb-surface: #FFFFFF;
    --lb-line: rgba(14, 26, 36, .10);
    --lb-line-soft: rgba(14, 26, 36, .06);
    --lb-shadow-sm: 0 1px 2px rgba(14, 26, 36, .04), 0 6px 20px -12px rgba(14, 26, 36, .18);
    --lb-shadow: 0 2px 4px rgba(14, 26, 36, .03), 0 18px 44px -24px rgba(14, 26, 36, .28);
    --lb-shadow-lg: 0 30px 70px -30px rgba(14, 26, 36, .38);
    --lb-radius: 20px;
    --lb-radius-lg: 28px;
    --lb-maxw: 1180px;
}

/* ---------- Base ---------------------------------------------------------- */

.lb-page {
    background: var(--lb-canvas);
    color: var(--lb-ink);
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}

.lb-page *,
.lb-page *::before,
.lb-page *::after {
    box-sizing: border-box;
}

.lb-wrap {
    width: 100%;
    max-width: var(--lb-maxw);
    margin-inline: auto;
    padding-inline: 20px;
}

@media (min-width: 768px) {
    .lb-wrap {
        padding-inline: 32px;
    }
}

.lb-page h1,
.lb-page h2,
.lb-page h3,
.lb-page h4 {
    font-family: "Inter Tight", "Inter", system-ui, sans-serif;
    letter-spacing: -0.022em;
    color: var(--lb-ink);
    margin: 0;
}

.lb-page p {
    margin: 0;
    color: var(--lb-ink);
}

/* ---------- Hero ---------------------------------------------------------- */

.lb-hero {
    position: relative;
    padding: 104px 0 0;
}

@media (min-width: 768px) {
    .lb-hero {
        padding-top: 120px;
    }
}

.lb-hero-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--lb-radius-lg);
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    box-shadow: var(--lb-shadow-lg);
    isolation: isolate;
}

@media (min-width: 768px) {
    .lb-hero-card {
        min-height: 520px;
        border-radius: 34px;
    }
}

@media (min-width: 1280px) {
    .lb-hero-card {
        min-height: 560px;
    }
}

.lb-hero-card img.lb-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    transform: scale(1.02);
}

.lb-hero-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(to top, rgba(14, 26, 36, .94) 0%, rgba(14, 26, 36, .78) 38%, rgba(14, 26, 36, .40) 66%, rgba(14, 26, 36, .34) 100%),
        linear-gradient(to right, rgba(14, 26, 36, .52) 0%, rgba(14, 26, 36, .16) 55%, transparent 100%);
}

.lb-hero-body {
    position: relative;
    width: 100%;
    padding: 34px 22px 30px;
}

@media (min-width: 768px) {
    .lb-hero-body {
        padding: 56px 48px 44px;
        max-width: 60rem;
    }
}

.lb-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .85) !important;
}

.lb-eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    background: rgba(255, 255, 255, .45);
}

.lb-hero h1 {
    color: #fff;
    font-size: clamp(1.75rem, 4.6vw, 3.25rem);
    line-height: 1.1;
    font-weight: 700;
    text-wrap: balance;
}

.lb-hero-lead {
    margin-top: 16px !important;
    max-width: 46rem;
    color: rgba(255, 255, 255, .86) !important;
    font-size: 1rem;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .lb-hero-lead {
        font-size: 1.075rem;
    }
}

.lb-hero-lead strong {
    color: #fff;
    font-weight: 600;
}

/* Breadcrumb */
.lb-crumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, .66) !important;
}

.lb-crumb a {
    color: rgba(255, 255, 255, .85) !important;
    text-decoration: none;
    transition: color .2s ease;
}

.lb-crumb a:hover {
    color: #fff !important;
}

.lb-crumb span.sep {
    color: rgba(255, 255, 255, .6) !important;
    opacity: 1;
}

.lb-crumb .cur,
.lb-crumb span {
    color: rgba(255, 255, 255, .75) !important;
}

.lb-crumb .cur {
    color: rgba(255, 255, 255, .75) !important;
    max-width: 22rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Hero meta chips */
.lb-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.lb-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 500;
    color: #fff;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .22);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.lb-chip i {
    color: #fff !important;
    font-size: 15px;
    opacity: .85;
}

/* Hero CTAs */
.lb-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.lb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 24px;
    border-radius: 999px;
    font-size: .9rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform .25s cubic-bezier(.4, 0, .2, 1), background-color .25s ease, box-shadow .25s ease, color .25s ease;
    white-space: nowrap;
}

.lb-btn i {
    font-size: 17px;
    color: inherit !important;
}

.lb-btn span {
    color: inherit !important;
}

.lb-btn:hover {
    transform: translateY(-2px);
}

.lb-btn-primary {
    background: var(--lb-accent);
    color: #fff !important;
    box-shadow: 0 12px 28px -12px rgba(46, 107, 230, .75);
}

.lb-btn-primary:hover {
    background: var(--lb-accent-2);
}

.lb-btn-glass {
    background: rgba(255, 255, 255, .16);
    border-color: rgba(255, 255, 255, .34);
    color: #fff !important;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.lb-btn-glass:hover {
    background: rgba(255, 255, 255, .26);
}

.lb-btn-ink {
    background: var(--lb-ink);
    color: #fff !important;
    box-shadow: 0 12px 28px -14px rgba(14, 26, 36, .8);
}

.lb-btn-ink:hover {
    background: var(--lb-ink-2);
}

.lb-btn-outline {
    background: transparent;
    border-color: var(--lb-line);
    color: var(--lb-ink) !important;
}

.lb-btn-outline:hover {
    background: #fff;
    border-color: rgba(14, 26, 36, .2);
}

/* ---------- Key-facts strip ---------------------------------------------- */

.lb-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    margin: -34px auto 0;
    position: relative;
    z-index: 3;
    max-width: calc(var(--lb-maxw) - 80px);
    background: var(--lb-line-soft);
    border: 1px solid var(--lb-line);
    border-radius: var(--lb-radius);
    overflow: hidden;
    box-shadow: var(--lb-shadow);
}

@media (min-width: 900px) {
    .lb-facts {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.lb-fact {
    background: var(--lb-surface);
    padding: 20px 18px;
    text-align: center;
}

@media (min-width: 768px) {
    .lb-fact {
        padding: 26px 20px;
    }
}

.lb-fact-v {
    display: block;
    font-family: "Inter Tight", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -.02em;
    color: var(--lb-ink);
}

@media (min-width: 768px) {
    .lb-fact-v {
        font-size: 1.6rem;
    }
}

.lb-fact-l {
    display: block;
    margin-top: 6px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--lb-muted-2);
}

/* ---------- Layout: article + sidebar ------------------------------------ */

.lb-main {
    padding: 56px 0 0;
}

@media (min-width: 768px) {
    .lb-main {
        padding-top: 72px;
    }
}

.lb-layout {
    display: block;
}

/* ---------- On-this-page nav (full width, above the article) ------------- */

.lb-toc-inline {
    background: var(--lb-surface);
    border: 1px solid var(--lb-line);
    border-radius: var(--lb-radius);
    box-shadow: var(--lb-shadow-sm);
    overflow: hidden;
    margin-bottom: 44px;
}

.lb-toc-inline summary {
    list-style: none;
    cursor: pointer;
    position: relative;
    padding: 16px 54px 16px 22px;
    font-family: "Inter Tight", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--lb-muted-2);
    border-bottom: 1px solid transparent;
    transition: color .2s ease, border-color .2s ease;
}

.lb-toc-inline[open] summary {
    border-bottom-color: var(--lb-line-soft);
}

.lb-toc-inline summary:hover {
    color: var(--lb-ink);
}

.lb-toc-inline summary::-webkit-details-marker {
    display: none;
}

.lb-toc-inline summary::after {
    content: "";
    position: absolute;
    right: 22px;
    top: 50%;
    width: 8px;
    height: 8px;
    margin-top: -6px;
    border-right: 2px solid var(--lb-accent);
    border-bottom: 2px solid var(--lb-accent);
    transform: rotate(45deg);
    transition: transform .3s cubic-bezier(.4, 0, .2, 1);
}

.lb-toc-inline[open] summary::after {
    transform: rotate(-135deg);
    margin-top: -2px;
}

.lb-toc-inline ol {
    list-style: none;
    margin: 0;
    padding: 14px 22px 18px;
    counter-reset: toc;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2px 32px;
}

@media (min-width: 640px) {
    .lb-toc-inline ol {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .lb-toc-inline ol {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.lb-toc-inline li {
    counter-increment: toc;
    min-width: 0;
}

.lb-toc-inline a {
    display: flex;
    gap: 10px;
    align-items: baseline;
    padding: 8px 0 8px 12px;
    margin-left: -12px;
    border-left: 2px solid transparent;
    font-size: .875rem;
    line-height: 1.5;
    color: var(--lb-muted);
    text-decoration: none;
    transition: color .2s ease, border-color .2s ease;
}

.lb-toc-inline a::before {
    content: counter(toc, decimal-leading-zero);
    font-size: 10.5px;
    font-weight: 600;
    color: var(--lb-muted-2);
    flex-shrink: 0;
}

.lb-toc-inline a:hover,
.lb-toc-inline a.is-active {
    color: var(--lb-ink);
    border-left-color: var(--lb-accent);
}

.lb-toc-inline a.is-active::before {
    color: var(--lb-accent);
}

/* The sidebar is gone; keep the rule so any stale markup cannot reappear. */
.lb-aside {
    display: none;
}

/* Booking panel — full width, sits between the article and the related links */
.lb-book {
    position: relative;
    overflow: hidden;
    margin-top: 56px;
    border-radius: var(--lb-radius-lg);
    padding: 30px 26px;
    color: #fff;
    background: linear-gradient(150deg, #17293B 0%, #0E1A24 62%);
    box-shadow: var(--lb-shadow);
}

@media (min-width: 900px) {
    .lb-book {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 44px;
        padding: 38px 44px;
    }
}

.lb-book::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46, 107, 230, .34), transparent 66%);
}

.lb-book-b {
    position: relative;
    min-width: 0;
}

.lb-book-t {
    font-family: "Inter Tight", sans-serif;
    font-size: clamp(1.2rem, 2.4vw, 1.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 9px;
}

.lb-book p {
    font-size: .93rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, .74) !important;
    max-width: 40rem;
}

.lb-book-a {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
    flex-shrink: 0;
}

@media (min-width: 900px) {
    .lb-book-a {
        margin-top: 0;
        align-items: flex-start;
    }
}

.lb-book .lb-btn {
    align-self: flex-start;
}

.lb-book-meta {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

@media (min-width: 640px) and (max-width: 899.98px) {
    .lb-book-meta {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 9px 22px;
    }
}

.lb-book-meta a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    color: rgba(255, 255, 255, .74);
    text-decoration: none;
    transition: color .2s ease;
    white-space: nowrap;
}

.lb-book-meta a:hover {
    color: #fff;
}

.lb-book-meta i {
    color: var(--lb-accent) !important;
    font-size: 15px;
}

/* ---------- Article prose ------------------------------------------------- */

.lb-article {
    min-width: 0;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--lb-ink);
}

.lb-article>*+* {
    margin-top: 20px;
}

.lb-article h2 {
    font-size: clamp(1.4rem, 2.6vw, 1.85rem);
    line-height: 1.24;
    font-weight: 700;
    margin-top: 56px !important;
    margin-bottom: 4px;
    scroll-margin-top: 110px;
}

.lb-article h2:first-child {
    margin-top: 0 !important;
}

.lb-article h3 {
    font-size: 1.115rem;
    line-height: 1.4;
    font-weight: 600;
    margin-top: 36px !important;
    margin-bottom: -2px;
    color: var(--lb-ink);
}

.lb-article p {
    color: #263442;
}

.lb-article strong {
    color: var(--lb-ink);
    font-weight: 600;
}

.lb-article a {
    color: var(--lb-accent);
    text-decoration: none;
    background-image: linear-gradient(currentColor, currentColor);
    background-size: 100% 1px;
    background-repeat: no-repeat;
    background-position: 0 100%;
    padding-bottom: 1px;
    transition: color .2s ease, background-size .25s ease;
}

.lb-article a:hover {
    color: var(--lb-accent-2);
    background-size: 100% 2px;
}

.lb-article ul,
.lb-article ol {
    margin: 0;
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lb-article ul>li {
    position: relative;
    padding-left: 26px;
    color: #263442;
}

.lb-article ul>li::before {
    content: "";
    position: absolute;
    left: 4px;
    top: .68em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lb-accent);
}

.lb-article ol {
    counter-reset: lbol;
}

.lb-article ol>li {
    position: relative;
    padding-left: 32px;
    counter-increment: lbol;
    color: #263442;
}

.lb-article ol>li::before {
    content: counter(lbol);
    position: absolute;
    left: 0;
    top: .1em;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background: var(--lb-accent-soft);
    color: var(--lb-accent);
    font-size: 11.5px;
    font-weight: 700;
    display: grid;
    place-items: center;
}

/* Section lead paragraph */
.lb-lead {
    font-size: 1.075rem;
    line-height: 1.72;
    color: #22303E !important;
    padding: 18px 0 18px 22px;
    border-left: 3px solid var(--lb-accent);
    background: linear-gradient(90deg, var(--lb-accent-soft), transparent 70%);
    border-radius: 0 12px 12px 0;
}

/* ---------- Tables -------------------------------------------------------- */

.lb-tablewrap {
    border: 1px solid var(--lb-line);
    border-radius: var(--lb-radius);
    background: var(--lb-surface);
    box-shadow: var(--lb-shadow-sm);
    overflow: hidden;
}

.lb-tablecap {
    display: block;
    padding: 15px 20px 13px;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .01em;
    color: var(--lb-ink);
    border-bottom: 1px solid var(--lb-line-soft);
    background: #FAFBFC;
}

.lb-tablescroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.lb-article table {
    width: 100%;
    min-width: 520px;
    border-collapse: collapse;
    font-size: .89rem;
}

.lb-article thead th {
    background: #F2F5F9;
    color: var(--lb-ink);
    font-family: "Inter Tight", sans-serif;
    font-weight: 700;
    font-size: .775rem;
    letter-spacing: .045em;
    text-transform: uppercase;
    text-align: left;
    padding: 13px 18px;
    white-space: nowrap;
    border-bottom: 1px solid var(--lb-line);
}

.lb-article tbody td {
    padding: 13px 18px;
    text-align: left;
    vertical-align: top;
    color: #2C3946;
    border-bottom: 1px solid var(--lb-line-soft);
    line-height: 1.6;
}

.lb-article tbody tr:last-child td {
    border-bottom: 0;
}

.lb-article tbody tr:nth-child(even) td {
    background: #FBFCFD;
}

.lb-article tbody tr:hover td {
    background: rgba(46, 107, 230, .045);
}

.lb-article tbody td:first-child {
    font-weight: 600;
    color: var(--lb-ink);
}

.lb-article table strong {
    color: var(--lb-accent-2);
}

/* The hint and the edge fade only appear when the table really does overflow;
   .is-scrollable is set by the script at the foot of the page. */
.lb-scrollhint {
    display: none;
    padding: 9px 18px;
    font-size: .72rem;
    color: var(--lb-muted-2);
    border-top: 1px solid var(--lb-line-soft);
    background: #FAFBFC;
}

.lb-tablewrap.is-scrollable .lb-scrollhint {
    display: block;
}

/* Scrollbar styling so the affordance is visible without hovering */
.lb-tablescroll::-webkit-scrollbar,
.lb-tablescroll--auto::-webkit-scrollbar,
.lbx-tw::-webkit-scrollbar {
    height: 8px;
}

.lb-tablescroll::-webkit-scrollbar-thumb,
.lb-tablescroll--auto::-webkit-scrollbar-thumb,
.lbx-tw::-webkit-scrollbar-thumb {
    background: rgba(14, 26, 36, .22);
    border-radius: 99px;
}

.lb-tablescroll::-webkit-scrollbar-track,
.lb-tablescroll--auto::-webkit-scrollbar-track,
.lbx-tw::-webkit-scrollbar-track {
    background: transparent;
}

/* ---------- Figures & galleries ------------------------------------------ */

.lb-figure {
    margin: 0;
}

.lb-figure img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--lb-radius);
    box-shadow: var(--lb-shadow);
    object-fit: cover;
}

.lb-figure figcaption {
    margin-top: 12px;
    font-size: .8rem;
    line-height: 1.6;
    color: var(--lb-muted);
    padding-left: 14px;
    border-left: 2px solid var(--lb-line);
}

.lb-figure--wide img {
    aspect-ratio: 16 / 9;
}

.lb-figure--tall img {
    aspect-ratio: 4 / 3;
}

.lb-grid2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.lb-grid3 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

@media (min-width: 768px) {
    .lb-grid3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }

    .lb-grid2 {
        gap: 18px;
    }
}

.lb-grid2 img,
.lb-grid3 img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--lb-shadow-sm);
}

/* Photo tile with caption overlay */
.lb-tile {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    display: block;
    box-shadow: var(--lb-shadow-sm);
}

.lb-tile img {
    border-radius: 0;
    box-shadow: none;
    transition: transform .6s cubic-bezier(.2, .7, .3, 1);
}

.lb-tile:hover img {
    transform: scale(1.05);
}

.lb-tile figcaption {
    position: absolute;
    inset: auto 0 0 0;
    padding: 26px 16px 13px;
    margin: 0;
    border: 0;
    font-size: .78rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(to top, rgba(14, 26, 36, .88), transparent);
}

/* ---------- Callouts ------------------------------------------------------ */

.lb-note {
    display: flex;
    gap: 14px;
    padding: 20px 22px;
    border-radius: var(--lb-radius);
    background: var(--lb-surface);
    border: 1px solid var(--lb-line);
    box-shadow: var(--lb-shadow-sm);
}

.lb-note i {
    font-size: 21px;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--lb-accent) !important;
}

.lb-note-b {
    min-width: 0;
}

.lb-note-t {
    font-family: "Inter Tight", sans-serif;
    font-weight: 700;
    font-size: .95rem;
    margin-bottom: 5px;
    color: var(--lb-ink);
}

.lb-note p {
    font-size: .915rem;
    line-height: 1.7;
    color: #38454F !important;
}

.lb-note--warn {
    background: #FFFBF2;
    border-color: rgba(190, 140, 30, .22);
}

.lb-note--warn i {
    color: #C08A16 !important;
}

/* ---------- Stat / spec cards --------------------------------------------- */

.lb-cards {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
}

@media (min-width: 640px) {
    .lb-cards--2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

    .lb-cards {
        gap: 18px;
    }
}

.lb-card {
    background: var(--lb-surface);
    border: 1px solid var(--lb-line);
    border-radius: var(--lb-radius);
    padding: 24px 22px;
    box-shadow: var(--lb-shadow-sm);
    transition: transform .3s ease, box-shadow .3s ease;
    display: flex;
    flex-direction: column;
}

.lb-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--lb-shadow);
}

.lb-card-ico {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    background: var(--lb-accent-soft);
    margin-bottom: 15px;
}

.lb-card-ico i {
    font-size: 21px;
    color: var(--lb-accent) !important;
}

.lb-card-t {
    font-family: "Inter Tight", sans-serif;
    font-size: 1.02rem;
    font-weight: 700;
    margin-bottom: 7px;
    color: var(--lb-ink);
    line-height: 1.35;
}

.lb-card p {
    font-size: .885rem;
    line-height: 1.68;
    color: #46535F !important;
}

.lb-card-k {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--lb-muted-2);
    margin-bottom: 8px;
}

.lb-card-v {
    font-family: "Inter Tight", sans-serif;
    font-size: 1.65rem;
    font-weight: 700;
    letter-spacing: -.02em;
    color: var(--lb-ink);
    line-height: 1.1;
}

.lb-card-v small {
    font-size: .8rem;
    font-weight: 500;
    color: var(--lb-muted);
    letter-spacing: 0;
}

/* Media card (image + text) */
.lb-mcard {
    background: var(--lb-surface);
    border: 1px solid var(--lb-line);
    border-radius: var(--lb-radius);
    overflow: hidden;
    box-shadow: var(--lb-shadow-sm);
    display: flex;
    flex-direction: column;
    transition: transform .3s ease, box-shadow .3s ease;
}

.lb-mcard:hover {
    transform: translateY(-3px);
    box-shadow: var(--lb-shadow);
}

.lb-mcard img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
}

.lb-mcard-b {
    padding: 20px 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    flex: 1;
}

.lb-mcard-t {
    font-family: "Inter Tight", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--lb-ink);
    line-height: 1.35;
}

.lb-mcard p {
    font-size: .875rem;
    line-height: 1.65;
    color: #46535F !important;
}

/* ---------- FAQ ----------------------------------------------------------- */

.lb-faq {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lb-faq details {
    background: var(--lb-surface);
    border: 1px solid var(--lb-line);
    border-radius: 16px;
    box-shadow: var(--lb-shadow-sm);
    overflow: hidden;
    transition: border-color .25s ease, box-shadow .25s ease;
}

.lb-faq details[open] {
    border-color: rgba(46, 107, 230, .3);
    box-shadow: 0 12px 34px -20px rgba(46, 107, 230, .5);
}

.lb-faq summary {
    list-style: none;
    cursor: pointer;
    padding: 17px 54px 17px 20px;
    position: relative;
    font-family: "Inter Tight", sans-serif;
    font-weight: 600;
    font-size: .975rem;
    line-height: 1.5;
    color: var(--lb-ink);
    transition: color .2s ease;
}

.lb-faq summary::-webkit-details-marker {
    display: none;
}

.lb-faq summary:hover {
    color: var(--lb-accent);
}

.lb-faq summary::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    width: 9px;
    height: 9px;
    margin-top: -6px;
    border-right: 2px solid var(--lb-accent);
    border-bottom: 2px solid var(--lb-accent);
    transform: rotate(45deg);
    transition: transform .3s cubic-bezier(.4, 0, .2, 1);
}

.lb-faq details[open] summary::after {
    transform: rotate(-135deg);
    margin-top: -2px;
}

.lb-faq-a {
    padding: 0 20px 19px;
    font-size: .915rem;
    line-height: 1.72;
    color: #46535F;
}

.lb-faq-a p {
    color: #46535F !important;
}

.lb-faq-a>*+* {
    margin-top: 12px;
}

/* ---------- Big CTA panel ------------------------------------------------- */

.lb-cta {
    position: relative;
    overflow: hidden;
    border-radius: var(--lb-radius-lg);
    padding: 34px 26px;
    color: #fff;
    background: linear-gradient(150deg, #17293B 0%, #0E1A24 62%);
    box-shadow: var(--lb-shadow);
}

@media (min-width: 768px) {
    .lb-cta {
        padding: 44px 44px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 36px;
    }
}

.lb-cta::before {
    content: "";
    position: absolute;
    top: -110px;
    right: -70px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46, 107, 230, .34), transparent 66%);
}

.lb-cta-b {
    position: relative;
    min-width: 0;
}

.lb-cta-t {
    font-family: "Inter Tight", sans-serif;
    font-size: clamp(1.25rem, 2.5vw, 1.6rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 9px;
}

.lb-cta p {
    font-size: .93rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, .74) !important;
    max-width: 34rem;
}

.lb-cta-a {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .lb-cta-a {
        margin-top: 0;
        flex-direction: column;
    }
}

.lb-cta .lb-btn-glass {
    border-color: rgba(255, 255, 255, .28);
}

/* ---------- Related links ------------------------------------------------- */

.lb-related {
    border-top: 1px solid var(--lb-line);
    margin-top: 64px;
    padding-top: 40px;
}

.lb-related-t {
    font-family: "Inter Tight", sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--lb-ink);
    margin-bottom: 20px;
}

.lb-rel-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
}

@media (min-width: 640px) {
    .lb-rel-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .lb-rel-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .lb-rel {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 12px 12px 16px;
    }

    .lb-rel img {
        width: 100%;
        height: 120px;
    }
}

.lb-rel {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 12px;
    border-radius: 16px;
    background: var(--lb-surface);
    border: 1px solid var(--lb-line);
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.lb-rel:hover {
    transform: translateY(-2px);
    border-color: rgba(46, 107, 230, .3);
    box-shadow: var(--lb-shadow-sm);
}

.lb-rel img {
    width: 74px;
    height: 60px;
    object-fit: cover;
    border-radius: 11px;
    flex-shrink: 0;
}

.lb-rel-t {
    font-family: "Inter Tight", sans-serif;
    font-size: .89rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--lb-ink);
}

.lb-rel-s {
    display: block;
    margin-top: 4px;
    font-size: .74rem;
    color: var(--lb-muted-2);
}

/* ---------- Source note --------------------------------------------------- */

.lb-src {
    margin-top: 44px;
    padding: 16px 18px;
    border-radius: 14px;
    background: rgba(14, 26, 36, .035);
    font-size: .78rem;
    line-height: 1.7;
    color: var(--lb-muted);
}

.lb-src p {
    color: var(--lb-muted) !important;
    font-size: .78rem !important;
    line-height: 1.7;
}

/* ---------- Section spacing helpers -------------------------------------- */

.lb-section {
    padding-bottom: 72px;
}

@media (min-width: 768px) {
    .lb-section {
        padding-bottom: 90px;
    }
}

.lb-band {
    background: #fff;
    border-top: 1px solid var(--lb-line);
    border-bottom: 1px solid var(--lb-line);
    padding: 56px 0;
    margin: 56px 0;
}

@media (min-width: 768px) {
    .lb-band {
        padding: 72px 0;
        margin: 72px 0;
    }
}

.lb-band-h {
    text-align: center;
    max-width: 44rem;
    margin: 0 auto 34px;
}

.lb-band-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--lb-muted-2);
}

.lb-band-eyebrow::before,
.lb-band-eyebrow::after {
    content: "";
    width: 26px;
    height: 1px;
    background: var(--lb-line);
}

.lb-band-t {
    font-family: "Inter Tight", sans-serif;
    font-size: clamp(1.5rem, 3.2vw, 2.15rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--lb-ink);
}

.lb-band-s {
    margin-top: 12px !important;
    font-size: .945rem;
    line-height: 1.7;
    color: var(--lb-muted) !important;
}

/* ---------- Utility ------------------------------------------------------- */

.lb-vis-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==========================================================================
   Editor content compatibility
   Posts and any page still rendered from the database carry markup written
   against an older dark-theme stylesheet (.lbx / .klf). Their own <style>
   block is stripped on output; these rules map that markup onto the design
   system above so the content reads correctly on the light canvas.
   ========================================================================== */

.lb-article .lbx,
.lb-article .klf {
    max-width: none;
    margin: 0;
}

.lb-article .lbx > * + *,
.lb-article .klf > * + * {
    margin-top: 20px;
}

.lb-article .lbx-lead {
    font-size: 1.075rem;
    line-height: 1.72;
    color: #22303E !important;
    padding: 18px 0 18px 22px;
    border-left: 3px solid var(--lb-accent);
    background: linear-gradient(90deg, var(--lb-accent-soft), transparent 70%);
    border-radius: 0 12px 12px 0;
}

/* Bare tables from the editor: give them the framed, scrollable treatment */
.lb-article .lbx-tw,
.lb-article .lb-tablescroll--auto {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid var(--lb-line);
    border-radius: var(--lb-radius);
    background: var(--lb-surface);
    box-shadow: var(--lb-shadow-sm);
}

.lb-article .lbx-tw table {
    margin: 0;
}

.lb-article caption {
    caption-side: top;
    text-align: left;
    padding: 15px 20px 13px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--lb-ink);
    background: #FAFBFC;
    border-bottom: 1px solid var(--lb-line-soft);
}

/* Accordions written as bare <details> */
.lb-article details {
    background: var(--lb-surface);
    border: 1px solid var(--lb-line);
    border-radius: 16px;
    box-shadow: var(--lb-shadow-sm);
    overflow: hidden;
    transition: border-color .25s ease, box-shadow .25s ease;
}

.lb-article details + details {
    margin-top: 10px;
}

.lb-article details[open] {
    border-color: rgba(46, 107, 230, .3);
    box-shadow: 0 12px 34px -20px rgba(46, 107, 230, .5);
}

.lb-article summary {
    list-style: none;
    cursor: pointer;
    padding: 17px 54px 17px 20px;
    position: relative;
    font-family: "Inter Tight", sans-serif;
    font-weight: 600;
    font-size: .975rem;
    line-height: 1.5;
    color: var(--lb-ink);
    transition: color .2s ease;
}

.lb-article summary::-webkit-details-marker {
    display: none;
}

.lb-article summary:hover {
    color: var(--lb-accent);
}

.lb-article summary::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    width: 9px;
    height: 9px;
    margin-top: -6px;
    border-right: 2px solid var(--lb-accent);
    border-bottom: 2px solid var(--lb-accent);
    transform: rotate(45deg);
    transition: transform .3s cubic-bezier(.4, 0, .2, 1);
}

.lb-article details[open] summary::after {
    transform: rotate(-135deg);
    margin-top: -2px;
}

.lb-article .lbx-a,
.lb-article .klf-a {
    padding: 0 20px 19px;
    font-size: .915rem;
    line-height: 1.72;
    color: #46535F;
}

/* Inline CTA and note blocks from the editor */
.lb-article .lbx-cta {
    position: relative;
    overflow: hidden;
    border-radius: var(--lb-radius);
    padding: 24px 26px;
    color: #fff;
    background: linear-gradient(150deg, #17293B 0%, #0E1A24 62%);
    box-shadow: var(--lb-shadow);
}

.lb-article .lbx-cta p {
    color: rgba(255, 255, 255, .82) !important;
    margin: 0;
}

.lb-article .lbx-cta strong {
    color: #fff;
}

.lb-article .lbx-cta a {
    color: #86B4FF;
}

.lb-article .lbx-cta a:hover {
    color: #fff;
}

.lb-article .lbx-note {
    margin-top: 12px;
    padding: 16px 18px;
    border-radius: 14px;
    background: rgba(14, 26, 36, .035);
    font-size: .78rem !important;
    line-height: 1.7;
    color: var(--lb-muted) !important;
    border-top: 0;
}

/* Categorised FAQ layout used by the editor (.klf) */
.lb-article .klf-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.lb-article .klf-nav a {
    font-size: .82rem;
    padding: 7px 15px;
    border-radius: 999px;
    background: var(--lb-accent-soft);
    border: 1px solid rgba(46, 107, 230, .22);
    color: var(--lb-accent);
    text-decoration: none;
    background-image: none;
}

.lb-article .klf-nav a:hover {
    background: rgba(46, 107, 230, .16);
}

.lb-article .klf-cat {
    font-size: clamp(1.4rem, 2.6vw, 1.85rem);
    line-height: 1.24;
    font-weight: 700;
    margin-top: 56px !important;
    padding-left: 0;
    border-left: 0;
    scroll-margin-top: 110px;
}

.lb-article .klf-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: start;
}

@media (min-width: 768px) {
    .lb-article .klf-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px 20px;
    }
}

.lb-article .klf-grid details + details {
    margin-top: 0;
}

/* Images placed inline by the editor */
.lb-article img {
    max-width: 100%;
    height: auto;
    border-radius: var(--lb-radius);
    box-shadow: var(--lb-shadow-sm);
}

.lb-article figure {
    margin: 0;
}

.lb-article figcaption {
    margin-top: 12px;
    font-size: .8rem;
    line-height: 1.6;
    color: var(--lb-muted);
    padding-left: 14px;
    border-left: 2px solid var(--lb-line);
}

/* ---------- Post header meta -------------------------------------------- */

.lb-postmeta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 18px;
    margin-top: 24px;
    font-size: .82rem;
    color: rgba(255, 255, 255, .74);
}

.lb-postmeta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, .8);
}

.lb-postmeta i {
    color: rgba(255, 255, 255, .6) !important;
    font-size: 16px;
}

.lb-postmeta img {
    width: 22px;
    height: 22px;
    border-radius: 50%;
}

.lb-cat-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(46, 107, 230, .9);
    text-decoration: none;
    margin-bottom: 14px;
}

.lb-cat-pill:hover {
    background: var(--lb-accent-2);
}

/* ---------- Blog index & archives ---------------------------------------- */

.lb-catnav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

.lb-catnav a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .85rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--lb-line);
    color: var(--lb-ink);
    text-decoration: none;
    transition: border-color .2s ease, color .2s ease, transform .2s ease;
}

.lb-catnav a:hover {
    border-color: rgba(46, 107, 230, .4);
    color: var(--lb-accent);
    transform: translateY(-1px);
}

.lb-catnav a span {
    font-size: 11px;
    font-weight: 600;
    color: var(--lb-muted-2);
}

.lb-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 44px;
}

.lb-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--lb-line);
    color: var(--lb-ink);
    font-size: .875rem;
    font-weight: 500;
    text-decoration: none;
    transition: border-color .2s ease, color .2s ease;
}

.lb-pagination .page-numbers:hover {
    border-color: rgba(46, 107, 230, .4);
    color: var(--lb-accent);
}

.lb-pagination .page-numbers.current {
    background: var(--lb-ink);
    border-color: var(--lb-ink);
    color: #fff;
}

.lb-pagination .page-numbers.dots {
    border-color: transparent;
    background: transparent;
}

/* build marker */

/* ---------- On-this-page nav: win against the article's list styling ------
   The nav lives inside .lb-article, whose `ol`/`li` rules (flex column, and a
   numbered circle on every item) are declared later in this file and at equal
   specificity. These scoped rules restore the grid and the single counter.
   ------------------------------------------------------------------------ */

.lb-article .lb-toc-inline ol {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2px 32px;
    counter-reset: toc;
    margin: 0;
    padding: 14px 22px 18px;
    list-style: none;
}

@media (min-width: 640px) {
    .lb-article .lb-toc-inline ol {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .lb-article .lb-toc-inline ol {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.lb-article .lb-toc-inline li {
    counter-increment: toc;
    padding-left: 0;
    min-width: 0;
    color: inherit;
}

.lb-article .lb-toc-inline li::before {
    content: none;
}

.lb-article .lb-toc-inline a {
    display: flex;
    gap: 10px;
    align-items: baseline;
    padding: 8px 0 8px 12px;
    margin-left: -12px;
    border-left: 2px solid transparent;
    font-size: .875rem;
    line-height: 1.5;
    color: var(--lb-muted);
    background-image: none;
    text-decoration: none;
}

.lb-article .lb-toc-inline a::before {
    content: counter(toc, decimal-leading-zero);
    font-size: 10.5px;
    font-weight: 600;
    color: var(--lb-muted-2);
    flex-shrink: 0;
}

.lb-article .lb-toc-inline a:hover,
.lb-article .lb-toc-inline a.is-active {
    color: var(--lb-ink);
    border-left-color: var(--lb-accent);
    background-size: 0 0;
}

.lb-article .lb-toc-inline a.is-active::before {
    color: var(--lb-accent);
}

/* Keep the nav's own summary treatment rather than the article accordion's. */
.lb-article .lb-toc-inline > summary {
    padding: 16px 54px 16px 22px;
    font-size: 11px;
    font-weight: 600;
    color: var(--lb-muted-2);
}

.lb-article .lb-toc-inline > summary:hover {
    color: var(--lb-ink);
}

/* ---------- Components inside .lb-article: beat the prose link/image rules --
   The booking panel and the related-links grid now sit inside the article, so
   the generic `.lb-article a` underline and `.lb-article img` sizing would win
   on cascade order. These scoped rules put each component back in charge.
   ------------------------------------------------------------------------ */

.lb-article .lb-book-meta a,
.lb-article .lb-book .lb-btn,
.lb-article .lb-rel {
    background-image: none;
    text-decoration: none;
    padding-bottom: 0;
}

.lb-article .lb-book-meta a {
    color: rgba(255, 255, 255, .74);
}

.lb-article .lb-book-meta a:hover {
    color: #fff;
    background-size: 0 0;
}

.lb-article .lb-book .lb-btn-primary {
    color: #fff;
}

.lb-article .lb-book .lb-btn:hover {
    background-size: 0 0;
}

.lb-article .lb-rel img {
    width: 74px;
    height: 60px;
    max-width: none;
    border-radius: 11px;
    box-shadow: none;
    object-fit: cover;
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .lb-article .lb-rel img {
        width: 100%;
        height: 132px;
        border-radius: 12px;
    }
}

.lb-article .lb-rel:hover {
    background-size: 0 0;
}

.lb-article .lb-related-t {
    margin-top: 0 !important;
}

/* Media cards and gallery tiles are components too, not prose images. */
.lb-article .lb-mcard img,
.lb-article .lb-tile img {
    border-radius: 0;
    box-shadow: none;
    max-width: none;
    width: 100%;
}

.lb-article .lb-mcard,
.lb-article .lb-tile {
    background-image: none;
    text-decoration: none;
}

/* ==========================================================================
   Categorised FAQ — tabs over accordion panels, with a search across all of them
   ========================================================================== */

.lb-faqx {
    margin-top: 8px;
}

/* ---- Search ------------------------------------------------------------- */

.lb-faqx-search {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 22px;
}

.lb-faqx-search > i {
    position: absolute;
    left: 20px;
    font-size: 19px;
    color: var(--lb-muted-2) !important;
    pointer-events: none;
}

.lb-article .lb-faqx-search input {
    width: 100%;
    padding: 15px 52px 15px 52px;
    border-radius: 999px;
    border: 1px solid var(--lb-line);
    background: var(--lb-surface);
    box-shadow: var(--lb-shadow-sm);
    font-family: "Inter", sans-serif;
    font-size: .95rem;
    color: var(--lb-ink);
    -webkit-appearance: none;
    appearance: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.lb-article .lb-faqx-search input::placeholder {
    color: var(--lb-muted-2);
}

.lb-article .lb-faqx-search input:focus {
    outline: none;
    border-color: rgba(46, 107, 230, .45);
    box-shadow: 0 0 0 4px rgba(46, 107, 230, .12);
}

.lb-faqx-search input::-webkit-search-cancel-button {
    -webkit-appearance: none;
}

.lb-faqx-clear {
    position: absolute;
    right: 14px;
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 50%;
    background: rgba(14, 26, 36, .06);
    cursor: pointer;
    padding: 0;
}

.lb-faqx-clear i {
    font-size: 16px;
    color: var(--lb-muted) !important;
}

.lb-faqx-clear:hover {
    background: rgba(14, 26, 36, .12);
}

/* ---- Category tabs ------------------------------------------------------ */

.lb-faqx-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 30px;
}

.lb-faqx-tab {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid var(--lb-line);
    background: var(--lb-surface);
    font-family: "Inter", sans-serif;
    font-size: .845rem;
    font-weight: 500;
    color: var(--lb-ink);
    cursor: pointer;
    transition: border-color .2s ease, background-color .2s ease, color .2s ease, transform .2s ease;
}

.lb-faqx-tab i {
    font-size: 17px;
    color: var(--lb-muted-2) !important;
    transition: color .2s ease;
}

.lb-faqx-tab span {
    color: inherit !important;
}

.lb-faqx-tab em {
    font-style: normal;
    font-size: 11px;
    font-weight: 600;
    color: var(--lb-muted-2);
    transition: color .2s ease;
}

.lb-faqx-tab:hover {
    transform: translateY(-1px);
    border-color: rgba(46, 107, 230, .35);
}

.lb-faqx-tab.is-active {
    background: var(--lb-ink);
    border-color: var(--lb-ink);
    color: #fff;
    box-shadow: 0 10px 24px -14px rgba(14, 26, 36, .8);
}

.lb-faqx-tab.is-active i,
.lb-faqx-tab.is-active em {
    color: rgba(255, 255, 255, .72) !important;
}

/* ---- Panels ------------------------------------------------------------- */

.lb-faqx-panel {
    display: none;
}

.lb-faqx-panel.is-active {
    display: block;
    animation: lb-faqx-in .28s ease both;
}

@keyframes lb-faqx-in {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.lb-article .lb-faqx-h {
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 0 0 18px !important;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--lb-line);
    font-family: "Inter Tight", sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--lb-ink);
}

.lb-faqx-h i {
    font-size: 20px;
    color: var(--lb-accent) !important;
}

.lb-article .lb-faqx-a {
    padding: 0 20px 19px;
    font-size: .915rem;
    line-height: 1.72;
    color: #46535F;
}

.lb-article .lb-faqx-a p {
    color: #46535F !important;
    margin: 0;
}

/* ---- Search mode: every category shown, non-matching items hidden -------- */

.lb-faqx.is-searching .lb-faqx-tabs {
    opacity: .45;
    pointer-events: none;
}

.lb-faqx.is-searching .lb-faqx-panel {
    display: none;
    animation: none;
}

.lb-faqx.is-searching .lb-faqx-panel.has-match {
    display: block;
    margin-bottom: 34px;
}

.lb-faqx [data-faqx-item].is-hidden {
    display: none;
}

.lb-faqx-empty {
    padding: 26px 22px;
    border-radius: var(--lb-radius);
    border: 1px dashed var(--lb-line);
    background: var(--lb-surface);
    text-align: center;
    font-size: .92rem;
    color: var(--lb-muted) !important;
}

@media (max-width: 639.98px) {
    .lb-faqx-tabs {
        gap: 7px;
    }

    .lb-faqx-tab {
        padding: 9px 13px;
        font-size: .8rem;
    }

    .lb-faqx-tab i {
        display: none;
    }
}

/* `display` on these components would otherwise beat the `hidden` attribute. */
.lb-faqx-clear[hidden],
.lb-faqx-empty[hidden] {
    display: none;
}
