:root {
    --lbt-primary: var(--lss-accent, #00A86B);
    --lbt-dark: var(--lss-primary-dark, #101E2C);
    --lbt-text: var(--lss-ink, #1F2937);
    --lbt-muted: var(--lss-muted, #4B5563);
    --lbt-light: var(--lss-surface, #F8FAFC);
    --lbt-card: #ffffff;
    --lbt-border: var(--lss-border, rgba(16,30,44,.12));
    --lbt-shadow: 0 18px 45px rgba(var(--lss-primary-dark-rgb, 8, 37, 77), 0.12);
    --lbt-radius: 24px;
}

.lbt-page {
    background: #fff;
    color: var(--lbt-text);
    font-family: inherit;
}

.lbt-container {
    width: min(100% - 40px, 1200px);
    margin: 0 auto;
}

.lbt-hero {
    position: relative;
    padding: clamp(64px, 7vw, 108px) 0 58px;
    color: #fff;
    background:
        var(--lss-hero-gradient, linear-gradient(125deg, #101E2C 0%, #0D1821 58%, #133D3F 100%));
    overflow: hidden;
}

.lbt-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255,255,255,.05) 0 1px, transparent 1px 18px),
        linear-gradient(45deg, rgba(255,255,255,.025) 0 1px, transparent 1px 20px);
    opacity: .35;
    pointer-events: none;
}

.lbt-hero::after {
    content: "";
    position: absolute;
    right: -170px;
    bottom: -220px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: var(--lss-accent-glow, rgba(201, 137, 43, .20));
}

.lbt-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .72fr);
    gap: clamp(28px, 4vw, 54px);
    align-items: center;
}

.lbt-style-minimal .lbt-hero__grid {
    grid-template-columns: minmax(0, 920px);
}

.lbt-breadcrumbs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 30px;
    font-weight: 800;
    font-size: 14px;
}

.lbt-breadcrumbs a,
.lbt-breadcrumbs span {
    color: rgba(255, 255, 255, .78);
}

.lbt-kicker,
.lbt-card-label {
    margin: 0 0 12px;
    color: #00A86B;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.lbt-hero h1 {
    max-width: 860px;
    margin: 0 0 22px;
    color: #fff;
    font-size: clamp(42px, 6.1vw, 78px);
    line-height: 1;
    letter-spacing: -.06em;
    font-weight: 950;
}

.lbt-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 26px;
    color: rgba(255, 255, 255, .84);
    font-weight: 850;
}

.lbt-meta span {
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
}

.lbt-hero__actions,
.lbt-inline-cta__buttons,
.lbt-hero-card__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.lbt-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 999px;
    border: 0;
    padding: 13px 24px;
    background: linear-gradient(135deg, var(--lbt-primary), #5EB552);
    color: #fff !important;
    font-weight: 950;
    text-decoration: none !important;
    box-shadow: 0 14px 28px rgba(201, 137, 43, .24);
}

.lbt-button--light {
    background: #fff;
    color: var(--lbt-dark) !important;
    box-shadow: none;
}

.lbt-button--dark {
    background: var(--lbt-dark);
    color: #fff !important;
    box-shadow: none;
}

.lbt-hero-card {
    position: relative;
    border-radius: 30px;
    padding: 30px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.88)),
        radial-gradient(circle at 100% 0%, rgba(245,158,11,.18), transparent 40%);
    color: var(--lbt-text);
    border: 1px solid rgba(255,255,255,.45);
    box-shadow: 0 30px 75px rgba(0,0,0,.28);
    overflow: hidden;
}

.lbt-hero-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-top: 5px solid var(--lbt-primary);
    pointer-events: none;
}

.lbt-hero-card__logo {
    max-width: 190px;
    max-height: 82px;
    object-fit: contain;
    margin-bottom: 22px;
}

.lbt-hero-card h2 {
    margin: 0 0 18px;
    color: #15171b;
    font-size: clamp(25px, 3vw, 36px);
    line-height: 1.05;
    letter-spacing: -.035em;
}

