/* ==========================================================================
   EncyLife v7.5 — Premium Sections CSS
   Hero Section + News Ticker + Social Media
   Uses the theme's existing CSS variables (--gold, --navy, --warm-white, etc.)
   ========================================================================== */

/* ==========================================================================
   1. PREMIUM HERO SECTION
   ========================================================================== */
.lt-hero-premium {
        position: relative;
        background-image: var(--hero-bg, none);
        background-size: cover;
        background-position: center;
        background-color: var(--navy, #0F172A);
        overflow: visible;
        margin-top: calc(-1 * var(--nav-height, 66px)); /* Pull hero up under fixed header */
        padding-top: var(--nav-height, 66px); /* Add padding so content starts below header */
}

/* Golden particle rain effect (like MoneyPantry) */
.lt-hero-premium__particles {
        position: absolute;
        inset: 0;
        z-index: 1;
        pointer-events: none;
        overflow: hidden;
}
.lt-hero-particle {
        position: absolute;
        width: 4px;
        height: 4px;
        background: #F59E0B;
        border-radius: 50%;
        opacity: 0;
        box-shadow: 0 0 6px rgba(245, 158, 11, 0.6);
        animation: ltParticleFall linear infinite;
}
@keyframes ltParticleFall {
        0% {
                transform: translateY(-20px) translateX(0);
                opacity: 0;
        }
        10% {
                opacity: 0.8;
        }
        90% {
                opacity: 0.6;
        }
        100% {
                transform: translateY(100vh) translateX(20px);
                opacity: 0;
        }
}
.lt-hero-premium__overlay {
        position: absolute; inset: 0;
        background: linear-gradient(135deg, rgba(15,23,42,0.92) 0%, rgba(15,23,42,0.75) 50%, rgba(15,23,42,0.85) 100%);
        z-index: 2;
}
.lt-hero-premium__inner {
        position: relative; z-index: 3;
        display: grid;
        grid-template-columns: 1.3fr 1fr;
        gap: 48px;
        align-items: center;
        min-height: 480px;
        padding: 64px 24px;
}
.lt-hero-premium__content { color: #fff; }
.lt-hero-premium__title {
        font-family: var(--font-display, "Tajawal", sans-serif);
        font-size: clamp(2rem, 5vw, 3.5rem);
        font-weight: 900;
        line-height: 1.15;
        letter-spacing: -0.02em;
        margin: 0 0 20px;
}
.lt-hero-premium__line1 { display: block; color: #fff; }
.lt-hero-premium__line2 { display: block; }
.lt-hero-premium__desc {
        font-size: 1.05rem;
        line-height: 1.7;
        color: rgba(255,255,255,0.85);
        margin: 0 0 28px;
        max-width: 540px;
}
.lt-hero-premium__desc p { margin: 0; }
.lt-hero-premium__cta {
        font-size: 1rem;
        padding: 14px 28px;
        border-radius: var(--radius-pill, 999px);
        background: var(--gold, #F59E0B);
        color: var(--navy, #0F172A);
        font-weight: 700;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.lt-hero-premium__cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(245,158,11,0.35);
}
.lt-hero-premium__cta svg { transition: transform 0.2s ease; }
.lt-hero-premium__cta:hover svg { transform: translateX(-3px); }

/* Affiliate Promo Cards (replaces "Start Here") */
.lt-promo-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 38px;
}
.lt-promo-card {
        text-decoration: none;
        display: block;
        cursor: pointer;
        perspective: 800px;
}
.lt-promo-card__inner {
        position: relative;
        background: #fff;
        border-radius: 12px;
        padding: 0;
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 0;
        transition: all 0.3s cubic-bezier(0.4, 0.2, 0.2, 1);
        transform-style: preserve-3d;
        border: 1px solid rgba(255,255,255,0.1);
        box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        overflow: hidden;
        height: 100%;
}
.lt-promo-card:hover .lt-promo-card__inner {
        transform: translateY(-6px) rotateX(3deg);
        box-shadow: 0 12px 40px rgba(0,0,0,0.3);
        border-color: var(--promo-color, #F59E0B);
}
.lt-promo-card__image {
        width: 100%;
        aspect-ratio: 3 / 2;
        background-size: cover;
        background-position: center;
        background-color: var(--promo-color, #F59E0B);
        flex-shrink: 0;
}
.lt-promo-card__icon {
        font-size: 2.5rem;
        line-height: 1;
        width: 100%;
        aspect-ratio: 3 / 2;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--promo-color, #F59E0B);
        color: #fff;
        flex-shrink: 0;
}
.lt-promo-card__body {
        padding: 10px 8px;
        flex: 1;
        min-width: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
}
.lt-promo-card__title {
        font-size: 0.8125rem;
        font-weight: 700;
        color: #0F172A;
        margin: 0 0 2px;
        line-height: 1.3;
}
.lt-promo-card__desc {
        font-size: 0.6875rem;
        color: #64748B;
        margin: 0;
        line-height: 1.4;
}
.lt-promo-card__arrow {
        position: absolute;
        bottom: 12px;
        left: 12px;
        font-size: 1rem;
        color: var(--promo-color, #F59E0B);
        opacity: 0;
        transform: translateX(10px);
        transition: all 0.3s ease;
}
.lt-promo-card:hover .lt-promo-card__arrow {
        opacity: 1;
        transform: translateX(0);
}

/* ==========================================================================
   2. NEWS TICKER
   ========================================================================== */
.lt-ticker {
        display: flex;
        align-items: center;
        background: var(--navy, #0F172A);
        color: #fff;
        overflow: hidden;
        border-bottom: 1px solid rgba(255,255,255,0.08);
}
.lt-ticker__label {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 12px 20px;
        background: var(--gold, #F59E0B);
        color: var(--navy, #0F172A);
        font-size: 0.8125rem;
        font-weight: 800;
        white-space: nowrap;
        flex-shrink: 0;
        z-index: 2;
}
.lt-ticker__label svg { flex-shrink: 0; }
.lt-ticker__viewport {
        flex: 1;
        overflow: hidden;
        position: relative;
        min-width: 0;
}
/* News ticker — pure CSS animation like MoneyPantry */
.lt-ticker__track {
        display: inline-flex;
        align-items: center;
        gap: 0;
        white-space: nowrap;
        will-change: transform;
}
.lt-ticker.is-animated .lt-ticker__track {
        animation: ltTickerScroll 60s linear infinite;
}
.lt-ticker:hover .lt-ticker__track { animation-play-state: paused; }
@keyframes ltTickerScroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
}
/* Ensure track never collapses — always fill viewport */
.lt-ticker__track { min-width: 200%; }
.lt-ticker__item {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 20px;
        color: rgba(255,255,255,0.85);
        font-size: 0.875rem;
        font-weight: 500;
        text-decoration: none;
        transition: color 0.2s ease;
        border-left: 1px solid rgba(255,255,255,0.08);
}
.lt-ticker__item:hover { color: #fff; }
.lt-ticker__item-label {
        font-size: 0.6875rem;
        font-weight: 800;
        padding: 2px 8px;
        border-radius: 999px;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 0.04em;
}
.lt-ticker__item-title { overflow: hidden; text-overflow: ellipsis; }

/* ==========================================================================
   3. SOCIAL MEDIA SECTION — MoneyPantry-style dark section
   ========================================================================== */
.lt-social-section {
        padding: 48px 24px;
        background: #0F172A;  /* Dark navy like MoneyPantry */
}
.lt-social-section__head { text-align: center; margin-bottom: 32px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.lt-social-section__head .lt-social-eyebrow {
        display: inline-flex; align-items: center; gap: 6px;
        background: rgba(245,158,11,0.15);
        color: #F59E0B;
        font-size: 0.8125rem; font-weight: 700;
        padding: 6px 16px; border-radius: 999px;
        margin: 0 auto 16px; text-transform: uppercase; letter-spacing: 0.04em;
        text-align: center;
}
.lt-social-section__subtitle {
        display: block;
        font-size: 2.5rem;
        font-weight: 800;
        color: #F59E0B;
        margin: 0 0 20px;
        text-align: center;
        line-height: 1.3;
        direction: ltr;
        unicode-bidi: plaintext;
}
.lt-social-section__title {
        font-family: var(--font-display, "Tajawal", sans-serif);
        font-size: 1.5rem;
        font-weight: 700;
        color: #fff;
        margin: 0 auto 8px;
        letter-spacing: -0.01em;
        text-align: center;
}
.lt-social-section__desc {
        font-size: 1.25rem;
        color: #FFFFFF !important;
        line-height: 1.7;
        max-width: 600px;
        margin: 0 auto;
}
.lt-social-section__desc p,
.lt-social-section__desc span,
.lt-social-section__desc strong,
.lt-social-section__desc em,
.lt-social-section__desc a { margin: 0; color: #FFFFFF !important; }
/* Dark-mode-safe: keep description white on the always-dark social section background. */
body.lt-dark-mode .lt-social-section__desc,
body.lt-dark-mode .lt-social-section__desc p,
body.lt-dark-mode .lt-social-section__desc span,
body.lt-dark-mode .lt-social-section__desc strong { color: #FFFFFF !important; }
.lt-social-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
        max-width: 900px;
        margin: 0 auto;
}

/* Flip card — brand-colored like MoneyPantry */
.lt-social-card {
        perspective: 1200px;
        text-decoration: none;
        height: 200px;
        display: block;
        cursor: pointer;
}
.lt-social-card__inner {
        position: relative;
        width: 100%;
        height: 100%;
        transition: transform 0.6s cubic-bezier(0.4, 0.2, 0.2, 1);
        transform-style: preserve-3d;
}
.lt-social-card:hover .lt-social-card__inner,
.lt-social-card:focus-within .lt-social-card__inner { transform: rotateY(180deg); }
.lt-social-card__front,
.lt-social-card__back {
        position: absolute;
        inset: 0;
        border-radius: 16px;
        padding: 28px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}
.lt-social-card__front {
        background: var(--social-color, #F59E0B);
}
.lt-social-card:hover .lt-social-card__front {
        box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}
.lt-social-card__icon { font-size: 2.5rem; margin-bottom: 12px; line-height: 1; }
.lt-social-card__name {
        font-size: 1.125rem;
        font-weight: 800;
        color: #fff;
        margin-bottom: 4px;
}
.lt-social-card__desc {
        font-size: 0.8125rem;
        color: rgba(255,255,255,0.85);
        line-height: 1.5;
}
.lt-social-card__back {
        background: var(--social-color, #F59E0B);
        color: #fff;
        transform: rotateY(180deg);
}
.lt-social-card__back-label { font-size: 0.8125rem; opacity: 0.85; margin-bottom: 4px; }
.lt-social-card__back-name { font-size: 1.25rem; font-weight: 800; margin-bottom: 8px; }
.lt-social-card__back-account { font-size: 0.875rem; opacity: 0.9; margin-bottom: 12px; word-break: break-word; }
.lt-social-card__back-btn {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        background: rgba(255,255,255,0.2);
        padding: 8px 18px;
        border-radius: 999px;
        font-size: 0.875rem;
        font-weight: 700;
        backdrop-filter: blur(4px);
}

/* ==========================================================================
   6. READING BADGES on article cards
   ========================================================================== */
.lt-card__badges {
        position: absolute;
        top: 10px;
        right: 10px;
        z-index: 5;
        display: flex;
        flex-direction: column;
        gap: 4px;
        align-items: flex-end;
}
.lt-badge {
        display: inline-flex;
        align-items: center;
        gap: 3px;
        padding: 3px 10px;
        border-radius: 999px;
        font-size: 0.625rem;
        font-weight: 700;
        color: #fff;
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        line-height: 1.4;
}
.lt-badge-hot      { background: rgba(239, 68, 68, 0.92); }
.lt-badge-featured { background: rgba(245, 158, 11, 0.92); }
.lt-badge-new      { background: rgba(34, 197, 94, 0.92); }
.lt-badge-quick    { background: rgba(59, 130, 246, 0.92); }

/* ==========================================================================
   7. DARK MODE
   ========================================================================== */
body.lt-dark-mode {
        --warm-white: #0F172A;
        --paper: #1E293B;
        --paper-dk: #334155;
        --ink: #F1F5F9;
        --ink-mid: #CBD5E1;
        --ink-soft: #94A3B8;
        --rule: rgba(255, 255, 255, 0.08);
        --navy: #F1F5F9;
        --lm-bg: #0F172A;
        --lm-card: #1E293B;
        --lm-border: #334155;
        --lm-text: #F1F5F9;
        --lm-muted: #94A3B8;
        background: #0F172A !important;
        color: #F1F5F9 !important;
}
body.lt-dark-mode .site-header {
        background: rgba(15, 23, 42, 0.95) !important;
}
body.lt-dark-mode .site-header.is-scrolled {
        background: rgba(15, 23, 42, 0.98) !important;
}
body.lt-dark-mode .lt-card {
        background: var(--paper) !important;
        color: var(--ink) !important;
}
body.lt-dark-mode .lt-card__title { color: #F1F5F9 !important; }
body.lt-dark-mode .lt-card__excerpt { color: #94A3B8 !important; }
body.lt-dark-mode .lt-card__cta { color: var(--gold, #F59E0B) !important; }
body.lt-dark-mode .footer { background: #0B1120 !important; }
body.lt-dark-mode .lt-ticker { background: #0B1120 !important; }
body.lt-dark-mode .lt-ticker__item { color: rgba(255,255,255,0.85) !important; }
body.lt-dark-mode input.lt-input,
body.lt-dark-mode textarea.lt-input { background: #1E293B !important; color: #F1F5F9 !important; border-color: #334155 !important; }

.lt-dark-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: transparent;
        border: 1px solid var(--rule, rgba(15,23,42,0.08));
        cursor: pointer;
        color: var(--ink, #0F172A);
        transition: all 0.2s ease;
        flex-shrink: 0;
}
.lt-dark-toggle:hover { background: var(--paper, #F8FAFC); border-color: var(--ink-soft, #64748B); }
.lt-dark-toggle svg { width: 20px; height: 20px; }
body.lt-dark-mode .lt-dark-toggle { color: #F59E0B; border-color: rgba(255,255,255,0.15); }
body.lt-dark-mode .lt-dark-toggle:hover { background: rgba(255,255,255,0.05); }
body.lt-dark-mode .lt-dark-toggle .lt-sun-icon { display: none; }
body.lt-dark-mode .lt-dark-toggle .lt-moon-icon { display: block; }
.lt-dark-toggle .lt-sun-icon { display: block; }
.lt-dark-toggle .lt-moon-icon { display: none; }

/* ==========================================================================
   8. LIVE SEARCH
   ========================================================================== */
.lt-live-search {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border: 1px solid var(--border, #E2E8F0);
        border-radius: 0 0 12px 12px;
        box-shadow: 0 12px 40px rgba(15,23,42,0.15);
        max-height: 400px;
        overflow-y: auto;
        z-index: 1000;
        display: none;
}
.lt-live-search.is-open { display: block; }
.lt-live-search__item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 16px;
        border-bottom: 1px solid var(--border-soft, #F1F5F9);
        text-decoration: none;
        color: var(--text, #0F172A);
        transition: background 0.15s ease;
}
.lt-live-search__item:last-child { border-bottom: none; }
.lt-live-search__item:hover { background: var(--primary-soft, rgba(245,158,11,0.10)); }
.lt-live-search__thumb {
        width: 48px; height: 48px;
        border-radius: 8px;
        background-size: cover;
        background-position: center;
        flex-shrink: 0;
        background-color: var(--paper, #F8FAFC);
}
.lt-live-search__body { flex: 1; min-width: 0; }
.lt-live-search__title {
        font-size: 0.875rem;
        font-weight: 600;
        color: var(--text, #0F172A);
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
}
.lt-live-search__meta { font-size: 0.75rem; color: var(--muted, #64748B); }
.lt-live-search__loading { padding: 20px; text-align: center; font-size: 0.875rem; color: var(--muted, #64748B); }
.lt-live-search__empty { padding: 20px; text-align: center; font-size: 0.875rem; color: var(--muted, #64748B); }
body.lt-dark-mode .lt-live-search { background: #1E293B; border-color: #334155; }
body.lt-dark-mode .lt-live-search__item { color: #F1F5F9; }
body.lt-dark-mode .lt-live-search__title { color: #F1F5F9; }
body.lt-dark-mode .lt-live-search__meta { color: #94A3B8; }
body.lt-dark-mode .lt-live-search__item:hover { background: rgba(245,158,11,0.10); }

/* ==========================================================================
   10. FINANCIAL TIPS SECTION
   ========================================================================== */
.lt-tips-section { padding: 48px 24px; background: var(--paper, #F8FAFC); }
.lt-tips-section__head { text-align: center; margin-bottom: 32px; }
.lt-tips-section__title {
        font-family: var(--font-display, "Tajawal", sans-serif);
        font-size: clamp(1.5rem, 3vw, 2rem);
        font-weight: 800;
        color: var(--navy, #0F172A);
        margin: 0 0 8px;
}
.lt-tips-section__desc { font-size: 0.9375rem; color: var(--ink-soft, #64748B); margin: 0; }
.lt-tips-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
        max-width: 1200px;
        margin: 0 auto;
}
.lt-tip-card {
        text-decoration: none;
        display: flex;
        flex-direction: column;
        background: #fff;
        border-radius: 14px;
        overflow: hidden;
        box-shadow: 0 4px 16px rgba(15,23,42,0.06);
        transition: all 0.3s ease;
        border: 1px solid var(--border, #E2E8F0);
}
.lt-tip-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(15,23,42,0.12);
        border-color: var(--gold, #F59E0B);
}
.lt-tip-card__img {
        width: 100%;
        height: 140px;
        background-size: cover;
        background-position: center;
        flex-shrink: 0;
}
.lt-tip-card__img--ph {
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--paper, #F8FAFC);
        color: var(--ink-soft, #64748B);
}
.lt-tip-card__body { padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.lt-tip-card__title {
        font-size: 0.9375rem;
        font-weight: 700;
        color: var(--navy, #0F172A);
        margin: 0;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
}
.lt-tip-card__meta {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        font-size: 0.75rem;
        color: var(--ink-soft, #64748B);
        margin-top: auto;
}
body.lt-dark-mode .lt-tips-section { background: #0B1120; }
body.lt-dark-mode .lt-tip-card { background: #1E293B; border-color: #334155; }
body.lt-dark-mode .lt-tip-card__title { color: #F1F5F9; }
body.lt-dark-mode .lt-tip-card__meta { color: #94A3B8; }

/* ==========================================================================
   11. RESPONSIVE
   ========================================================================== */
.lt-post-select { position: relative; max-width: 480px; }
.lt-post-select-search { padding-left: 36px; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2.5' stroke-linecap='round'><circle cx='11' cy='11' r='8'/><line x1='21' y1='21' x2='16.65' y2='16.65'/></svg>"); background-repeat: no-repeat; background-position: 12px center; }
.lt-post-select-results {
        position: absolute; top: 100%; left: 0; right: 0;
        background: #fff; border: 1px solid var(--lm-border, #E2E8F0);
        border-radius: 0 0 8px 8px; max-height: 240px; overflow-y: auto;
        z-index: 100; box-shadow: 0 8px 24px rgba(15,23,42,0.12);
        display: none;
}
.lt-post-select-results.is-open { display: block; }
.lt-post-select-results__item {
        padding: 10px 14px; cursor: pointer; font-size: 0.875rem;
        border-bottom: 1px solid var(--lm-border-soft, #F1F5F9);
        transition: background 0.15s ease;
}
.lt-post-select-results__item:hover { background: var(--lm-primary-soft, rgba(245,158,11,0.10)); }
.lt-post-select-results__item:last-child { border-bottom: none; }
.lt-post-select-results__item-title { font-weight: 600; color: var(--lm-text, #0F172A); display: block; }
.lt-post-select-results__item-date { font-size: 0.75rem; color: var(--lm-muted, #64748B); }
.lt-post-select-results__loading { padding: 14px; text-align: center; font-size: 0.8125rem; color: var(--lm-muted, #64748B); }
.lt-post-select-clear {
        position: absolute; left: 10px; top: 50%; transform: translateY(-50%);
        cursor: pointer; font-size: 1.125rem; color: var(--lm-muted, #64748B);
        background: var(--lm-card-soft, #F9FAFB); border: 1px solid var(--lm-border, #E2E8F0);
        width: 22px; height: 22px; border-radius: 50%; display: none;
        align-items: center; justify-content: center; line-height: 1;
}
.lt-post-select-clear.is-visible { display: flex; }

/* Repeater */
.lt-repeater { max-width: 100%; }
.lt-repeater-items { display: flex; flex-direction: column; gap: 12px; margin-bottom: 12px; }
.lt-repeater-item {
        border: 1px solid var(--lm-border, #E2E8F0);
        border-radius: var(--lm-radius-md, 12px);
        overflow: hidden;
        background: var(--lm-card-soft, #F9FAFB);
}
.lt-repeater-item-head {
        display: flex; align-items: center; gap: 10px;
        padding: 12px 16px;
        background: var(--lm-card, #fff);
        border-bottom: 1px solid var(--lm-border-soft, #F1F5F9);
        cursor: pointer;
}
.lt-repeater-handle { cursor: grab; color: var(--lm-muted, #64748B); font-size: 1rem; }
.lt-repeater-title { flex: 1; font-weight: 600; font-size: 0.875rem; color: var(--lm-text, #0F172A); }
.lt-repeater-toggle { background: none; border: none; cursor: pointer; font-size: 0.875rem; color: var(--lm-muted, #64748B); padding: 4px; }
.lt-repeater-remove { background: none; border: none; cursor: pointer; font-size: 1.125rem; color: var(--lm-danger, #EF4444); padding: 4px 8px; line-height: 1; }
.lt-repeater-item-body { padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.lt-repeater-item-body p { margin: 0; }
.lt-repeater-item-body label { display: block; font-size: 0.8125rem; font-weight: 600; color: var(--lm-text, #0F172A); margin-bottom: 4px; }
.lt-repeater-item.is-collapsed .lt-repeater-item-body { display: none; }
.lt-repeater-add { align-self: flex-start; }

/* ==========================================================================
   5. RTL adjustments for sections
   ========================================================================== */
html[dir="rtl"] .lt-hero-premium__inner { direction: rtl; }
html[dir="rtl"] .lt-hero-premium__content { text-align: right; }
html[dir="rtl"] .lt-start-here-cat { text-align: right; }
html[dir="rtl"] .lt-start-here-article:hover { transform: translateX(3px); }
html[dir="rtl"] .lt-ticker__label { flex-direction: row-reverse; }
html[dir="rtl"] .lt-ticker__item { border-left: none; border-right: 1px solid rgba(255,255,255,0.08); }
html[dir="rtl"] .lt-social-section__head { text-align: right; }

/* ==========================================================================
   6. RESPONSIVE
   ========================================================================== */
@media (max-width: 968px) {
        .lt-hero-premium__inner { grid-template-columns: 1fr; gap: 32px; padding: 48px 24px; }
        .lt-social-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
        .lt-hero-premium__inner {
                padding: 32px 16px;
                min-height: auto;
                gap: 24px;
        }
        .lt-hero-premium__title {
                font-size: 1.5rem;
                line-height: 1.2;
                margin: 0 0 12px;
        }
        .lt-hero-premium__desc {
                font-size: 0.9375rem;
                margin: 0 0 16px;
                line-height: 1.5;
        }
        .lt-hero-premium__cta {
                font-size: 0.875rem;
                padding: 10px 20px;
        }
        .lt-promo-grid {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
                margin-top: 24px;
        }
        .lt-promo-card__inner {
                padding: 12px 8px;
        }
        .lt-promo-card__icon {
                width: 36px; height: 36px;
                font-size: 1.25rem;
        }
        .lt-promo-card__image { aspect-ratio: 3 / 2; }
        .lt-promo-card__icon { aspect-ratio: 3 / 2; font-size: 2rem; }
        .lt-promo-card__title { font-size: 0.75rem; }
        .lt-promo-card__desc { font-size: 0.6875rem; }
}
@media (max-width: 600px) {
        .lt-hero-premium__inner {
                padding: 24px 12px;
                gap: 20px;
        }
        .lt-hero-premium__title {
                font-size: 1.3rem !important;
                margin: 0 0 10px;
        }
        .lt-hero-premium__desc {
                font-size: 0.875rem;
                margin: 0 0 14px;
        }
        .lt-hero-premium__cta {
                font-size: 0.8125rem;
                padding: 8px 16px;
        }
        .lt-promo-grid {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
                margin-top: 16px;
        }
        .lt-promo-card__inner {
                padding: 10px 6px;
        }
        .lt-promo-card__icon {
                width: 32px; height: 32px;
                font-size: 1rem;
        }
        .lt-promo-card__image { aspect-ratio: 3 / 2; }
        .lt-promo-card__icon { aspect-ratio: 3 / 2; font-size: 1.75rem; }
        .lt-promo-card__title { font-size: 0.6875rem; line-height: 1.2; }
        .lt-promo-card__desc { display: none; }
        .lt-promo-card__arrow { display: none; }
        .lt-ticker__label { padding: 10px 14px; font-size: 0.75rem; }
        .lt-ticker__item { padding: 8px 14px; font-size: 0.8125rem; }
        .lt-social-grid { grid-template-columns: 1fr; }
        .lt-social-section { padding: 32px 16px; }
        .lt-social-section__subtitle { font-size: 1.5rem; }
        .lt-social-section__desc { font-size: 1rem; }
        .lt-tips-grid { grid-template-columns: 1fr; }
        .lt-tip-card__img { height: 120px; }
}
@media (max-width: 400px) {
        .lt-hero-premium__title { font-size: 1.25rem !important; }
        .lt-promo-grid { grid-template-columns: 1fr; }
}
