/* ═══════════════════════════════════════════
   LELE TOURS — Main Stylesheet v1.0
   Light/Dark Mode + Readability + Scrollable Tables + CTA Buttons
   Brand: navy #16345C + coral #E0483D
   ═══════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* ─── LIGHT MODE (Default) ─────────────── */
:root, [data-theme="light"] {
  --bg:#FBF9F5; --surface:#FFFFFF; --surface2:#F4F1EA; --surface3:#E9E4D9;
  --accent:#E0483D; --accent-lt:#EE6459; --accent-dk:#B8362C;
  --brand:#16345C;
  --text:#16273D; --text-2:#4A5A6E; --text-3:#8A94A2;
  --border:rgba(20,45,80,0.10); --border2:rgba(20,45,80,0.17);
  --post-text:#26313F; --post-heading:#14273D; --post-link:#C13A30; --post-link-h:#8E2B23;
  --post-meta:#6A7686; --post-code-bg:#F4F1EA; --post-quote-bg:#FBF6EE; --post-quote-border:#E0483D;
  --font-head:'Poppins',system-ui,-apple-system,sans-serif;
  --font-body:'Nunito Sans',system-ui,-apple-system,sans-serif;
  --font-display:'Playfair Display',Georgia,serif;
  --font-serif:'Playfair Display',Georgia,serif;
  --font-post:'Lora',Georgia,serif;
  --radius:10px; --radius-lg:16px;
  --fs-post-body:18px; --fs-post-h2:30px; --fs-post-h3:23px; --fs-post-lh:1.85;
}