.lbt-card-grid {
    display: grid;
    gap: 12px;
    margin: 22px 0;
}

.lbt-card-grid span {
    display: block;
    padding: 14px 16px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #eee;
    color: var(--lbt-muted);
}

.lbt-card-grid strong {
    display: block;
    color: var(--lbt-primary);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.lbt-trustbar {
    background: #101812;
    border-top: 1px solid rgba(201,137,43,.55);
    border-bottom: 1px solid rgba(201,137,43,.35);
}

.lbt-trustbar .lbt-container {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    padding: 13px 20px;
    color: #fff;
    font-weight: 900;
    font-size: 14px;
}

.lbt-body {
    padding: 72px 0;
    background:
        radial-gradient(circle at 0% 12%, rgba(15,79,184,.05), transparent 24%),
        linear-gradient(180deg, #fff, #fff 62%, #F8FAFC);
}

.lbt-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 38px;
    align-items: start;
}

.lbt-article {
    min-width: 0;
}

.lbt-intro {
    margin-bottom: 36px;
    color: #29303a;
    font-size: 19px;
    line-height: 1.85;
}

.lbt-guide-box,
.lbt-answer,
.lbt-inline-cta,
.lbt-related,
.lbt-final-cta {
    margin-bottom: 42px;
    border: 1px solid var(--lbt-border);
    border-left: 5px solid var(--lbt-primary);
    border-radius: var(--lbt-radius);
    background:
        radial-gradient(circle at 100% 100%, rgba(183,15,34,.075), transparent 17%),
        var(--lbt-card);
    box-shadow: var(--lbt-shadow);
    padding: clamp(24px, 3vw, 34px);
}

.lbt-guide-box h2,
.lbt-answer h2,
.lbt-related h2,
.lbt-final-cta h2,
.lbt-sidebar h2 {
    margin: 0 0 14px;
    color: var(--lbt-dark);
    font-size: clamp(25px, 3vw, 34px);
    line-height: 1.1;
    letter-spacing: -.035em;
}

.lbt-guide-box ol {
    display: grid;
    gap: 10px;
    margin: 0;
    padding-left: 22px;
    font-weight: 850;
}

.lbt-guide-box li::marker {
    color: var(--lbt-primary);
    font-weight: 950;
}

.lbt-answer p,
.lbt-final-cta p,
.lbt-inline-cta p,
.lbt-related p {
    color: var(--lbt-muted);
    font-size: 18px;
    line-height: 1.75;
}

.lbt-section {
    margin: 0 0 48px;
}

.lbt-section h2 {
    margin: 0 0 16px;
    color: var(--lbt-dark);
    font-size: clamp(32px, 4.2vw, 52px);
    line-height: 1.05;
    letter-spacing: -.055em;
}

.lbt-section p {
    color: #272d35;
    font-size: 19px;
    line-height: 1.85;
}

.lbt-inline-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
}

.lbt-related__grid {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.lbt-related__grid a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #e7e7e7;
    border-radius: 999px;
    background: #fff;
    padding: 10px 16px;
    color: var(--lbt-dark);
    font-weight: 900;
    text-decoration: none !important;
}

.lbt-related__grid span {
    color: var(--lbt-primary);
}

.lbt-faq {
    margin: 50px 0;
}

.lbt-faq h2 {
    margin: 0 0 22px;
    color: var(--lbt-dark);
    font-size: clamp(32px, 4vw, 48px);
    letter-spacing: -.045em;
}

.lbt-faq details {
    margin-bottom: 14px;
    border: 1px solid #eeeeee;
    border-left: 4px solid var(--lbt-primary);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(0,0,0,.06);
    padding: 18px 20px;
}

.lbt-faq summary {
    cursor: pointer;
    color: var(--lbt-dark);
    font-weight: 950;
    font-size: 19px;
}

.lbt-faq p {
    color: var(--lbt-muted);
    font-size: 17px;
    line-height: 1.75;
}

