/* ==========================================================================
   Long Tweets Theme — assets/css/theme.css v4.0
   Complete stylesheet: MoneyPantry-identical logo + exact 1-line title +
   2-line excerpt card + drawer + footer + ads + payment + RTL + responsive.
   ========================================================================== */

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
        margin: 0; padding: 0;
        font-family: var(--font-body);
        font-size: 16px; line-height: 1.65;
        color: var(--ink); background: var(--warm-white);
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
        overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
        font-family: var(--font-display);
        font-weight: 700; line-height: 1.18;
        color: var(--navy); margin: 0 0 0.5em;
        letter-spacing: -0.01em;
}
p { margin: 0 0 1.1rem; }
a { color: var(--coral); text-decoration: none; transition: color 0.22s ease, opacity 0.22s ease; }
a:hover { color: var(--gold); }
img, svg, video { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0 0 1.1rem 1.2rem; padding: 0; }
li { margin-bottom: 0.4rem; }
button { font-family: inherit; font-size: inherit; color: inherit; background: none; border: none; padding: 0; cursor: pointer; transition: opacity 0.2s ease, transform 0.2s ease; }
:focus-visible { outline: 3px solid var(--gold-lt); outline-offset: 2px; border-radius: 3px; }

.sr-only {
        position: absolute !important;
        width: 1px; height: 1px;
        padding: 0; margin: -1px;
        overflow: hidden; clip: rect(0,0,0,0);
        white-space: nowrap; border: 0;
}
.skip-link {
        position: absolute !important;
        left: -9999px; top: 0; z-index: 99999;
        background: var(--gold); color: var(--navy) !important;
        padding: 12px 20px; font-weight: 700; border-radius: 0 0 6px 0;
}
.skip-link:focus { left: 0; clip: auto; width: auto; height: auto; margin: 0; overflow: visible; }

.lt-container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