/* ─── DARK MODE (Night Ocean) ──────────── */
[data-theme="dark"] {
  --bg:#0C1220; --surface:#121B2E; --surface2:#1A2540; --surface3:#243255;
  --accent:#F26A5E; --accent-lt:#FF8578; --accent-dk:#D2493D;
  --brand:#AFC6E6;
  --text:#EAF1FA; --text-2:#B6C4D8; --text-3:#7C8AA0;
  --border:rgba(255,255,255,0.08); --border2:rgba(255,255,255,0.16);
  --post-text:#DCE5F0; --post-heading:#F2F7FD; --post-link:#FF9187; --post-link-h:#FFB4AC;
  --post-meta:#9FADC2; --post-code-bg:#16203A; --post-quote-bg:#131D33; --post-quote-border:#F26A5E;
}
[data-theme="dark"] .topbar { color:#FFF; }
[data-theme="dark"] .card { box-shadow:0 1px 3px rgba(0,0,0,0.4); }

/* ─── LOGO THEME SWAP ─────────────────── */
.lt-logo-cream { display:none; }
[data-theme="dark"] .lt-logo-navy { display:none; }
[data-theme="dark"] .lt-logo-cream { display:block; }

/* ─── FONT SIZE PRESETS ──────────────── */
[data-fontsize="small"] { --fs-post-body:16px; --fs-post-h2:26px; --fs-post-h3:20px; --fs-post-lh:1.75; }
[data-fontsize="medium"] { --fs-post-body:18px; --fs-post-h2:30px; --fs-post-h3:23px; --fs-post-lh:1.85; }
[data-fontsize="large"] { --fs-post-body:20px; --fs-post-h2:34px; --fs-post-h3:26px; --fs-post-lh:1.9; }
[data-fontsize="xlarge"] { --fs-post-body:22px; --fs-post-h2:38px; --fs-post-h3:29px; --fs-post-lh:1.95; }

/* ─── BASE ────────────────────────────── */
html { scroll-behavior:smooth; }
body { background:var(--bg); color:var(--text); font-family:var(--font-body); font-size:16px; line-height:1.6; -webkit-font-smoothing:antialiased; }
a { color:inherit; text-decoration:none; }
img { display:block; max-width:100%; height:auto; }
.skip-link { position:absolute; left:-9999px; top:0; z-index:999; }
.skip-link:focus { left:8px; top:8px; width:auto; height:auto; background:var(--accent); color:#fff; padding:10px 16px; border-radius:8px; clip:auto; }

/* ─── TOP BAR ─────────────────────────── */
.topbar { background:var(--brand); text-align:center; padding:8px 20px; font-size:12px; font-weight:600; letter-spacing:0.04em; color:#fff; }
[data-theme="light"] .topbar { background:#16345C; }

/* ─── HEADER ──────────────────────────── */
.site-header { position:sticky; top:0; z-index:100; background:var(--surface); border-bottom:1px solid var(--border); transition:box-shadow 0.25s ease; }
.site-header.is-scrolled { box-shadow:0 4px 24px rgba(20,45,80,0.10); }
[data-theme="dark"] .site-header.is-scrolled { box-shadow:0 4px 24px rgba(0,0,0,0.45); }
.header-inner { max-width:1280px; margin:0 auto; padding:0 24px; display:flex; align-items:center; gap:24px; height:72px; }
.site-logo { flex-shrink:0; display:flex; align-items:center; gap:10px; }
.site-logo img { height:44px; width:auto; object-fit:contain; }
.main-navigation { flex:1; }
.main-navigation ul { list-style:none; display:flex; gap:2px; margin:0; padding:0; flex-wrap:wrap; }
.main-navigation li { position:relative; }
.main-navigation a { font-family:var(--font-head); font-size:13px; font-weight:600; letter-spacing:0.02em; color:var(--text-2); padding:8px 12px; border-radius:8px; transition:color 0.15s,background 0.15s; display:block; }
.main-navigation a:hover, .main-navigation .current-menu-item>a { color:var(--text); background:var(--surface2); }
.main-navigation .current-menu-item>a { color:var(--accent); }
.main-navigation ul ul { display:none; position:absolute; top:100%; left:0; background:var(--surface); border:1px solid var(--border2); border-radius:var(--radius); min-width:210px; padding:8px 0; flex-direction:column; z-index:10; box-shadow:0 10px 30px rgba(20,45,80,0.12); }
.main-navigation li:hover>ul { display:flex; }
.main-navigation ul ul a { padding:8px 16px; font-size:12px; }
.header-search { display:flex; align-items:center; gap:8px; background:var(--surface2); border:1px solid var(--border2); border-radius:100px; padding:7px 14px; min-width:200px; }
.header-search svg { color:var(--text-3); flex-shrink:0; }
.header-search input { background:none; border:none; outline:none; color:var(--text); font-family:var(--font-body); font-size:13px; width:100%; }
.header-search input::placeholder { color:var(--text-3); }
.menu-toggle { display:none; background:none; border:1px solid var(--border2); border-radius:8px; color:var(--text); padding:6px 10px; cursor:pointer; font-size:20px; }

/* ─── HERO ────────────────────────────── */
.hero { background:linear-gradient(180deg,var(--surface) 0%,var(--bg) 100%); border-bottom:1px solid var(--border); padding:84px 24px 76px; text-align:center; position:relative; overflow:hidden; }
.hero::before { content:''; position:absolute; inset:0; background:radial-gradient(circle at 15% 0%,rgba(224,72,61,0.06),transparent 45%),radial-gradient(circle at 85% 10%,rgba(22,52,92,0.07),transparent 42%); pointer-events:none; }
.hero > * { position:relative; }
.hero-eyebrow { display:inline-flex; align-items:center; gap:8px; background:rgba(224,72,61,0.10); border:1px solid rgba(224,72,61,0.22); color:var(--accent-dk); font-family:var(--font-head); font-size:11px; font-weight:600; letter-spacing:0.06em; text-transform:uppercase; padding:6px 15px; border-radius:100px; margin-bottom:26px; }
[data-theme="dark"] .hero-eyebrow { color:var(--accent-lt); }
.hero-eyebrow::before { content:''; width:6px; height:6px; background:var(--accent); border-radius:50%; }
.hero h1 { font-family:var(--font-display); font-size:clamp(42px,6.4vw,78px); font-weight:700; line-height:1.02; letter-spacing:-0.01em; color:var(--text); margin-bottom:22px; }
.hero h1 em { font-style:italic; color:var(--accent); }
.hero-sub { font-size:18px; color:var(--text-2); max-width:560px; margin:0 auto 40px; line-height:1.7; }
.hero-search { display:flex; align-items:center; max-width:580px; margin:0 auto; background:var(--surface); border:1px solid var(--border2); border-radius:100px; overflow:hidden; transition:border-color 0.2s,box-shadow 0.2s; box-shadow:0 6px 24px rgba(20,45,80,0.06); }
.hero-search:focus-within { border-color:var(--accent); box-shadow:0 6px 24px rgba(224,72,61,0.14); }
.hero-search svg { margin-left:22px; color:var(--text-3); flex-shrink:0; }
.hero-search input { flex:1; background:none; border:none; outline:none; padding:17px; font-family:var(--font-body); font-size:15px; color:var(--text); }
.hero-search input::placeholder { color:var(--text-3); }
.hero-search button { background:var(--accent); border:none; color:#fff; font-family:var(--font-head); font-size:13px; font-weight:600; letter-spacing:0.03em; padding:0 28px; height:54px; cursor:pointer; transition:background 0.15s; flex-shrink:0; }
.hero-search button:hover { background:var(--accent-dk); }
.hero-stats { display:flex; justify-content:center; gap:48px; margin-top:52px; padding-top:40px; border-top:1px solid var(--border); flex-wrap:wrap; }
.hero-stat-num { font-family:var(--font-display); font-size:34px; font-weight:700; color:var(--brand); letter-spacing:-0.02em; }
[data-theme="dark"] .hero-stat-num { color:var(--text); }
.hero-stat-label { font-family:var(--font-head); font-size:12px; color:var(--text-3); text-transform:uppercase; letter-spacing:0.06em; margin-top:4px; }

/* ─── TRUST BAR ──────────────────────── */
.trust-bar { background:var(--surface); border-bottom:1px solid var(--border); }
.trust-inner { max-width:1280px; margin:0 auto; padding:26px 24px; display:flex; justify-content:center; gap:52px; flex-wrap:wrap; }
.trust-item { display:flex; align-items:center; gap:12px; color:var(--text-2); font-size:13px; max-width:280px; }
.trust-icon { width:40px; height:40px; background:rgba(224,72,61,0.10); border:1px solid rgba(224,72,61,0.20); border-radius:12px; display:flex; align-items:center; justify-content:center; color:var(--accent); font-size:18px; flex-shrink:0; }
.trust-label { font-family:var(--font-head); font-weight:600; color:var(--text); font-size:14px; display:block; }

/* ─── SECTION ─────────────────────────── */
.section { max-width:1280px; margin:0 auto; padding:64px 24px; }
.section-header { display:flex; align-items:baseline; justify-content:space-between; margin-bottom:36px; border-bottom:1px solid var(--border); padding-bottom:20px; }
.section-title { font-family:var(--font-display); font-size:32px; font-weight:700; letter-spacing:-0.01em; color:var(--text); }
.section-title span { color:var(--accent); font-style:italic; }
.section-link { font-family:var(--font-head); font-size:13px; font-weight:600; letter-spacing:0.02em; color:var(--accent); display:flex; align-items:center; gap:6px; transition:gap 0.15s; }
.section-link:hover { gap:10px; }
.main-with-sidebar { display:grid; grid-template-columns:minmax(0,1fr) 320px; gap:40px; align-items:start; }
.lt-empty { color:var(--text-2); text-align:center; padding:60px 0; }

/* ─── CARDS ───────────────────────────── */
.articles-grid { display:grid; grid-template-columns:1fr 1fr 1fr; gap:24px; }
.articles-grid.articles-grid-3 { grid-template-columns:1fr 1fr 1fr; }
.articles-grid .card-featured { grid-column:1/3; grid-row:1; }
.card { background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-lg); overflow:hidden; display:flex; flex-direction:column; transition:border-color 0.2s,transform 0.2s,box-shadow 0.2s; box-shadow:0 1px 3px rgba(20,45,80,0.05); }
.card:hover { border-color:var(--border2); transform:translateY(-3px); box-shadow:0 12px 30px rgba(20,45,80,0.10); }
.card-featured-body { display:flex; flex-direction:column; flex:1; }
.card-img { aspect-ratio:16/9; background:var(--surface2); overflow:hidden; position:relative; }
.card-img img { width:100%; height:100%; object-fit:cover; transition:transform 0.4s; }
.card:hover .card-img img { transform:scale(1.05); }
.card-img-placeholder { display:flex; align-items:center; justify-content:center; height:100%; background:linear-gradient(135deg,var(--surface2),var(--surface3)); font-size:46px; color:var(--text-3); }
.card-body { padding:20px; flex:1; display:flex; flex-direction:column; gap:10px; }
.card-meta { display:flex; align-items:center; gap:8px; flex-wrap:wrap; }
.badge { font-family:var(--font-head); font-size:10px; font-weight:600; letter-spacing:0.05em; text-transform:uppercase; padding:4px 10px; border-radius:100px; }
.read-time { font-size:11px; color:var(--text-3); font-weight:600; letter-spacing:0.02em; }
.card-title { font-family:var(--font-post); font-size:18px; font-weight:600; color:var(--text); line-height:1.35; flex:1; transition:color 0.15s; }
.card:hover .card-title { color:var(--accent-dk); }
[data-theme="dark"] .card:hover .card-title { color:var(--accent-lt); }
.card-excerpt { font-size:13.5px; color:var(--text-2); line-height:1.6; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.card-footer { padding:14px 20px; border-top:1px solid var(--border); display:flex; align-items:center; justify-content:space-between; font-size:12px; color:var(--text-3); }
.card-date { font-weight:600; }
.card-read-more { font-family:var(--font-head); font-size:12px; font-weight:600; letter-spacing:0.02em; color:var(--accent); }
.card-featured { flex-direction:row; }
.card-featured .card-img { aspect-ratio:unset; width:46%; flex-shrink:0; }
.card-featured .card-title { font-size:24px; line-height:1.25; }
.card-featured .card-excerpt { -webkit-line-clamp:3; }

/* ─── BADGES (travel categories) ──────── */
.badge-place { background:rgba(13,148,136,0.12); color:#0F766E; }
.badge-adventure { background:rgba(22,163,74,0.12); color:#15803D; }
.badge-beach { background:rgba(37,99,235,0.12); color:#1D4ED8; }
.badge-food { background:rgba(217,119,6,0.14); color:#B45309; }
.badge-plan { background:rgba(124,58,237,0.12); color:#6D28D9; }
.badge-gear { background:rgba(224,72,61,0.14); color:#B8362C; }
.badge-guide { background:rgba(22,52,92,0.10); color:#16345C; }
[data-theme="dark"] .badge-place { background:rgba(45,212,191,0.15); color:#5EEAD4; }
[data-theme="dark"] .badge-adventure { background:rgba(74,222,128,0.15); color:#86EFAC; }
[data-theme="dark"] .badge-beach { background:rgba(96,165,250,0.15); color:#93C5FD; }
[data-theme="dark"] .badge-food { background:rgba(251,191,36,0.15); color:#FCD34D; }
[data-theme="dark"] .badge-plan { background:rgba(167,139,250,0.15); color:#C4B5FD; }
[data-theme="dark"] .badge-gear { background:rgba(238,100,89,0.18); color:#FCA5A0; }
[data-theme="dark"] .badge-guide { background:rgba(175,198,230,0.15); color:#AFC6E6; }

/* ─── SIDEBAR ────────────────────────── */
.sidebar { display:flex; flex-direction:column; gap:28px; }
.widget { background:var(--surface); border:1px solid var(--border); border-radius:var(--radius); overflow:hidden; box-shadow:0 1px 3px rgba(20,45,80,0.05); }
.widget-title { font-family:var(--font-head); font-size:14px; font-weight:700; letter-spacing:0.02em; color:var(--text); padding:15px 18px; border-bottom:1px solid var(--border); background:var(--surface2); }
.widget-title span { color:var(--accent); }
.widget-body { padding:16px 18px; }
.popular-list { list-style:none; display:flex; flex-direction:column; gap:14px; }
.popular-item { display:flex; gap:14px; align-items:flex-start; }
.popular-num { font-family:var(--font-display); font-size:24px; font-weight:700; color:var(--accent); line-height:1; min-width:26px; flex-shrink:0; opacity:0.5; }
.popular-title { font-family:var(--font-post); font-size:14px; line-height:1.5; color:var(--text); font-weight:500; transition:color 0.15s; }
.popular-item:hover .popular-title { color:var(--accent-dk); }
[data-theme="dark"] .popular-item:hover .popular-title { color:var(--accent-lt); }
.tag-cloud { display:flex; flex-wrap:wrap; gap:8px; }
.tag-cloud a,.tag { font-family:var(--font-head); font-size:11px; font-weight:600; letter-spacing:0.02em; padding:6px 13px; border-radius:100px; background:var(--surface2); border:1px solid var(--border2); color:var(--text-2); cursor:pointer; transition:border-color 0.15s,color 0.15s,background 0.15s; }
.tag-cloud a:hover,.tag:hover { border-color:var(--accent); color:var(--accent); background:rgba(224,72,61,0.06); }
.newsletter { background:linear-gradient(160deg,var(--surface2),var(--surface3)); border:1px solid var(--border2); border-radius:var(--radius); padding:20px; margin-top:4px; }
.newsletter h4 { font-family:var(--font-head); font-size:15px; font-weight:700; letter-spacing:0.01em; color:var(--text); margin-bottom:6px; }
.newsletter p { font-size:12.5px; color:var(--text-2); margin-bottom:12px; line-height:1.5; }
.newsletter-form { display:flex; flex-direction:column; gap:8px; }
.newsletter input { background:var(--surface); border:1px solid var(--border2); border-radius:8px; padding:11px 12px; font-family:var(--font-body); font-size:13px; color:var(--text); outline:none; transition:border-color 0.15s; }
.newsletter input::placeholder { color:var(--text-3); }
.newsletter input:focus { border-color:var(--accent); }
.newsletter button { background:var(--accent); border:none; border-radius:8px; padding:11px; font-family:var(--font-head); font-size:12px; font-weight:600; letter-spacing:0.03em; color:#fff; cursor:pointer; transition:background 0.15s; }
.newsletter button:hover { background:var(--accent-dk); }

/* ─── CATEGORIES ──────────────────────── */
.categories-bg { background:var(--surface); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.cat-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(210px,1fr)); gap:16px; }
.cat-card { background:var(--surface2); border:1px solid var(--border); border-radius:var(--radius); padding:22px; display:flex; flex-direction:column; gap:8px; transition:border-color 0.2s,background 0.2s,transform 0.2s; cursor:pointer; text-decoration:none; }
.cat-card:hover { border-color:var(--accent); background:var(--surface); transform:translateY(-2px); }
.cat-icon { font-size:30px; line-height:1; margin-bottom:4px; }
.cat-name { font-family:var(--font-head); font-size:16px; font-weight:700; letter-spacing:0; color:var(--text); }
.cat-count { font-size:12px; color:var(--text-3); font-weight:600; }
.cat-arrow { margin-top:auto; font-size:18px; color:var(--accent); font-weight:700; transition:transform 0.15s; }
.cat-card:hover .cat-arrow { transform:translateX(4px); }

/* ─── PAGINATION ──────────────────────── */
.pagination { display:flex; justify-content:center; gap:8px; margin-top:48px; flex-wrap:wrap; }
.pagination .page-numbers,.page-btn { min-width:42px; height:42px; padding:0 8px; display:flex; align-items:center; justify-content:center; font-family:var(--font-head); font-size:13px; font-weight:600; border-radius:10px; border:1px solid var(--border2); background:var(--surface); color:var(--text-2); cursor:pointer; transition:all 0.15s; }
.pagination .page-numbers:hover,.page-btn:hover { border-color:var(--accent); color:var(--accent); }
.pagination .page-numbers.current,.page-btn.active { background:var(--accent); border-color:var(--accent); color:#fff; }
.page-btn-wide { width:auto; padding:0 22px; }

/* ─── FOOTER ──────────────────────────── */
.site-footer { background:var(--surface); border-top:1px solid var(--border); padding:56px 24px 32px; }
.footer-inner { max-width:1280px; margin:0 auto; }
.footer-affiliate { font-size:12px; color:var(--text-3); background:var(--surface2); border:1px solid var(--border); border-radius:8px; padding:12px 16px; margin-bottom:32px; line-height:1.6; }
.footer-affiliate strong { color:var(--text-2); }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:40px; margin-bottom:48px; }
.footer-brand .site-logo { margin-bottom:16px; }
.footer-brand .site-logo img { height:40px; }
.footer-desc { font-size:13px; color:var(--text-3); line-height:1.7; max-width:320px; }
.footer-col-title { font-family:var(--font-head); font-size:14px; font-weight:700; letter-spacing:0.02em; color:var(--text); margin-bottom:16px; }
.footer-links { list-style:none; display:flex; flex-direction:column; gap:10px; }
.footer-links a { font-size:13px; color:var(--text-3); transition:color 0.15s; }
.footer-links a:hover { color:var(--accent); }
.footer-bottom { border-top:1px solid var(--border); padding-top:24px; display:flex; justify-content:space-between; align-items:center; font-size:12px; color:var(--text-3); flex-wrap:wrap; gap:12px; }

/* ═══════════════════════════════════════════
   PAGE TEMPLATE (About, Contact, Privacy, etc.)
   ═══════════════════════════════════════════ */
.page-header { padding:56px 24px 40px; }
.page-featured-image { max-width:960px; margin:32px auto 0; padding:0 24px; }
.page-featured-image img { border-radius:var(--radius-lg); border:1px solid var(--border); width:100%; max-height:400px; object-fit:cover; }
.page-wrap { max-width:820px; margin:0 auto; padding:0 24px; }
.page-wrap-wide { max-width:1120px; }
.page-content.post-content-wrap { max-width:100%; margin:0; padding:48px 0 32px; }

/* ─── TEAM GRID (Meet Our Team template) ─ */
.team-grid { display:grid; grid-template-columns:1fr 1fr; gap:28px; padding:16px 0 64px; }
.team-card { display:flex; gap:22px; background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-lg); padding:26px; box-shadow:0 1px 3px rgba(20,45,80,0.05); transition:transform 0.2s,box-shadow 0.2s; }
.team-card:hover { transform:translateY(-3px); box-shadow:0 14px 34px rgba(20,45,80,0.10); }
.team-photo { width:104px; height:104px; border-radius:50%; overflow:hidden; flex-shrink:0; background:var(--surface2); border:3px solid var(--surface2); box-shadow:0 0 0 1px var(--border2); }
.team-photo img { width:100%; height:100%; object-fit:cover; }
.team-photo-fallback { display:flex; align-items:center; justify-content:center; width:100%; height:100%; font-family:var(--font-display); font-size:40px; font-weight:700; color:var(--accent); }
.team-info { min-width:0; }
.team-name { font-family:var(--font-display); font-size:22px; font-weight:700; color:var(--text); margin-bottom:2px; }
.team-role { font-family:var(--font-head); font-size:12.5px; font-weight:600; letter-spacing:0.02em; text-transform:uppercase; color:var(--accent); margin-bottom:12px; }
.team-bio { font-size:14px; color:var(--text-2); line-height:1.65; margin-bottom:14px; }
.team-tags { display:flex; flex-wrap:wrap; gap:6px; }
.team-tag { font-family:var(--font-head); font-size:10.5px; font-weight:600; letter-spacing:0.02em; padding:4px 10px; border-radius:100px; background:var(--surface2); border:1px solid var(--border2); color:var(--text-2); }

/* ═══════════════════════════════════════════
   SINGLE POST — With Sidebar
   ═══════════════════════════════════════════ */
.single-post-header { background:var(--surface); border-bottom:1px solid var(--border); padding:52px 24px 38px; text-align:center; }
.single-post-header .badge { margin-bottom:16px; display:inline-block; }
.single-post-header h1 { font-family:var(--font-display); font-size:clamp(28px,3.6vw,42px); font-weight:700; line-height:1.2; color:var(--post-heading); max-width:760px; margin:0 auto 18px; }
.post-meta-bar { display:flex; justify-content:center; gap:20px; font-size:13px; color:var(--post-meta); flex-wrap:wrap; }
.post-meta-bar span { display:flex; align-items:center; gap:6px; }
.post-author-link { color:var(--accent); font-weight:600; }
.post-author-link:hover { text-decoration:underline; }
.single-wrap { max-width:1240px; margin:0 auto; padding:0 24px; }
.single-grid { display:grid; grid-template-columns:minmax(0,1fr) 320px; gap:48px; align-items:start; padding:40px 0 64px; }
.single-main { min-width:0; }
.post-featured-image { margin:0 0 32px; }
.post-featured-image img { border-radius:var(--radius-lg); border:1px solid var(--border); width:100%; max-height:440px; object-fit:cover; display:block; }
.post-content-wrap { max-width:820px; margin:0 auto; padding:48px 24px 64px; }
.single-main .post-content-wrap { max-width:100%; margin:0; padding:0; }
.post-content-wrap p { font-family:var(--font-post); font-size:var(--fs-post-body); line-height:var(--fs-post-lh); color:var(--post-text); margin-bottom:24px; letter-spacing:0.005em; }
.post-content-wrap h2 { font-family:var(--font-display); font-size:var(--fs-post-h2); font-weight:700; letter-spacing:-0.01em; color:var(--post-heading); margin:48px 0 20px; padding-bottom:12px; border-bottom:2px solid var(--accent); }
.post-content-wrap h3 { font-family:var(--font-display); font-size:var(--fs-post-h3); font-weight:600; color:var(--post-heading); margin:36px 0 14px; }
.post-content-wrap h4 { font-family:var(--font-head); font-size:calc(var(--fs-post-body) + 1px); font-weight:700; color:var(--post-heading); margin:28px 0 10px; letter-spacing:0.01em; }
.post-content-wrap ul,.post-content-wrap ol { padding-left:28px; margin-bottom:24px; color:var(--post-text); font-family:var(--font-post); font-size:var(--fs-post-body); line-height:var(--fs-post-lh); }
.post-content-wrap li { margin-bottom:12px; padding-left:4px; }
.post-content-wrap ul li::marker { color:var(--accent); }
.post-content-wrap a { color:var(--post-link); text-decoration:underline; text-decoration-thickness:1.5px; text-underline-offset:3px; transition:color 0.15s; }
.post-content-wrap a:hover { color:var(--post-link-h); }
.post-content-wrap blockquote { border-left:4px solid var(--post-quote-border); padding:20px 28px; margin:32px 0; background:var(--post-quote-bg); border-radius:0 var(--radius) var(--radius) 0; font-family:var(--font-display); font-style:italic; font-size:calc(var(--fs-post-body) + 2px); color:var(--post-text); line-height:1.6; }
.post-content-wrap code { background:var(--post-code-bg); padding:2px 8px; border-radius:4px; font-size:0.88em; color:var(--accent-dk); }
[data-theme="dark"] .post-content-wrap code { color:var(--accent-lt); }
.post-content-wrap pre { background:var(--post-code-bg); border:1px solid var(--border); border-radius:var(--radius); padding:20px; overflow-x:auto; margin:24px 0; }
.post-content-wrap pre code { background:none; padding:0; font-size:14px; color:var(--post-text); }
.post-content-wrap img,
.post-content-wrap figure img,
.post-content-wrap .wp-block-image img { width:100%; max-width:100%; height:auto; border-radius:var(--radius-lg); border:1px solid var(--border); margin:32px 0; display:block; max-height:440px; object-fit:cover; }
.post-content-wrap figure { margin:32px 0; }
.post-content-wrap figure img { margin:0; }
.post-content-wrap figcaption { font-size:13px; color:var(--text-3); text-align:center; margin-top:10px; font-style:italic; }
.page-links { margin:24px 0; font-family:var(--font-head); font-size:14px; }
.page-links a,.page-links > span { padding:4px 10px; border:1px solid var(--border2); border-radius:6px; margin:0 4px; }

/* ─── TABLES (scrollable comparison tables) ─── */
.lt-table-scroll,
.post-content-wrap figure.wp-block-table {
  display:block; width:100%; overflow-x:auto; -webkit-overflow-scrolling:touch;
  margin:28px 0; border:1px solid var(--border2); border-radius:var(--radius);
}
.post-content-wrap figure.wp-block-table { padding:0; }
.post-content-wrap table { width:max-content; min-width:100%; border-collapse:collapse; margin:28px 0; font-size:calc(var(--fs-post-body) - 2px); background:var(--surface); }
.lt-table-scroll > table,
.post-content-wrap figure.wp-block-table > table { margin:0; }
.post-content-wrap th,.post-content-wrap td { padding:13px 16px; border:1px solid var(--border2); text-align:left; color:var(--post-text); vertical-align:middle; line-height:1.5; max-width:340px; font-family:var(--font-body); }
.post-content-wrap th { background:var(--surface2); font-family:var(--font-head); font-weight:700; color:var(--post-heading); text-transform:uppercase; font-size:12px; letter-spacing:0.03em; white-space:nowrap; }
.post-content-wrap tbody tr:nth-child(even) td { background:rgba(20,45,80,0.03); }
[data-theme="dark"] .post-content-wrap tbody tr:nth-child(even) td { background:rgba(255,255,255,0.03); }
.post-content-wrap td ul,.post-content-wrap td ol { margin:0; padding-left:18px; }
.post-content-wrap td li { margin-bottom:4px; }
.post-content-wrap td img { width:auto; max-width:84px; height:auto; max-height:84px; margin:0; border:none; border-radius:6px; display:inline-block; object-fit:contain; }

/* ─── CTA / "CHECK PRICE / BOOK" BUTTONS (auto-applied via JS) ─── */
.post-content-wrap a.lt-buy-btn { display:inline-block; background:var(--accent); color:#fff !important; font-family:var(--font-head); font-weight:600; font-size:14px; text-decoration:none; text-align:center; white-space:nowrap; line-height:1.2; padding:12px 22px; border-radius:100px; border:1px solid var(--accent-dk); box-shadow:0 3px 10px rgba(224,72,61,0.28); transition:transform .12s, box-shadow .15s, background .15s; }
.post-content-wrap a.lt-buy-btn::before { content:"→ "; }
.post-content-wrap a.lt-buy-btn:hover { background:var(--accent-dk); transform:translateY(-1px); box-shadow:0 6px 16px rgba(224,72,61,0.40); color:#fff !important; }
.post-content-wrap td a.lt-buy-btn { display:block; width:100%; padding:9px 14px; font-size:13px; }
.post-content-wrap td a[href*="amazon"],.post-content-wrap td a[href*="amzn"] { white-space:nowrap; }

/* ═══════════════════════════════════════════
   SINGLE POST SIDEBAR
   ═══════════════════════════════════════════ */
.single-sidebar { display:flex; flex-direction:column; gap:24px; position:sticky; top:92px; }
.cat-list { list-style:none; display:flex; flex-direction:column; gap:2px; padding:0; margin:0; }
.cat-list-item a { display:flex; align-items:center; gap:12px; padding:10px 12px; border-radius:8px; color:var(--text-2); text-decoration:none; transition:all 0.15s; border:1px solid transparent; }
.cat-list-item a:hover { background:var(--surface2); color:var(--text); border-color:var(--border2); }
.cat-list-item.active a { background:rgba(224,72,61,0.08); color:var(--accent); border-color:rgba(224,72,61,0.28); }
.cat-list-icon { font-size:18px; flex-shrink:0; width:24px; text-align:center; }
.cat-list-name { flex:1; font-family:var(--font-head); font-size:13px; font-weight:600; letter-spacing:0; }
.cat-list-count { font-size:11px; color:var(--text-3); background:var(--surface2); padding:2px 9px; border-radius:100px; font-weight:600; min-width:28px; text-align:center; }
.cat-list-item.active .cat-list-count { background:rgba(224,72,61,0.15); color:var(--accent); }
.cat-list-item a:hover .cat-list-count { background:var(--surface3); }
.recent-post-list { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:14px; }
.recent-post-link { display:flex; gap:12px; align-items:flex-start; text-decoration:none; transition:all 0.15s; }
.recent-post-thumb { width:72px; height:72px; border-radius:10px; overflow:hidden; flex-shrink:0; background:var(--surface2); border:1px solid var(--border); }
.recent-post-thumb img { width:100%; height:100%; object-fit:cover; display:block; transition:transform 0.3s; }
.recent-post-link:hover .recent-post-thumb img { transform:scale(1.08); }
.recent-post-thumb-placeholder { display:flex; align-items:center; justify-content:center; font-size:26px; color:var(--text-3); }
.recent-post-info { flex:1; min-width:0; }
.recent-post-title { font-family:var(--font-post); font-size:14px; font-weight:600; line-height:1.4; color:var(--text); margin:0 0 4px; transition:color 0.15s; display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; }
.recent-post-link:hover .recent-post-title { color:var(--accent-dk); }
[data-theme="dark"] .recent-post-link:hover .recent-post-title { color:var(--accent-lt); }
.recent-post-date { font-size:11px; color:var(--text-3); font-weight:600; }
.toc-list { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:8px; }
.toc-list li a { display:block; padding:8px 12px; color:var(--text-2); font-size:13px; line-height:1.5; border-left:2px solid var(--border); transition:all 0.15s; font-family:var(--font-body); }
.toc-list li a:hover { color:var(--accent); border-left-color:var(--accent); background:var(--surface2); }
.toc-list li.toc-active a { color:var(--accent); border-left-color:var(--accent); background:var(--surface2); font-weight:600; }
.post-tags { display:flex; flex-wrap:wrap; gap:8px; margin-top:40px; padding-top:24px; border-top:1px solid var(--border); }
.post-tags a { font-family:var(--font-head); font-size:11px; font-weight:600; letter-spacing:0.02em; padding:6px 13px; border-radius:100px; background:var(--surface); border:1px solid var(--border2); color:var(--text-2); text-decoration:none; transition:all 0.15s; }
.post-tags a:hover { border-color:var(--accent); color:var(--accent); }
.author-box { background:var(--surface2); border:1px solid var(--border); border-radius:var(--radius-lg); padding:26px; margin-top:44px; display:flex; gap:20px; align-items:flex-start; }
.author-avatar { width:92px; height:92px; border-radius:50%; background:var(--surface3); flex-shrink:0; overflow:hidden; border:3px solid var(--surface); box-shadow:0 0 0 1px var(--border2); }
.author-avatar img { width:100%; height:100%; object-fit:cover; border-radius:50%; margin:0; border:none; max-height:none; display:block; }
.author-avatar .lt-avatar-initials { display:flex; align-items:center; justify-content:center; width:100%; height:100%; font-family:var(--font-display); font-size:32px; font-weight:700; color:var(--accent); background:var(--surface3); border-radius:50%; }
.author-details { min-width:0; }
.author-name { font-family:var(--font-display); font-size:19px; font-weight:700; color:var(--text); margin-bottom:2px; }
.author-name a { color:inherit; }
.author-name a:hover { color:var(--accent); }
.author-role { font-family:var(--font-head); font-size:12px; font-weight:600; letter-spacing:0.02em; text-transform:uppercase; color:var(--accent); margin-bottom:10px; }
.author-bio { font-size:14px; color:var(--text-2); line-height:1.65; }
.related-posts { margin-top:56px; padding-top:40px; border-top:1px solid var(--border); }
.related-posts h3 { font-family:var(--font-display); font-size:26px; font-weight:700; color:var(--text); margin-bottom:24px; }
.related-posts h3 span { color:var(--accent); font-style:italic; }
.related-grid { display:grid; grid-template-columns:1fr 1fr; gap:20px; }

/* ─── ARCHIVE / SEARCH ────────────────── */
.archive-header { background:var(--surface); border-bottom:1px solid var(--border); padding:52px 24px; text-align:center; }
.archive-header h1 { font-family:var(--font-display); font-size:38px; font-weight:700; color:var(--text); margin-bottom:8px; }
.archive-header h1 span { color:var(--accent); font-style:italic; }
.archive-header p { color:var(--text-3); font-size:15px; max-width:640px; margin:0 auto; }
.lt-search-empty { text-align:center; padding:60px 0; }
.lt-search-empty p { color:var(--text-2); margin-bottom:24px; }
.lt-search-empty-form { max-width:400px; margin:0 auto; }

/* ─── COMMENTS ────────────────────────── */
.comments-area { margin-top:48px; padding-top:40px; border-top:1px solid var(--border); }
.comments-title { font-family:var(--font-display); font-size:24px; font-weight:700; color:var(--text); margin-bottom:24px; }
.comment-reply-heading { font-family:var(--font-display); font-size:22px; font-weight:700; color:var(--text); }
.comment-reply-heading span { color:var(--accent); font-style:italic; }
.comment-notes { font-size:13px; color:var(--text-3); margin-bottom:20px; }
.comment-list { list-style:none; padding:0; }
.comment-body { background:var(--surface); border:1px solid var(--border); border-radius:var(--radius); padding:20px; margin-bottom:16px; }
.comment-author { font-family:var(--font-head); font-weight:700; color:var(--text); margin-bottom:4px; }
.comment-meta { font-size:12px; color:var(--text-3); margin-bottom:12px; }
.comment-content { font-size:14.5px; color:var(--text-2); line-height:1.7; }
.comment-content p { margin-bottom:8px; }
.comment-reply-link { font-family:var(--font-head); font-size:12px; font-weight:600; color:var(--accent); letter-spacing:0.02em; }
.children { list-style:none; margin-left:28px; padding-top:16px; }
.comment-form label { display:block; font-family:var(--font-head); font-size:13px; font-weight:600; color:var(--text); margin-bottom:6px; letter-spacing:0.01em; }
.comment-form input[type="text"],.comment-form input[type="email"],.comment-form input[type="url"],.comment-form textarea { width:100%; background:var(--surface); border:1px solid var(--border2); border-radius:8px; padding:12px 14px; font-family:var(--font-body); font-size:14px; color:var(--text); outline:none; margin-bottom:16px; transition:border-color 0.15s; }
.comment-form input:focus,.comment-form textarea:focus { border-color:var(--accent); }
.comment-form .submit { background:var(--accent); border:none; border-radius:100px; padding:12px 30px; font-family:var(--font-head); font-size:13px; font-weight:600; letter-spacing:0.02em; color:#fff; cursor:pointer; transition:background 0.15s; }
.comment-form .submit:hover { background:var(--accent-dk); }

/* ─── 404 ─────────────────────────────── */
.error-404 { text-align:center; padding:100px 24px 40px; }
.error-404 h1 { font-family:var(--font-display); font-size:120px; font-weight:700; color:var(--accent); line-height:1; margin-bottom:16px; }
.error-404 p { color:var(--text-2); font-size:17px; margin-bottom:32px; }
.error-404-search { max-width:400px; margin:0 auto 56px; }

/* ─── SEARCH FORM ─────────────────────── */
.search-form { display:flex; background:var(--surface); border:1px solid var(--border2); border-radius:100px; overflow:hidden; }
.search-form .search-field { flex:1; background:none; border:none; outline:none; padding:14px 20px; font-family:var(--font-body); font-size:15px; color:var(--text); }
.search-form .search-field::placeholder { color:var(--text-3); }
.search-form .search-submit { background:var(--accent); border:none; color:#fff; font-family:var(--font-head); font-size:13px; font-weight:600; letter-spacing:0.02em; padding:0 26px; cursor:pointer; transition:background 0.15s; }
.search-form .search-submit:hover { background:var(--accent-dk); }

/* ─── WP DEFAULTS ─────────────────────── */
.alignleft { float:left; margin:0 20px 20px 0; }
.alignright { float:right; margin:0 0 20px 20px; }
.aligncenter { display:block; margin:0 auto 20px; }
.wp-caption { max-width:100%; }
.wp-caption-text { font-size:12px; color:var(--text-3); text-align:center; margin-top:8px; }
.screen-reader-text { clip:rect(1px,1px,1px,1px); position:absolute !important; height:1px; width:1px; overflow:hidden; word-wrap:normal !important; }
.sticky .card { border-color:var(--accent); }

/* ─── DEFAULT WP WIDGETS (if admin adds widgets to Sidebar area) ─── */
.widget-default ul { list-style:none; margin:0; padding:8px 18px 14px; }
.widget-default li { padding:8px 0; border-bottom:1px solid var(--border); font-size:13px; line-height:1.5; color:var(--text-2); }
.widget-default li:last-child { border-bottom:none; }
.widget-default li a { color:var(--text-2); transition:color .15s; }
.widget-default li a:hover { color:var(--accent); }
.widget-default p,.widget-default form,.widget-default .textwidget { margin:14px 18px; }
.widget-default select,.widget-default input { max-width:100%; padding:9px 11px; background:var(--surface2); border:1px solid var(--border2); border-radius:6px; color:var(--text); font-family:var(--font-body); font-size:13px; }

/* ─── RESPONSIVE ──────────────────────── */
@media (max-width:1024px) {
  .articles-grid,.articles-grid.articles-grid-3 { grid-template-columns:1fr 1fr; }
  .articles-grid .card-featured { grid-column:1/3; }
  .card-featured { flex-direction:column; }
  .card-featured .card-img { width:100%; aspect-ratio:16/9; }
  .main-with-sidebar { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .related-grid { grid-template-columns:1fr 1fr; }
  .team-grid { grid-template-columns:1fr; }
  .single-grid { grid-template-columns:1fr; gap:32px; }
  .single-sidebar { position:static; }
  .post-featured-image img { max-height:400px; }
}
@media (max-width:768px) {
  .header-inner { gap:12px; }
  .main-navigation ul { display:none; }
  .main-navigation.toggled ul { display:flex; flex-direction:column; position:absolute; top:72px; left:0; right:0; background:var(--surface); border-bottom:1px solid var(--border); padding:16px 24px; z-index:99; box-shadow:0 12px 24px rgba(20,45,80,0.10); }
  .menu-toggle { display:block; }
  .hero { padding:60px 20px 56px; }
  .hero-stats { gap:28px; }
  .articles-grid,.articles-grid.articles-grid-3 { grid-template-columns:1fr; }
  .articles-grid .card-featured { grid-column:1; }
  .footer-grid { grid-template-columns:1fr; }
  .footer-bottom { flex-direction:column; text-align:center; }
  .trust-inner { gap:28px; }
  .related-grid { grid-template-columns:1fr; }
  .team-card { flex-direction:column; text-align:center; align-items:center; }
  .team-tags { justify-content:center; }
  .author-box { flex-direction:column; align-items:center; text-align:center; }
  .header-search { min-width:120px; }
  .single-post-header { padding:36px 20px 28px; }
  .post-featured-image img { max-height:280px; }
  .post-content-wrap img { max-height:280px; }
  .post-content-wrap th,.post-content-wrap td { padding:10px 12px; max-width:240px; }
  .post-content-wrap table { font-size:13px; }
  .single-wrap { padding:0 16px; }
  .recent-post-thumb { width:60px; height:60px; }
  .recent-post-title { font-size:13px; -webkit-line-clamp:2; }
}
@media (max-width:480px) {
  .header-search { display:none; }
  .error-404 h1 { font-size:88px; }
}