.lbt-sidebar {
    position: sticky;
    top: 24px;
    align-self: start;
    display: grid;
    gap: 18px;
}

.lbt-side-card {
    border: 1px solid var(--lbt-border);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--lbt-shadow);
    padding: 26px;
}

.lbt-side-card--cta {
    background:
        linear-gradient(180deg, #fff, #fff7f8),
        radial-gradient(circle at 100% 0%, rgba(201,137,43,.12), transparent 45%);
}

.lbt-side-card p {
    color: var(--lbt-muted);
    line-height: 1.7;
}

.lbt-side-card .lbt-button {
    width: 100%;
    margin-top: 10px;
}

.lbt-side-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lbt-side-links li + li {
    border-top: 1px solid #ececec;
}

.lbt-side-links a {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 13px 0;
    color: var(--lbt-dark);
    font-weight: 950;
    text-decoration: none !important;
}

.lbt-side-links span {
    color: var(--lbt-primary);
}

.lbt-floating {
    position: fixed;
    right: 22px;
    bottom: 24px;
    z-index: 999;
    display: grid;
    gap: 10px;
}

.lbt-floating a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    border-radius: 999px;
    padding: 13px 18px;
    color: #fff;
    background: var(--lbt-primary);
    font-weight: 950;
    text-decoration: none !important;
    box-shadow: 0 14px 28px rgba(0,0,0,.18);
}

.lbt-floating a:first-child {
    background: #050505;
}

@media (max-width: 1040px) {
    .lbt-hero__grid,
    .lbt-layout {
        grid-template-columns: 1fr;
    }

    .lbt-sidebar {
        position: static !important;
        top: auto !important;
    }

    .lbt-inline-cta {
        grid-template-columns: 1fr;
    }

    .lbt-hero-card {
        max-width: 720px;
    }
}

@media (max-width: 720px) {
    .lbt-container {
        width: min(100% - 28px, 1200px);
    }

    .lbt-hero {
        padding-top: 46px;
    }

    .lbt-hero h1 {
        font-size: clamp(36px, 12vw, 54px);
    }

    .lbt-trustbar .lbt-container {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
    }

    .lbt-section h2 {
        font-size: 34px;
    }

    .lbt-floating {
        left: 12px;
        right: 12px;
        bottom: 12px;
        grid-template-columns: repeat(3, 1fr);
    }

    .lbt-floating a {
        min-width: 0;
        padding: 12px 8px;
        font-size: 13px;
    }
}


.lbt-eeat {
    margin: 28px 0;
    padding: 24px;
    border: 1px solid var(--lbt-border);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 14px 32px rgba(8, 37, 77, .08);
}

.lbt-eeat h2 {
    margin: 0 0 10px;
}

.lbt-eeat p {
    margin: 0;
}

.lbt-eeat ul {
    display: grid;
    gap: 10px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.lbt-eeat li {
    position: relative;
    padding-left: 28px;
    color: var(--lbt-text);
    font-weight: 750;
}

.lbt-eeat li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--lbt-primary);
    font-weight: 950;
}