.lt-btn {
        display: inline-flex; align-items: center; gap: 8px;
        padding: 12px 22px; font-weight: 700; font-size: 0.95rem;
        border-radius: 999px; border: 2px solid transparent;
        transition: all 0.22s ease; letter-spacing: 0.01em;
        cursor: pointer;
}
.lt-btn--primary { background: var(--gold); color: var(--navy); }
.lt-btn--primary:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: var(--sh-md); }
.lt-btn--paypal { background: #0070ba; color: #fff; }
.lt-btn--paypal:hover { background: #005ea6; }
.lt-btn--small { padding: 6px 12px; font-size: 0.85rem; }
.lt-btn--copy { background: var(--paper); color: var(--ink); padding: 6px 14px; font-size: 0.85rem; }
.lt-btn--copy:hover { background: var(--gold); color: var(--navy); }

.lt-empty-state { text-align: center; padding: 80px 24px; max-width: 560px; margin: 0 auto; }
.lt-page-links { clear: both; margin: 1.5rem 0; }

/* ---- Progress bar ---- */
.progress-bar { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 1000; background: transparent; pointer-events: none; }
.progress-bar__fill {
        height: 100%; width: 0;
        background: linear-gradient(90deg, var(--gold), var(--gold-lt));
        box-shadow: 0 0 8px rgba(240, 165, 0, 0.5);
        transition: width 0.05s linear;
}

/* ---- Back to top ---- */
.back-to-top {
        position: fixed; bottom: 24px; right: 24px; z-index: 800;
        width: 48px; height: 48px; border-radius: 50%;
        background: var(--navy); color: #fff;
        display: flex; align-items: center; justify-content: center;
        box-shadow: var(--sh-md);
        opacity: 0; transform: translateY(20px); visibility: hidden;
        transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
}
.back-to-top.is-visible { opacity: 1; transform: translateY(0); visibility: visible; }
.back-to-top:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }

/* ==========================================================================
   TOP BANNER + AD SLOTS
   ========================================================================== */
.lt-top-banner { background: var(--navy); color: #fff; padding: 8px 0; text-align: center; }
.lt-footer-banner { padding: 16px 0; text-align: center; }

.lt-ad { margin: 24px auto; max-width: var(--max-width); padding: 0 24px; text-align: center; }
.lt-ad__label {
        display: block; font-size: 0.7rem; text-transform: uppercase;
        letter-spacing: 0.14em; color: var(--ink-soft);
        margin-bottom: 8px; opacity: 0.7;
}
.lt-ad ins.adsbygoogle, .lt-ad iframe, .lt-ad img { margin: 0 auto; display: block; max-width: 100%; }
.lt-ad.is-responsive ins.adsbygoogle { width: 100%; }
.lt-widget-ad { text-align: center; margin: 12px 0; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
        position: sticky; top: 0; z-index: 900;
        background: rgba(250, 250, 248, 0.78);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border-bottom: 1px solid var(--rule);
        transition: box-shadow 0.3s ease, background 0.3s ease;
}
.has-sticky-header .site-header { position: sticky; }
.site-header.is-scrolled { box-shadow: var(--sh-sm); background: rgba(250, 250, 248, 0.92); }

.lt-header-inner {
        height: var(--nav-height);
        display: flex; align-items: center; gap: 20px;
}
.lt-header-centered { flex-direction: column; height: auto; padding: 12px 24px; gap: 8px; }
.lt-header-minimal { justify-content: space-between; }
.lt-header-minimal .lt-nav { display: none; }

/* ==========================================================================
   LOGO — MoneyPantry IDENTICAL styling
   <span>Long</span><em>Tweets</em>
   ========================================================================== */
.lt-logo { flex-shrink: 0; }
.lt-logo__text {
        font-family: var(--font-display);
        font-size: 23px;
        font-weight: 900;
        letter-spacing: -0.5px;
        color: var(--navy);
        display: inline-flex;
        align-items: baseline;
        position: relative;
        overflow: hidden;
        line-height: 1;
}
.lt-logo__text span { color: var(--navy); }
.lt-logo__text em {
        font-style: normal;
        color: var(--gold);
        background: linear-gradient(120deg, var(--gold-dim), var(--gold-lt), var(--gold));
        background-size: 200% 100%;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        transition: background-position 0.6s ease;
        margin-left: 0.25em;
}
.lt-logo__text:hover em {
        background-position: -100% 0;
        animation: shimmer 1.4s linear infinite;
}
@keyframes shimmer {
        0%   { background-position: 200% 0; }
        100% { background-position: -200% 0; }
}
.footer-logo { font-size: 1.5rem; margin-bottom: 14px; }
.footer-logo span { color: inherit; }
.custom-logo { max-height: 50px; width: auto; }

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.lt-nav { flex: 1; display: flex; justify-content: center; }
.lt-menu-align-left   .lt-nav { justify-content: flex-start; }
.lt-menu-align-right  .lt-nav { justify-content: flex-end; }

.lt-nav-list { display: flex; list-style: none; margin: 0; padding: 0; gap: 4px; }
.lt-nav-list .menu-item a {
        display: inline-block; padding: 8px 14px;
        font-weight: 500; font-size: 0.95rem;
        color: var(--ink-mid); border-radius: 999px;
        position: relative;
}
.lt-nav-list .menu-item a::after {
        content: ''; position: absolute; bottom: 4px; left: 14px; right: 14px; height: 2px;
        background: var(--gold); border-radius: 2px;
        transform: scaleX(0); transform-origin: left;
        transition: transform 0.22s ease;
}
.lt-nav-list .menu-item a:hover,
.lt-nav-list .menu-item.current-menu-item > a { color: var(--navy); }
.lt-nav-list .menu-item a:hover::after,
.lt-nav-list .menu-item.current-menu-item > a::after { transform: scaleX(1); }

.lt-header-tools { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.lt-search-form {
        position: relative; display: flex; align-items: center;
        background: var(--white); border: 1px solid var(--paper-dk);
        border-radius: 999px; padding: 6px 14px; width: 220px;
        transition: width 0.3s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.lt-search-form:focus-within { width: 280px; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(240, 165, 0, 0.12); }
.lt-search-icon { display: inline-flex; color: var(--ink-soft); margin-right: 8px; }
.lt-search-field { border: none; background: transparent; outline: none; font-family: inherit; font-size: 0.9rem; width: 100%; color: var(--ink); }
.lt-search-field::placeholder { color: var(--ink-soft); }

.lt-bookmark-trigger {
        position: relative; width: 40px; height: 40px;
        display: inline-flex; align-items: center; justify-content: center;
        color: var(--ink-mid); border-radius: 999px;
        transition: background 0.2s ease, color 0.2s ease;
}
.lt-bookmark-trigger:hover { background: var(--paper); color: var(--coral); }
.lt-bookmark-pill {
        position: absolute; top: 0; right: 0;
        min-width: 18px; height: 18px; padding: 0 5px;
        border-radius: 999px; background: var(--coral); color: #fff;
        font-size: 0.7rem; font-weight: 700;
        display: flex; align-items: center; justify-content: center;
        transform: scale(0); transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.lt-bookmark-pill.is-visible { transform: scale(1); }

.lt-hamburger {
        display: none; width: 44px; height: 44px;
        flex-direction: column; justify-content: center; align-items: center; gap: 5px;
        border-radius: 6px;
}
.lt-hamburger__bar { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform 0.3s ease, opacity 0.2s ease; }
.lt-hamburger.is-active .lt-hamburger__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lt-hamburger.is-active .lt-hamburger__bar:nth-child(2) { opacity: 0; }
.lt-hamburger.is-active .lt-hamburger__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.lt-mobile-menu {
        position: fixed; top: var(--nav-height); left: 0; right: 0; bottom: 0;
        background: var(--warm-white); z-index: 899;
        transform: translateY(-100%); opacity: 0; visibility: hidden;
        transition: transform 0.4s ease, opacity 0.3s ease, visibility 0.3s ease;
        overflow-y: auto; padding: 24px;
}
.lt-mobile-menu.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
.lt-mobile-nav-list { flex-direction: column; list-style: none; margin: 0 0 24px; padding: 0; gap: 0; }
.lt-mobile-nav-list .menu-item { border-bottom: 1px solid var(--rule); }
.lt-mobile-nav-list .menu-item a {
        display: block; padding: 16px 8px;
        font-family: var(--font-display); font-size: 1.2rem; color: var(--navy);
}
.lt-mobile-nav-list .menu-item a:hover { color: var(--gold); padding-left: 16px; }
.lt-mobile-search { margin-top: 24px; }
.lt-mobile-search .lt-search-form { width: 100%; }

/* ==========================================================================
   CATEGORY HEADER
   ========================================================================== */
.category-header { position: relative; background: var(--navy); color: var(--warm-white); padding: 60px 0 56px; overflow: hidden; }
.category-header__bg {
        position: absolute; inset: 0;
        background:
                radial-gradient(circle at 80% 0%, rgba(240, 165, 0, 0.18), transparent 50%),
                radial-gradient(circle at 10% 100%, rgba(232, 82, 42, 0.12), transparent 55%);
        pointer-events: none;
}
.category-header__inner { position: relative; z-index: 1; max-width: 880px; }

.category-eyebrow {
        display: inline-flex; align-items: center; gap: 8px;
        font-family: var(--font-body); font-size: 0.78rem; font-weight: 700;
        letter-spacing: 0.12em; text-transform: uppercase;
        color: var(--gold);
        background: rgba(240, 165, 0, 0.12);
        padding: 6px 14px; border-radius: 999px;
        margin: 0 0 20px;
}
.category-eyebrow svg { color: var(--gold-lt); }

.category-title {
        font-size: clamp(2.4rem, 5vw, 3.4rem);
        color: #fff; margin: 0 0 20px;
        line-height: 1.08; letter-spacing: -0.02em;
}

.category-description { font-size: 1.06rem; line-height: 1.7; color: rgba(250, 250, 248, 0.78); max-width: 720px; }
.category-description p { margin-bottom: 1rem; }
.category-description a { color: var(--gold-lt); text-decoration: underline; text-underline-offset: 3px; }
.category-description a:hover { color: #fff; }

/* "Start Here" links section (inside hero). */
.category-start-here {
        margin-top: 32px;
        padding-top: 28px;
        border-top: 1px solid rgba(250, 250, 248, 0.12);
}
.category-start-here__title {
        font-size: 0.9rem;
        font-family: var(--font-body);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        color: var(--gold-lt);
        margin: 0 0 14px;
}
.category-start-here__list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px 24px;
}
.category-start-here__list a {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: var(--warm-white);
        font-size: 0.95rem;
        font-weight: 500;
        padding: 6px 0;
        text-decoration: none;
        transition: color 0.2s ease;
}
.category-start-here__list a:hover { color: var(--gold-lt); }
.category-start-here__bullet { color: var(--gold); font-weight: 700; transition: transform 0.2s ease; }
.category-start-here__list a:hover .category-start-here__bullet { transform: translateX(4px); }
@media (max-width: 640px) {
        .category-start-here__list { grid-template-columns: 1fr; }
}

/* ==========================================================================
   CARD GRID — EXACT card spec from screenshot
   ========================================================================== */
.lt-card-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
        padding: 56px 0 32px;
}

.lt-card {
        background: var(--white);
        border-radius: 14px;
        overflow: hidden;
        border: 1px solid var(--rule);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        position: relative;
        display: flex;
        flex-direction: column;
}
.lt-card-style-minimal .lt-card { box-shadow: none; border: none; background: transparent; }
.lt-card-style-clean .lt-card { border: none; box-shadow: none; }
.lt-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(15,23,42,0.12); }

.lt-card__link { display: flex; flex-direction: column; height: 100%; color: inherit; outline: none; }
.lt-card__link:focus-visible .lt-card__media { box-shadow: 0 0 0 3px var(--gold-lt); }

.lt-card__media {
        position: relative;
        aspect-ratio: 3 / 2;
        overflow: hidden;
        background: var(--paper);
        margin: 0;
        padding: 0;
}
.lt-card__media img,
.lt-card__media picture,
.lt-card__media figure {
        display: block;
        margin: 0 !important;
        padding: 0 !important;
        border: 0 !important;
        max-width: none !important;
        width: 100%;
        height: 100%;
}
.lt-card__media picture {
        display: block;
        width: 100%;
        height: 100%;
}
.lt-card__media picture img {
        width: 100%;
        height: 100%;
}
.lt-card__img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transition: transform 0.5s ease;
        display: block;
}
.lt-card:hover .lt-card__img { transform: scale(1.02); }
.lt-card__img--placeholder {
        display: flex; align-items: center; justify-content: center;
        color: var(--ink-soft);
        background: linear-gradient(135deg, var(--paper), var(--paper-dk));
}

.lt-card__readtime {
        position: absolute; top: 12px; right: 12px;
        background: rgba(15, 23, 42, 0.72); color: #fff;
        font-size: 11px; font-weight: 600; padding: 4px 10px;
        border-radius: 999px; backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
}

.lt-card__bookmark {
        position: absolute; top: 12px; left: 12px; z-index: 2;
        width: 36px; height: 36px;
        display: inline-flex; align-items: center; justify-content: center;
        background: rgba(255, 255, 255, 0.92); color: var(--ink-mid);
        border-radius: 999px; box-shadow: var(--sh-sm);
        opacity: 0; transform: translateY(-4px);
        transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease, color 0.2s ease;
}
.lt-card:hover .lt-card__bookmark,
.lt-card__bookmark:focus-visible { opacity: 1; transform: translateY(0); }
.lt-card__bookmark:hover { background: #fff; color: var(--coral); transform: scale(1.08); }
.lt-card__bookmark.is-saved { opacity: 1; transform: translateY(0); background: var(--coral); color: #fff; }
.lt-card__bookmark.is-saved .lt-card__bookmark-icon { fill: #fff; }

.lt-card__overlay {
        position: absolute; inset: auto 0 0 0; padding: 14px;
        background: linear-gradient(to top, rgba(240,165,0,0.95), rgba(232,82,42,0.85), transparent);
        transform: translateY(100%); opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
}
.lt-card:hover .lt-card__overlay { transform: translateY(0); opacity: 1; }
.lt-card__overlay-cta { color: #fff; font-weight: 700; font-size: 0.9rem; }

.lt-card__body { padding: 18px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.lt-card__cats { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.lt-card__cat {
        font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
        text-transform: uppercase; color: var(--gold);
        background: rgba(240, 165, 0, 0.10); padding: 4px 9px; border-radius: 999px;
}
.lt-card__cat:hover { background: var(--gold); color: var(--navy); }

/* CRITICAL: Title = TWO LINES (per spec — matches MoneyPantry). */
.masonry-card-title {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        line-height: 1.35;
        max-height: calc(1.35em * 2);
}
.lt-card__title {
        font-size: 1.25rem;
        color: var(--navy);
        margin: 0 0 10px;
        min-height: calc(1.35em * 2);
}
.lt-card:hover .lt-card__title { color: var(--coral); }

/* CRITICAL: Excerpt = EXACTLY TWO LINES (per spec). */
.masonry-card-excerpt {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        line-height: 1.6;
        max-height: calc(1.6em * 2);
}
.lt-card__excerpt {
        font-size: 0.92rem;
        color: var(--ink-soft);
        margin: 0 0 16px;
        min-height: calc(1.6em * 2);
}

.lt-card__cta {
        display: inline-flex; align-items: center; gap: 6px;
        font-weight: 700; font-size: 0.88rem; color: var(--gold);
        transition: gap 0.2s ease;
}
.lt-card:hover .lt-card__cta { gap: 8px; }

/* Card footer — views (left) + Read more (right) */
.lt-card__footer {
        display: flex; align-items: center; justify-content: space-between;
        gap: 12px; margin-top: auto; padding-top: 8px;
}
.lt-card__views {
        display: inline-flex; align-items: center; gap: 5px;
        font-size: 0.78rem; color: var(--ink-soft);
        font-weight: 500;
}
.lt-card__views svg { color: var(--ink-soft); flex-shrink: 0; }
.lt-card__views-num { color: var(--ink-soft); }

/* ==========================================================================
   PAGINATION
   ========================================================================== */
.lt-pagination { padding: 24px 0 64px; }
.lt-pagination ul, .lt-pagination .page-numbers {
        display: flex; flex-wrap: wrap; justify-content: center;
        list-style: none; margin: 0; padding: 0; gap: 6px;
}
.lt-pagination a, .lt-pagination span {
        display: inline-flex; align-items: center; justify-content: center;
        min-width: 40px; height: 40px; padding: 0 14px;
        border: 1px solid var(--paper-dk); border-radius: 6px;
        font-weight: 600; font-size: 0.92rem; color: var(--ink-mid);
        background: var(--white); transition: all 0.22s ease;
}
.lt-pagination a:hover { border-color: var(--gold); background: var(--gold); color: var(--navy); transform: translateY(-1px); }
.lt-pagination .current { background: var(--gold); border-color: var(--gold); color: var(--navy); font-weight: 700; }

/* ==========================================================================
   DRAWER
   ========================================================================== */
.lt-drawer { position: fixed; inset: 0; z-index: 1100; visibility: hidden; pointer-events: none; }
.lt-drawer.is-open { visibility: visible; pointer-events: auto; }
.lt-drawer__overlay {
        position: absolute; inset: 0;
        background: rgba(15, 23, 42, 0.55);
        opacity: 0; transition: opacity 0.3s ease;
}
.lt-drawer.is-open .lt-drawer__overlay { opacity: 1; }
.lt-drawer__panel {
        position: absolute; top: 0; right: 0; bottom: 0;
        width: 420px; max-width: 90vw;
        background: var(--warm-white);
        display: flex; flex-direction: column;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: var(--sh-lg);
}
.lt-drawer.is-open .lt-drawer__panel { transform: translateX(0); }
.lt-drawer__header {
        display: flex; align-items: center; justify-content: space-between;
        padding: 20px 22px; border-bottom: 1px solid var(--rule); background: var(--white);
}
.lt-drawer__title {
        display: flex; align-items: center; gap: 10px;
        font-size: 1.1rem; color: var(--navy); margin: 0;
}
.lt-drawer__title svg { color: var(--gold); }
.lt-drawer__count {
        background: var(--coral); color: #fff;
        font-family: var(--font-body); font-size: 0.75rem; font-weight: 700;
        min-width: 22px; height: 22px; border-radius: 999px;
        display: inline-flex; align-items: center; justify-content: center; padding: 0 6px;
}
.lt-drawer__close { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; color: var(--ink-soft); border-radius: 6px; }
.lt-drawer__close:hover { background: var(--paper); color: var(--navy); }
.lt-drawer__body { flex: 1; overflow-y: auto; padding: 16px; }
.lt-drawer__empty { text-align: center; padding: 48px 20px; color: var(--ink-soft); }
.lt-drawer__empty svg { color: var(--paper-dk); margin: 0 auto 16px; }
.lt-drawer__empty h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 6px; }
.lt-drawer__empty p { font-size: 0.9rem; margin-bottom: 0; }
.lt-drawer__item {
        display: flex; gap: 12px; padding: 12px;
        border-radius: 14px; background: var(--white);
        border: 1px solid var(--rule); margin-bottom: 10px;
        transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.lt-drawer__item:hover { box-shadow: var(--sh-sm); transform: translateY(-1px); }
.lt-drawer__item-img { width: 64px; height: 48px; object-fit: cover; border-radius: 6px; flex-shrink: 0; background: var(--paper); }
.lt-drawer__item-img-placeholder {
        width: 64px; height: 48px; border-radius: 6px; background: var(--paper);
        display: flex; align-items: center; justify-content: center;
        color: var(--ink-soft); flex-shrink: 0;
}
.lt-drawer__item-body { flex: 1; min-width: 0; }
.lt-drawer__item-title {
        font-family: var(--font-display); font-size: 0.95rem; font-weight: 700;
        color: var(--navy); margin: 0 0 4px; line-height: 1.3;
        display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.lt-drawer__item-title a { color: inherit; }
.lt-drawer__item-meta { font-size: 0.75rem; color: var(--ink-soft); }
.lt-drawer__item-remove { align-self: flex-start; color: var(--ink-soft); font-size: 1.2rem; line-height: 1; padding: 4px; border-radius: 6px; }
.lt-drawer__item-remove:hover { color: var(--coral); background: var(--paper); }
.lt-drawer__footer { padding: 14px 22px; border-top: 1px solid var(--rule); background: var(--white); text-align: center; }

/* ==========================================================================
   MOBILE CTA
   ========================================================================== */
.lt-mobile-cta {
        position: fixed; left: 0; right: 0; bottom: 0; z-index: 850;
        display: none;
        background: var(--white);
        border-top: 1px solid var(--rule);
        padding: 10px 16px;
        box-shadow: 0 -2px 14px rgba(15, 23, 42, 0.07);
}
.lt-mobile-cta__btn {
        display: flex; align-items: center; justify-content: center; gap: 8px;
        width: 100%; padding: 14px;
        background: var(--coral); color: #fff;
        font-weight: 700; font-size: 0.95rem; border-radius: 999px;
}
.lt-mobile-cta__btn:hover { background: #d3441e; color: #fff; }

/* ==========================================================================
   NEWSLETTER
   ========================================================================== */
.lt-newsletter { background: var(--navy); color: #fff; padding: 32px; border-radius: 14px; text-align: center; }
.lt-newsletter__title { color: #fff; font-size: 1.4rem; margin: 0 0 8px; }
.lt-newsletter__subtitle { color: rgba(250, 250, 248, 0.7); margin: 0 0 20px; font-size: 0.92rem; }
.lt-newsletter__desc { color: rgba(250, 250, 248, 0.7); margin: 0 0 20px; font-size: 0.95rem; }
.lt-newsletter__form { display: flex; gap: 8px; max-width: 480px; margin: 0 auto; }
.lt-newsletter__form input { flex: 1; padding: 12px 16px; border: none; border-radius: 999px; font-family: inherit; font-size: 0.95rem; }
.lt-newsletter__form button { padding: 12px 22px; background: var(--gold); color: var(--navy); border: none; border-radius: 999px; font-weight: 700; font-size: 0.95rem; cursor: pointer; }
.lt-newsletter__form button:hover { background: var(--gold-lt); }

/* ==========================================================================
   SIDEBAR + WIDGETS
   ========================================================================== */
.site-sidebar { width: 100%; }
.sidebar-widget { background: var(--white); padding: 20px; border-radius: 14px; margin-bottom: 20px; border: 1px solid var(--rule); }
.sidebar-widget-title { font-size: 1rem; margin: 0 0 16px; color: var(--navy); font-family: var(--font-body); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }

.lt-recent-posts { list-style: none; margin: 0; padding: 0; }
.lt-recent-posts__item { margin-bottom: 12px; }
.lt-recent-posts__item a { display: flex; align-items: center; gap: 12px; color: var(--ink); padding: 4px; border-radius: 6px; }
.lt-recent-posts__item a:hover { color: var(--coral); }
.lt-recent-posts__thumb { width: 60px; height: 60px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.lt-recent-posts__thumb img { width: 100%; height: 100%; object-fit: cover; }
.lt-recent-posts__title { flex: 1; font-size: 0.92rem; font-weight: 600; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.lt-recent-posts__meta { font-size: 0.72rem; color: var(--ink-soft); flex-shrink: 0; }

.lt-widget-newsletter { text-align: center; }
.lt-widget-newsletter__sub { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 12px; }
.lt-widget-newsletter__form { display: flex; flex-direction: column; gap: 8px; }
.lt-widget-newsletter__form input { padding: 10px; border: 1px solid var(--paper-dk); border-radius: 6px; font-family: inherit; font-size: 0.9rem; }
.lt-widget-newsletter__form button { padding: 10px; background: var(--coral); color: #fff; border: none; border-radius: 6px; font-weight: 700; font-size: 0.9rem; cursor: pointer; }

.lt-widget-social { display: flex; gap: 10px; flex-wrap: wrap; }
.lt-widget-social__link {
        width: 38px; height: 38px;
        display: inline-flex; align-items: center; justify-content: center;
        border-radius: 50%; background: var(--paper); color: var(--ink-mid);
        transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.lt-widget-social__link:hover { background: var(--coral); color: #fff; transform: translateY(-2px); }

/* ==========================================================================
   SINGLE POST — centered layout + smaller featured image + TOC
   ========================================================================== */
.lt-single { padding: 0; }

.lt-single__header {
        background: var(--warm-white);
        padding: 56px 0 32px;
        border-bottom: 1px solid var(--rule);
}
.lt-single__center {
        text-align: center;
        display: flex;
        justify-content: center;
}
.lt-single__header-inner {
        max-width: 760px;
        margin: 0 auto;
        padding: 0 24px;
}
.lt-single__header-inner .lt-breadcrumbs { justify-content: center; }
.lt-single__header-inner .lt-breadcrumbs ol { justify-content: center; }

.lt-single__cats {
        display: flex; flex-wrap: wrap; gap: 8px;
        justify-content: center;
        margin-bottom: 18px;
}
.lt-single__title {
        font-size: clamp(2rem, 4vw, 3rem);
        line-height: 1.12;
        margin: 0 0 18px;
        color: var(--navy);
        text-align: center;
}
.lt-single__meta {
        display: flex; align-items: center; flex-wrap: wrap; gap: 10px;
        justify-content: center;
        font-size: 0.88rem;
        color: var(--ink-soft);
}
.lt-single__author { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--ink-mid); }
.lt-single__avatar { border-radius: 50%; width: 32px; height: 32px; }
.lt-single__dot { color: var(--paper-dk); }

/* Featured image: capped to wider content width (920px), centered. */
.lt-single__content-wrap {
        max-width: 920px;
        margin: 0 auto;
        padding: 32px 24px 56px;
}
.lt-single__featured {
        margin: 0 0 32px;
        text-align: center;
}
.lt-single__featured-img {
        width: 100%;
        max-width: 100%;
        height: auto;
        border-radius: 14px;
        box-shadow: var(--sh-md);
        display: block;
        margin: 0 auto;
}
.lt-single__featured-caption {
        font-size: 0.85rem;
        color: var(--ink-soft);
        text-align: center;
        margin-top: 12px;
        font-style: italic;
}

/* The actual post content stays centered (max-width: 880px on smaller screens). */
.lt-single__content {
        font-size: 1.08rem;
        line-height: 1.78;
        color: var(--ink);
        max-width: 880px;
        margin: 0 auto;
}
.lt-single__content > * { margin-bottom: 1.4rem; }

/* CRITICAL: Make sure H2/H3/H4 headings in article body look like real headings. */
.lt-single__content h2,
.lt-single__content h3,
.lt-single__content h4,
.lt-single__content h5,
.lt-single__content h6 {
        display: block;
        font-family: var(--font-display) !important;
        font-weight: 700 !important;
        color: var(--navy) !important;
        line-height: 1.25;
        letter-spacing: -0.01em;
        margin-top: 2.4rem;
        margin-bottom: 1rem;
}
.lt-single__content h2 {
        font-size: 1.85rem;
        line-height: 1.22;
        border-bottom: 2px solid var(--gold);
        padding-bottom: 8px;
        scroll-margin-top: 80px;
}
.lt-single__content h3 {
        font-size: 1.45rem;
        line-height: 1.3;
        scroll-margin-top: 80px;
}
.lt-single__content h4 {
        font-size: 1.2rem;
        line-height: 1.35;
        color: var(--ink-mid) !important;
        text-transform: uppercase;
        letter-spacing: 0.05em;
}
.lt-single__content h5 {
        font-size: 1.05rem;
        color: var(--ink-mid) !important;
}
.lt-single__content h6 {
        font-size: 0.95rem;
        color: var(--ink-soft) !important;
        text-transform: uppercase;
        letter-spacing: 0.08em;
}

/* WordPress block editor headings (wp-block-heading class). */
.lt-single__content h2.wp-block-heading,
.lt-single__content h3.wp-block-heading,
.lt-single__content h4.wp-block-heading {
        font-family: var(--font-display) !important;
        font-weight: 700 !important;
        color: var(--navy) !important;
}

.lt-single__content a { color: var(--coral); text-decoration: underline; text-underline-offset: 3px; }
.lt-single__content a:hover { color: var(--gold); }
.lt-single__content blockquote {
        border-left: 4px solid var(--gold);
        padding: 14px 22px; margin: 1.6rem 0;
        background: var(--paper); border-radius: 6px;
        font-style: italic; color: var(--ink-mid);
}
.lt-single__content img { border-radius: 6px; }
.lt-single__content pre {
        background: var(--navy); color: var(--warm-white);
        padding: 18px; border-radius: 6px;
        overflow-x: auto; font-size: 0.92rem;
}
.lt-single__content figure { margin: 1.6rem 0; }
.lt-single__content figcaption {
        font-size: 0.85rem; color: var(--ink-soft);
        text-align: center; margin-top: 8px;
}

.lt-single__footer {
        margin-top: 40px;
        padding-top: 28px;
        border-top: 1px solid var(--rule);
}
.lt-single__tags {
        display: flex; flex-wrap: wrap; gap: 8px;
        align-items: center; justify-content: center;
        margin-bottom: 22px;
}
.lt-single__tag-label {
        font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
        color: var(--ink-soft); letter-spacing: 0.08em;
}
.lt-single__tags a {
        font-size: 0.82rem; color: var(--ink-mid);
        background: var(--paper); padding: 4px 10px; border-radius: 999px;
}
.lt-single__tags a:hover { background: var(--gold); color: var(--navy); }

/* ==========================================================================
   TABLE OF CONTENTS (TOC) — auto-generated from H2/H3
   ========================================================================== */
.lt-toc {
        background: var(--paper);
        border: 1px solid var(--rule);
        border-radius: 14px;
        padding: 20px 24px;
        margin: 0 0 32px;
        max-width: 720px;
        margin-left: auto;
        margin-right: auto;
}
.lt-toc__inner { width: 100%; }
.lt-toc__header {
        display: flex; align-items: center; justify-content: space-between;
        gap: 12px;
        padding-bottom: 12px;
        margin-bottom: 12px;
        border-bottom: 2px solid var(--gold);
}
.lt-toc__title {
        font-family: var(--font-display);
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--navy);
        margin: 0;
}
.lt-toc__toggle {
        width: 32px; height: 32px;
        display: flex; align-items: center; justify-content: center;
        background: var(--white); border: 1px solid var(--rule);
        border-radius: 8px; color: var(--ink-mid); cursor: pointer;
        transition: transform 0.3s ease, background 0.2s ease;
}
.lt-toc__toggle:hover { background: var(--gold); color: var(--navy); }
.lt-toc__toggle svg { transition: transform 0.3s ease; }
.lt-toc__toggle.is-collapsed svg { transform: rotate(-90deg); }

.lt-toc__list {
        list-style: decimal;
        margin: 0;
        padding-left: 1.4em;
        counter-reset: toc-counter;
}
.lt-toc__list > li {
        margin-bottom: 8px;
        padding-left: 4px;
}
.lt-toc__list > li::marker {
        color: var(--gold);
        font-weight: 700;
}
.lt-toc__item--h3 {
        list-style: disc;
        padding-left: 16px;
        margin-bottom: 6px;
        font-size: 0.92rem;
}
.lt-toc__item--h3::marker { color: var(--ink-soft); }
.lt-toc__item--h3 .lt-toc__link { color: var(--ink-soft); }

.lt-toc__link {
        color: var(--ink-mid);
        text-decoration: none;
        font-size: 0.95rem;
        font-weight: 500;
        line-height: 1.5;
        transition: color 0.2s ease, padding-left 0.2s ease;
        display: inline-block;
}
.lt-toc__link:hover {
        color: var(--coral);
        padding-left: 4px;
}

.lt-toc.is-collapsed .lt-toc__list {
        display: none;
}

/* ==========================================================================
   PAGE
   ========================================================================== */
.lt-page__header { background: var(--warm-white); padding: 56px 0 32px; border-bottom: 1px solid var(--rule); }
.lt-page__title { font-size: clamp(2rem, 4vw, 2.8rem); margin: 0; color: var(--navy); }
.lt-page__container { padding: 40px 0; display: flex; gap: 40px; align-items: flex-start; }
.lt-page__content { max-width: 760px; flex: 1; font-size: 1.08rem; line-height: 1.78; }
.lt-page__featured { margin: 0 0 24px; }
.lt-page__featured-img { width: 100%; border-radius: 14px; box-shadow: var(--sh-md); }

/* ==========================================================================
   BREADCRUMBS
   ========================================================================== */
.lt-breadcrumbs { font-size: 0.82rem; margin-bottom: 16px; }
.lt-breadcrumbs ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.lt-breadcrumb-item::after { content: '/'; color: var(--paper-dk); margin-left: 8px; }
.lt-breadcrumb-item.is-current::after { content: ''; }
.lt-breadcrumb-item.is-current span { color: var(--ink-soft); }
.lt-breadcrumb-item a { color: var(--ink-mid); }
.lt-breadcrumb-item a:hover { color: var(--gold); }

/* ==========================================================================
   SEARCH HEADER + 404
   ========================================================================== */
.search-header { background: var(--navy); color: var(--warm-white); padding: 48px 0 40px; position: relative; overflow: hidden; }
.search-header::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 80% 0%, rgba(240, 165, 0, 0.18), transparent 50%); pointer-events: none; }
.search-header .lt-container { position: relative; z-index: 1; }
.search-header .category-title { color: #fff; margin: 0; }

.lt-404 { padding: 80px 0 120px; text-align: center; background: var(--navy); color: var(--warm-white); min-height: 60vh; display: flex; align-items: center; }
.lt-404__code {
        font-family: var(--font-display); font-size: clamp(6rem, 18vw, 12rem);
        font-weight: 900; line-height: 1; margin: 0 0 16px;
        background: linear-gradient(135deg, var(--gold), var(--coral));
        -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.lt-404__title { color: #fff; font-size: clamp(1.6rem, 3vw, 2.4rem); margin: 0 0 16px; }
.lt-404__desc { color: rgba(250, 250, 248, 0.7); max-width: 520px; margin: 0 auto 32px; font-size: 1rem; }
.lt-404__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.lt-404__search .lt-search-form { width: 100%; max-width: 480px; margin: 0 auto; background: var(--white); color: var(--ink); }

/* ==========================================================================
   COMMENTS
   ========================================================================== */
.lt-comments { max-width: 720px; margin: 56px auto; padding: 0 24px; }
.lt-comments__title { font-size: 1.5rem; margin: 0 0 24px; color: var(--navy); }
.lt-comments__list { list-style: none; margin: 0 0 32px; padding: 0; }
.lt-comments__list .comment { padding: 18px 0; border-bottom: 1px solid var(--rule); }
.lt-comments__list .children { list-style: none; margin-left: 24px; padding-left: 18px; border-left: 2px solid var(--rule); }
.lt-comments__form input, .lt-comments__form textarea { width: 100%; padding: 12px; border: 1px solid var(--paper-dk); border-radius: 6px; font-family: inherit; font-size: 0.95rem; margin-bottom: 12px; }
.lt-comments__form input:focus, .lt-comments__form textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(240, 165, 0, 0.12); }

/* ==========================================================================
   FOOTER — MoneyPantry-identical layout
   ========================================================================== */
.site-footer {
        background: var(--navy);
        color: rgba(250, 250, 248, 0.78);
        margin-top: 40px;
}

/* Top section (4-column grid) */
.foot-top { padding: 72px 0 56px; }
.foot-top-inner {
        display: grid;
        grid-template-columns: 2.2fr 1fr 1.4fr 1.4fr;
        gap: 48px;
        max-width: var(--max-width);
        margin: 0 auto;
        padding: 0 24px;
}
.foot-col { min-width: 0; }

/* Brand column */
.footer-logo.logo-text,
.foot-col--brand .logo-text {
        font-family: var(--font-display);
        font-size: 23px;
        font-weight: 900;
        color: #fff;
        text-decoration: none;
        letter-spacing: -0.5px;
        display: inline-block;
        margin-bottom: 14px;
}
.foot-col--brand .logo-text span { color: #fff; }
.foot-col--brand .logo-text em {
        font-style: normal;
        color: var(--gold);
        background: linear-gradient(120deg, var(--gold-dim), var(--gold-lt), var(--gold));
        background-size: 200% 100%;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-left: 0.25em;
}

.foot-tagline {
        font-size: 0.92rem;
        line-height: 1.75;
        color: rgba(250, 250, 248, 0.62);
        margin-bottom: 22px;
        max-width: 380px;
}

/* Social icons — circular dark buttons */
.foot-social {
        display: flex;
        gap: 8px;
        margin-bottom: 24px;
}
.foot-social a {
        width: 32px;
        height: 32px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 50%;
        color: rgba(250, 250, 248, 0.78);
        transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.foot-social a svg { width: 16px; height: 16px; fill: currentColor; }
.foot-social a:hover {
        background: var(--gold);
        color: var(--navy);
        transform: translateY(-2px);
}

/* "About Long Tweets" subnav */
.foot-site-links { margin-top: 16px; }
.foot-site-links-label {
        display: block;
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: rgba(250, 250, 248, 0.55);
        margin-bottom: 12px;
}
.foot-site-links ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 8px 18px;
}
.foot-site-links a {
        font-size: 0.85rem;
        color: rgba(250, 250, 248, 0.72);
        text-decoration: none;
        transition: color 0.2s ease;
}
.foot-site-links a:hover { color: var(--gold-lt); }

/* Other columns */
.foot-col-title {
        font-family: var(--font-body);
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: rgba(250, 250, 248, 0.85);
        margin: 0 0 18px;
}
.foot-col ul {
        list-style: none;
        margin: 0;
        padding: 0;
}
.foot-col ul li { margin-bottom: 10px; }
.foot-col ul a {
        font-size: 0.92rem;
        color: rgba(250, 250, 248, 0.72);
        text-decoration: none;
        transition: color 0.2s ease, padding-left 0.2s ease;
}
.foot-col ul a:hover {
        color: var(--gold-lt);
        padding-left: 4px;
}

/* Book column */
.foot-book-text {
        font-size: 0.92rem;
        line-height: 1.65;
        color: rgba(250, 250, 248, 0.72);
        margin-bottom: 18px;
}
.foot-book-text a {
        color: var(--gold-lt);
        text-decoration: underline;
        text-underline-offset: 3px;
}
.foot-book-text a:hover { color: var(--gold); }
.foot-book-img { display: inline-block; }
.foot-book-img img {
        width: 140px;
        height: auto;
        border-radius: 6px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
        transition: transform 0.3s ease;
}
.foot-book-img:hover img { transform: translateY(-3px) rotate(-2deg); }

/* Bottom bar — copyright + disclaimer */
.foot-bot {
        border-top: 1px solid rgba(250, 250, 248, 0.08);
        padding: 28px 0;
        font-size: 0.78rem;
        color: rgba(250, 250, 248, 0.5);
        line-height: 1.7;
}
.foot-bot a {
        color: var(--gold-lt);
        text-decoration: underline;
        text-underline-offset: 3px;
}
.foot-bot a:hover { color: var(--gold); }


/* ==========================================================================
   PAYMENT SHORTCODES
   ========================================================================== */
.lt-payment-wrap { max-width: 720px; margin: 40px auto; padding: 0 24px; }
.lt-notice { padding: 14px 18px; border-radius: 8px; margin-bottom: 20px; }
.lt-notice-success { background: #dcfce7; color: #166534; border: 1px solid #86efac; }
.lt-notice-error { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
.lt-product-card { background: var(--white); padding: 28px; border-radius: 14px; box-shadow: var(--sh-sm); margin-bottom: 24px; text-align: center; }
.lt-product-card__title { font-size: 1.8rem; margin: 0 0 12px; color: var(--navy); }
.lt-product-card__desc { color: var(--ink-soft); margin-bottom: 18px; }
.lt-product-card__price { font-size: 2.5rem; font-weight: 900; color: var(--gold); font-family: var(--font-display); }
.lt-payment-method { background: var(--white); padding: 24px; border-radius: 14px; box-shadow: var(--sh-sm); margin-bottom: 20px; }
.lt-payment-method h3 { margin-top: 0; }
.lt-payment-method small { color: var(--ink-soft); font-weight: 400; }
.lt-usdt-instructions { background: var(--paper); padding: 14px; border-radius: 8px; font-size: 0.92rem; margin-bottom: 16px; }
.lt-usdt-wallet { display: flex; gap: 8px; align-items: center; margin-bottom: 16px; }
.lt-usdt-wallet input { flex: 1; padding: 10px 12px; border: 1px solid var(--paper-dk); border-radius: 6px; font-family: monospace; font-size: 0.9rem; }
.lt-usdt-wallet label { display: block; font-size: 0.85rem; font-weight: 700; margin-bottom: 6px; color: var(--ink); }
.lt-usdt-qr { text-align: center; margin: 16px 0; }
.lt-usdt-qr img { width: 180px; height: 180px; margin: 0 auto; }
.lt-usdt-form p { margin-bottom: 14px; }
.lt-usdt-form label { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 6px; }
.lt-usdt-form input[type="text"], .lt-usdt-form input[type="email"] { width: 100%; padding: 10px 12px; border: 1px solid var(--paper-dk); border-radius: 6px; font-family: inherit; }
.lt-usdt-form input[type="file"] { width: 100%; padding: 8px; border: 1px dashed var(--paper-dk); border-radius: 6px; }

.lt-payment-history-table { width: 100%; border-collapse: collapse; }
.lt-payment-history-table th, .lt-payment-history-table td { padding: 12px; text-align: left; border-bottom: 1px solid var(--rule); }
.lt-payment-history-table th { background: var(--paper); font-weight: 700; font-size: 0.85rem; }

.lt-pay-status { padding: 4px 10px; border-radius: 999px; font-size: 0.78rem; font-weight: 700; }
.lt-pay-pending { background: #fef3c7; color: #92400e; }
.lt-pay-completed { background: #dcfce7; color: #166534; }
.lt-pay-failed { background: #fee2e2; color: #991b1b; }
.lt-pay-refunded { background: #e0e7ff; color: #3730a3; }

/* ==========================================================================
   POPUP AD
   ========================================================================== */
.lt-popup-overlay { position: fixed; inset: 0; z-index: 1200; background: rgba(15, 23, 42, 0.75); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; }
.lt-popup-overlay.is-open { opacity: 1; visibility: visible; }
.lt-popup { background: var(--white); padding: 30px; border-radius: 14px; max-width: 500px; width: 90%; position: relative; }
.lt-popup__close { position: absolute; top: 10px; right: 14px; font-size: 26px; line-height: 1; color: var(--ink-soft); background: none; border: none; cursor: pointer; }
.lt-popup__close:hover { color: var(--coral); }

/* ==========================================================================
   COOKIE BANNER
   ========================================================================== */
.lt-cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 1200; background: var(--navy); color: var(--warm-white); padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; box-shadow: 0 -4px 24px rgba(0,0,0,0.2); }
.lt-cookie-banner p { margin: 0; font-size: 0.9rem; }
.lt-cookie-banner button { background: var(--gold); color: var(--navy); padding: 8px 18px; border-radius: 999px; font-weight: 700; font-size: 0.85rem; }

/* ==========================================================================
   REVEAL ANIMATIONS
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; will-change: opacity, transform; }
.reveal--visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
        *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
        .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 900px) {
        .lt-card-grid { grid-template-columns: repeat(2, 1fr); }
        .lt-single__container, .lt-page__container { flex-direction: column; }
        .site-sidebar { width: 100%; }
}

@media (max-width: 820px) {
        .lt-nav { display: none; }
        .lt-hamburger { display: inline-flex; }
        .lt-header-tools .lt-search-form { display: none; }
        .footer-grid-4, .footer-grid-3, .footer-grid-2 { grid-template-columns: 1fr; gap: 32px; }
        .footer-col--brand { grid-column: auto; }
        .lt-mobile-cta { display: block; }
        .back-to-top { bottom: 84px; }
        .lt-single__content { font-size: 1rem; }
        .lt-single__content-wrap { padding: 24px 16px 40px; }
        .lt-single__content h2 { font-size: 1.5rem; }
        .lt-single__content h3 { font-size: 1.25rem; }
}

@media (max-width: 640px) {
        .lt-container { padding: 0 16px; }
        .footer-grid-4, .footer-grid-3, .footer-grid-2 { grid-template-columns: 1fr; }
        .lt-404__actions { flex-direction: column; }
        .lt-404__actions .lt-btn { width: 100%; justify-content: center; }
        .lt-drawer__panel { width: 100%; }
}

@media (max-width: 480px) {
        .lt-card-grid { grid-template-columns: 1fr; gap: 20px; }
        .lt-logo__text { font-size: 18px; }
        .category-header { padding: 40px 0 36px; }
        .lt-card__title { font-size: 1.1rem; }
        .lt-card__body { padding: 14px 16px 18px; }
}

@media (min-width: 1201px) {
        .lt-card-grid { gap: 32px; }
}

/* ==========================================================================
   RTL SUPPORT
   ========================================================================== */
html[dir="rtl"] body { direction: rtl; text-align: right; }
html[dir="rtl"] .lt-header-inner { flex-direction: row-reverse; }
html[dir="rtl"] .lt-nav-list { flex-direction: row-reverse; }
html[dir="rtl"] .lt-search-icon { margin-right: 0; margin-left: 8px; }
html[dir="rtl"] .lt-card__bookmark { left: auto; right: 12px; }
html[dir="rtl"] .lt-card__readtime { right: auto; left: 12px; }
html[dir="rtl"] .lt-card__cta-arrow,
html[dir="rtl"] .category-start-here__bullet { transform: scaleX(-1); }
html[dir="rtl"] .lt-drawer__panel { right: auto; left: 0; transform: translateX(-100%); }
html[dir="rtl"] .lt-drawer.is-open .lt-drawer__panel { transform: translateX(0); }