/* v1.1.4 cache + color + sidebar visibility fix */
.lbt-hero {
    background:
        radial-gradient(circle at 86% 18%, rgba(245, 158, 11, .26), transparent 26%),
        linear-gradient(125deg, #101E2C 0%, #0D1821 58%, #133D3F 100%) !important;
}

.lbt-hero::after {
    background: rgba(245, 158, 11, .16) !important;
}

.lbt-kicker,
.lbt-card-label {
    color: #00A86B !important;
}

.lbt-button {
    background: linear-gradient(135deg, #00A86B, #5EB552) !important;
    box-shadow: 0 14px 28px rgba(245, 158, 11, .24) !important;
}

.lbt-sidebar {
    position: sticky !important;
    top: 24px !important;
}

.lbt-side-card--cta {
    background:
        linear-gradient(180deg, #fff, #F8FAFC),
        radial-gradient(circle at 100% 0%, rgba(245,158,11,.10), transparent 45%) !important;
}


body.single-post .lbt-hero{background:radial-gradient(circle at 86% 18%, rgba(245,158,11,.26), transparent 26%),linear-gradient(125deg,#101E2C 0%,#0D1821 58%,#133D3F 100%)!important;}
body.single-post .lbt-body{background:radial-gradient(circle at 0% 12%, rgba(15,79,184,.05), transparent 24%),linear-gradient(180deg,#fff,#fff 62%,#F8FAFC)!important;}
body.single-post .lbt-sidebar{position:sticky!important;top:24px!important;}
body.single-post .lbt-floating{bottom:18px;}


/* v1.3.2 TRS theme color lock: remove old blue imported-blog hero. */
body.single-post .lbt-hero,
.lbt-hero {
    background:
        radial-gradient(circle at 86% 18%, rgba(0,168,107,.20), transparent 26%),
        radial-gradient(circle at 20% 12%, rgba(75,180,181,.22), transparent 30%),
        linear-gradient(135deg, #101E2C 0%, #0D1821 62%, #133D3F 100%) !important;
}
body.single-post .lbt-body,
.lbt-body {
    background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%) !important;
}
.lbt-kicker,
.lbt-card-label {
    color: #00A86B !important;
}
.lbt-button {
    background: linear-gradient(135deg, #00A86B, #5EB552) !important;
    box-shadow: 0 14px 28px rgba(0,168,107,.22) !important;
}
.lbt-button--light {
    background: #FFFFFF !important;
    color: #101E2C !important;
}
.lbt-button--dark {
    background: #101E2C !important;
    color: #FFFFFF !important;
}
.lbt-hero-card::before {
    border-top-color: #00A86B !important;
}
.lbt-card-grid span,
.lbt-side-card,
.lbt-eeat,
.lbt-content-card {
    border-color: rgba(16,30,44,.12) !important;
}

/* v1.3.3 SEO/AIO polish: tighter hero, facts box, city link, source note. */
body.single-post .lbt-hero,
.lbt-hero {
    padding: clamp(46px, 5.4vw, 82px) 0 46px !important;
}
body.single-post .lbt-hero h1,
.lbt-hero h1 {
    font-size: clamp(36px, 5.15vw, 66px) !important;
    line-height: .98 !important;
    letter-spacing: -.052em !important;
}
.lbt-breadcrumbs {
    margin-bottom: 20px !important;
}
.lbt-meta {
    margin-bottom: 20px !important;
}
.lbt-facts-box,
.lbt-source-note,
.lbt-city-link {
    border: 1px solid rgba(16,30,44,.12);
    background: linear-gradient(180deg, #FFFFFF, #F8FAFC);
    box-shadow: 0 16px 36px rgba(16,30,44,.08);
    border-radius: 22px;
    padding: clamp(20px, 3vw, 30px);
    margin: 24px 0;
}
.lbt-facts-box h2,
.lbt-source-note h2 {
    margin: 0 0 16px;
    color: #101E2C;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.08;
}
.lbt-facts-box dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
}
.lbt-facts-box div {
    padding: 14px;
    border-radius: 16px;
    border: 1px solid rgba(16,30,44,.10);
    background: #fff;
}
.lbt-facts-box dt {
    color: #00A86B;
    font-weight: 950;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.lbt-facts-box dd {
    margin: 0;
    color: #1F2937;
    font-weight: 750;
    line-height: 1.42;
}
.lbt-city-link {
    font-weight: 750;
}
.lbt-source-note {
    background: #F8FAFC;
}
.lbt-source-note a,
.lbt-city-link a {
    color: #00A86B;
    font-weight: 900;
}
@media (max-width: 780px) {
    body.single-post .lbt-hero,
    .lbt-hero {
        padding: 34px 0 34px !important;
    }
    body.single-post .lbt-hero h1,
    .lbt-hero h1 {
        font-size: clamp(34px, 11vw, 50px) !important;
    }
    .lbt-facts-box dl {
        grid-template-columns: 1fr;
    }
}
