/*
Theme Name: LaunchLane
Theme URI: https://launchlane.co
Author: LaunchLane
Author URI: https://launchlane.co
Description: A high-converting affiliate blog theme for entrepreneurs, creators, and side hustlers. Built for LaunchLane.co.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: launchlane
Tags: blog, affiliate, custom-colors, custom-logo, featured-images, sticky-post, threaded-comments
*/

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
  --ink:    #0E0D0A;
  --cream:  #F5F1E8;
  --warm:   #EDE8DC;
  --lime:   #C8F135;
  --rust:   #D4451A;
  --slate:  #2A2A28;
  --muted:  #8A8880;
  --border: #D8D4CA;
  --font-display: 'Bebas Neue', sans-serif;
  --font-serif:   'Fraunces', serif;
  --font-body:    'DM Sans', sans-serif;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

p { margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }

/* =============================================
   ANNOUNCEMENT BAR
   ============================================= */
.ll-topbar {
  background: var(--ink);
  color: var(--lime);
  text-align: center;
  padding: 10px 20px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--font-body);
}
.ll-topbar a {
  color: var(--lime);
  text-decoration: underline;
  transition: opacity 0.2s;
}
.ll-topbar a:hover { opacity: 0.75; }

/* =============================================
   NAVIGATION
   ============================================= */
.ll-nav {
  background: var(--cream);
  border-bottom: 2px solid var(--ink);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  position: sticky;
  top: 0;
  z-index: 200;
}

.ll-logo {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-decoration: none;
  line-height: 1;
}
.ll-logo span { color: var(--rust); }

.ll-nav-menu {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}
.ll-nav-menu a {
  font-size: 13px;
  font-weight: 500;
  color: var(--slate);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.ll-nav-menu a:hover { color: var(--rust); }

.ll-nav-cta {
  background: var(--lime);
  color: var(--ink) !important;
  padding: 9px 20px;
  border-radius: 3px;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase;
  font-size: 11px !important;
  transition: background 0.2s !important;
}
.ll-nav-cta:hover { background: var(--rust) !important; color: white !important; }

/* Mobile hamburger */
.ll-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.ll-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: all 0.3s;
}

.ll-mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--cream);
  border-bottom: 2px solid var(--ink);
  z-index: 199;
  padding: 24px;
  flex-direction: column;
  gap: 0;
}
.ll-mobile-menu.is-open { display: flex; }
.ll-mobile-menu a {
  padding: 14px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--slate);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.03em;
}
.ll-mobile-menu a:last-child { border-bottom: none; }

/* =============================================
   CATEGORIES BAR
   ============================================= */
.ll-cats-bar {
  background: var(--warm);
  border-bottom: 2px solid var(--ink);
  padding: 0 48px;
  display: flex;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.ll-cats-bar::-webkit-scrollbar { display: none; }

.ll-cats-bar a {
  padding: 16px 22px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  transition: all 0.2s;
  display: block;
}
.ll-cats-bar a:hover,
.ll-cats-bar a.current { color: var(--ink); border-bottom-color: var(--rust); }

/* =============================================
   HERO — HOMEPAGE
   ============================================= */
.ll-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  border-bottom: 2px solid var(--ink);
}

.ll-hero-left {
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 2px solid var(--ink);
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.ll-hero-left::before {
  content: 'LAUNCH';
  position: absolute;
  font-family: var(--font-display);
  font-size: 200px;
  color: rgba(255,255,255,0.03);
  bottom: -20px;
  left: -10px;
  line-height: 1;
  pointer-events: none;
}

.ll-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 20px;
  font-weight: 500;
  font-family: var(--font-body);
}
.ll-hero-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--lime);
}

.ll-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--cream);
}
.ll-hero-title em { font-style: italic; color: var(--lime); }

.ll-hero-desc {
  font-size: 14px;
  color: #9A9890;
  line-height: 1.7;
  max-width: 340px;
  margin-bottom: 32px;
}

.ll-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--lime);
  color: var(--ink);
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  width: fit-content;
  transition: all 0.2s;
  font-family: var(--font-body);
}
.ll-btn::after { content: '→'; font-size: 16px; }
.ll-btn:hover { background: var(--rust); color: white; gap: 16px; }

.ll-btn-dark {
  background: var(--ink);
  color: var(--lime);
}
.ll-btn-dark:hover { background: var(--rust); color: white; }

.ll-hero-right { display: flex; flex-direction: column; }

.ll-hero-featured {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(160deg, #E8F5C0 0%, #D4EDA0 100%);
  border-bottom: 2px solid var(--ink);
  position: relative;
  overflow: hidden;
  min-height: 300px;
  text-decoration: none;
  color: var(--ink);
  transition: filter 0.2s;
}
.ll-hero-featured:hover { filter: brightness(0.96); }
.ll-hero-featured::before {
  content: '';
  position: absolute;
  top: 24px; right: 24px;
  width: 100px; height: 100px;
  border: 2px solid rgba(0,0,0,0.1);
  border-radius: 50%;
}
.ll-hero-featured::after {
  content: '';
  position: absolute;
  top: 44px; right: 44px;
  width: 60px; height: 60px;
  border: 2px solid rgba(0,0,0,0.06);
  border-radius: 50%;
}

.ll-feat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 10px;
  font-family: var(--font-body);
}

.ll-feat-title {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 12px;
}

.ll-feat-meta {
  font-size: 11px;
  color: #5A5A50;
  display: flex;
  gap: 10px;
  font-family: var(--font-body);
}

.ll-hero-side-posts { display: grid; grid-template-columns: 1fr 1fr; }

.ll-side-post {
  padding: 24px;
  border-right: 2px solid var(--ink);
  text-decoration: none;
  color: inherit;
  display: block;
  transition: background 0.2s;
}
.ll-side-post:last-child { border-right: none; }
.ll-side-post:hover { background: var(--warm); }

.ll-side-cat {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rust);
  font-weight: 700;
  margin-bottom: 8px;
  font-family: var(--font-body);
}

.ll-side-title {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.35;
  color: var(--ink);
}

/* =============================================
   LEAD MAGNET BANNER
   ============================================= */
.ll-magnet {
  background: var(--rust);
  color: white;
  padding: 24px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 2px solid var(--ink);
  flex-wrap: wrap;
}

.ll-magnet-text h3 {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.ll-magnet-text p { font-size: 13px; opacity: 0.85; margin: 0; }

.ll-magnet-form { display: flex; gap: 0; flex-shrink: 0; }
.ll-magnet-form input {
  padding: 12px 18px;
  font-size: 13px;
  border: none;
  background: rgba(255,255,255,0.15);
  color: white;
  outline: none;
  width: 240px;
  font-family: var(--font-body);
  border-radius: 3px 0 0 3px;
}
.ll-magnet-form input::placeholder { color: rgba(255,255,255,0.6); }
.ll-magnet-form button {
  background: var(--lime);
  color: var(--ink);
  border: none;
  padding: 12px 22px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font-body);
  border-radius: 0 3px 3px 0;
  transition: background 0.2s;
}
.ll-magnet-form button:hover { background: white; color: var(--ink); }

/* =============================================
   MAIN CONTENT WRAPPER
   ============================================= */
.ll-main-wrap {
  display: grid;
  grid-template-columns: 1fr 320px;
  max-width: 100%;
}

/* =============================================
   POSTS AREA
   ============================================= */
.ll-posts-area {
  padding: 48px;
  border-right: 2px solid var(--ink);
}

.ll-section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--ink);
}

.ll-section-title {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 0.04em;
  line-height: 1;
}

.ll-section-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rust);
  text-decoration: none;
}
.ll-section-link:hover { text-decoration: underline; }

/* Posts grid */
.ll-posts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
}

.ll-post-card {
  border: 1px solid var(--border);
  padding: 28px;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: background 0.2s;
  margin: -1px;
}
.ll-post-card:hover { background: var(--warm); }

.ll-post-cat {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: var(--font-body);
  color: var(--rust);
}
.ll-post-cat.websites  { color: #2A7A4A; }
.ll-post-cat.hosting   { color: #1A4A8A; }
.ll-post-cat.affiliate { color: #8A3A1A; }
.ll-post-cat.creators  { color: #6A2A8A; }
.ll-post-cat.sidehustle{ color: var(--rust); }

.ll-post-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 10px;
  color: var(--ink);
}

.ll-post-excerpt {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.ll-post-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ll-post-meta {
  font-size: 10px;
  color: #AAAAAA;
  letter-spacing: 0.04em;
  font-family: var(--font-body);
}

.ll-read-more {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rust);
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
}

/* Affiliate CTA card inside grid */
.ll-aff-card {
  grid-column: 1 / -1;
  background: var(--ink);
  color: var(--cream);
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  border: 1px solid var(--border);
  margin: -1px;
}

.ll-aff-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 8px;
  font-weight: 700;
  font-family: var(--font-body);
}

.ll-aff-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 6px;
}
.ll-aff-title em { font-style: italic; color: var(--lime); }

.ll-aff-desc { font-size: 12px; color: #9A9890; margin: 0; }

/* =============================================
   SIDEBAR
   ============================================= */
.ll-sidebar { padding: 40px 32px; display: flex; flex-direction: column; gap: 40px; }

.ll-widget-title {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--ink);
  line-height: 1;
}

/* Opt-in widget */
.ll-optin {
  background: var(--ink);
  color: var(--cream);
  padding: 28px 24px;
  border-radius: 4px;
  text-align: center;
}
.ll-optin .ll-badge {
  display: inline-block;
  background: var(--lime);
  color: var(--ink);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 12px;
  font-family: var(--font-body);
}
.ll-optin h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 8px;
}
.ll-optin h3 em { font-style: italic; color: var(--lime); }
.ll-optin p { font-size: 12px; color: #9A9890; margin-bottom: 18px; line-height: 1.6; }
.ll-optin input {
  width: 100%;
  padding: 11px 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  font-size: 13px;
  font-family: var(--font-body);
  border-radius: 3px;
  margin-bottom: 10px;
  outline: none;
}
.ll-optin input::placeholder { color: rgba(255,255,255,0.4); }
.ll-optin button {
  width: 100%;
  background: var(--lime);
  color: var(--ink);
  border: none;
  padding: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font-body);
  border-radius: 3px;
  transition: background 0.2s;
}
.ll-optin button:hover { background: var(--rust); color: white; }
.ll-optin .ll-fine { font-size: 10px; color: #555; margin-top: 10px; }

/* Domain CTA widget */
.ll-domain-cta {
  background: linear-gradient(135deg, #E8F5C0 0%, #C8F135 100%);
  padding: 28px 24px;
  border-radius: 4px;
  border: 2px solid var(--ink);
}
.ll-domain-cta .ll-price {
  font-family: var(--font-display);
  font-size: 52px;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 4px;
}
.ll-domain-cta .ll-price span { font-size: 20px; vertical-align: top; margin-top: 8px; display: inline-block; }
.ll-domain-cta h3 {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 8px;
  color: var(--ink);
}
.ll-domain-cta p { font-size: 11px; color: #4A5A20; margin-bottom: 16px; line-height: 1.6; }
.ll-domain-cta a {
  display: block;
  background: var(--ink);
  color: var(--lime);
  text-align: center;
  padding: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  font-family: var(--font-body);
  transition: background 0.2s;
}
.ll-domain-cta a:hover { background: var(--rust); color: white; }

/* Popular posts widget */
.ll-pop-post {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
  align-items: flex-start;
}
.ll-pop-post:last-child { border-bottom: none; }
.ll-pop-post:hover .ll-pop-title { color: var(--rust); }

.ll-pop-num {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--border);
  line-height: 1;
  flex-shrink: 0;
  width: 28px;
}

.ll-pop-title {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  transition: color 0.2s;
  margin-bottom: 3px;
}
.ll-pop-cat { font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); font-family: var(--font-body); }

/* =============================================
   SINGLE POST
   ============================================= */
.ll-single-wrap {
  display: grid;
  grid-template-columns: 1fr 320px;
  max-width: 100%;
}

.ll-article {
  padding: 60px 56px;
  border-right: 2px solid var(--ink);
  max-width: 760px;
}

.ll-article-cat {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--rust);
  margin-bottom: 16px;
  font-family: var(--font-body);
}

.ll-article-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.ll-article-title em { font-style: italic; color: var(--rust); }

.ll-article-meta {
  font-size: 11px;
  color: var(--muted);
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 2px solid var(--ink);
  font-family: var(--font-body);
  flex-wrap: wrap;
}

.ll-article-body { font-size: 16px; line-height: 1.8; color: var(--slate); }
.ll-article-body h2 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  margin: 2em 0 0.75em;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.4em;
}
.ll-article-body h3 {
  font-family: var(--font-serif);
  font-size: 21px;
  margin: 1.6em 0 0.6em;
  color: var(--ink);
}
.ll-article-body p { margin-bottom: 1.4em; }
.ll-article-body ul, .ll-article-body ol { margin: 0 0 1.4em 1.4em; }
.ll-article-body li { margin-bottom: 0.5em; }
.ll-article-body a { color: var(--rust); text-decoration: underline; }
.ll-article-body a:hover { color: var(--ink); }
.ll-article-body strong { font-weight: 700; color: var(--ink); }
.ll-article-body blockquote {
  border-left: 4px solid var(--lime);
  padding: 16px 24px;
  margin: 2em 0;
  background: var(--warm);
  font-style: italic;
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.5;
  color: var(--ink);
}

/* Affiliate box inside post */
.ll-affiliate-box {
  background: var(--ink);
  color: var(--cream);
  padding: 28px 32px;
  margin: 2.5em 0;
  border-radius: 4px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}
.ll-affiliate-box .ll-aff-label { margin-bottom: 6px; }
.ll-affiliate-box .ll-aff-title { font-size: 20px; margin-bottom: 4px; }
.ll-affiliate-box .ll-aff-desc { font-size: 12px; color: #9A9890; margin: 0; }

/* Post thumbnail */
.ll-article-thumb {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
  border-bottom: 2px solid var(--ink);
  margin-bottom: 0;
}

/* =============================================
   TRUST BAR
   ============================================= */
.ll-trust-bar {
  background: var(--ink);
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  border-top: 2px solid var(--border);
}
.ll-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #888;
  font-size: 12px;
  font-family: var(--font-body);
}
.ll-trust-item strong {
  color: var(--lime);
  font-size: 20px;
  font-family: var(--font-display);
  letter-spacing: 0.05em;
}

/* =============================================
   FOOTER
   ============================================= */
.ll-footer {
  background: var(--ink);
  color: #888;
  padding: 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  border-top: 2px solid var(--rust);
}

.ll-footer-logo { color: var(--cream); margin-bottom: 12px; display: block; }
.ll-footer p { font-size: 12px; line-height: 1.7; color: #666; }

.ll-footer h5 {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 14px;
  font-weight: 700;
  font-family: var(--font-body);
}
.ll-footer ul { list-style: none; }
.ll-footer li { margin-bottom: 8px; }
.ll-footer a { color: #666; text-decoration: none; font-size: 12px; transition: color 0.2s; }
.ll-footer a:hover { color: var(--cream); }

.ll-footer-bottom {
  background: #050504;
  padding: 14px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: #444;
  flex-wrap: wrap;
  gap: 8px;
  font-family: var(--font-body);
}
.ll-footer-bottom a { color: #555; text-decoration: none; }
.ll-footer-bottom a:hover { color: #888; }

/* =============================================
   PAGE — START HERE / STATIC
   ============================================= */
.ll-page-wrap { max-width: 780px; margin: 0 auto; padding: 60px 48px; }
.ll-page-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 300;
  margin-bottom: 32px;
  line-height: 1.1;
}
.ll-page-body { font-size: 16px; line-height: 1.8; color: var(--slate); }
.ll-page-body h2 { font-size: 26px; margin: 1.8em 0 0.6em; }
.ll-page-body p { margin-bottom: 1.3em; }
.ll-page-body a { color: var(--rust); text-decoration: underline; }

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ll-hero-left > * {
  animation: fadeUp 0.6s ease forwards;
  opacity: 0;
}
.ll-hero-left > *:nth-child(1) { animation-delay: 0.1s; }
.ll-hero-left > *:nth-child(2) { animation-delay: 0.2s; }
.ll-hero-left > *:nth-child(3) { animation-delay: 0.3s; }
.ll-hero-left > *:nth-child(4) { animation-delay: 0.45s; }

/* =============================================
   WORDPRESS CORE OVERRIDES
   ============================================= */
.wp-block-image img { border-radius: 3px; }
.alignwide { margin-left: -48px; margin-right: -48px; max-width: calc(100% + 96px); }
.alignfull { margin-left: calc(-50vw + 50%); margin-right: calc(-50vw + 50%); max-width: 100vw; }
.wp-caption-text { font-size: 11px; color: var(--muted); text-align: center; margin-top: 6px; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .ll-main-wrap, .ll-single-wrap { grid-template-columns: 1fr 280px; }
}

@media (max-width: 900px) {
  .ll-nav { padding: 0 20px; }
  .ll-nav-menu { display: none; }
  .ll-hamburger { display: flex; }

  .ll-hero { grid-template-columns: 1fr; }
  .ll-hero-left { border-right: none; border-bottom: 2px solid var(--ink); padding: 40px 24px; }
  .ll-hero-left::before { font-size: 120px; }

  .ll-main-wrap, .ll-single-wrap { grid-template-columns: 1fr; }
  .ll-posts-area { padding: 32px 24px; border-right: none; border-bottom: 2px solid var(--ink); }
  .ll-article { padding: 40px 24px; border-right: none; border-bottom: 2px solid var(--ink); max-width: 100%; }
  .ll-sidebar { padding: 32px 24px; }
  .ll-posts-grid { grid-template-columns: 1fr; }
  .ll-aff-card { grid-template-columns: 1fr; }

  .ll-cats-bar { padding: 0 20px; }
  .ll-magnet { padding: 24px; flex-direction: column; }
  .ll-magnet-form { width: 100%; }
  .ll-magnet-form input { flex: 1; width: auto; min-width: 0; }

  .ll-footer { grid-template-columns: 1fr; padding: 32px 24px; }
  .ll-footer-bottom { padding: 14px 24px; }
  .ll-trust-bar { padding: 20px 24px; gap: 24px; }

  .ll-hero-side-posts { grid-template-columns: 1fr; }
  .ll-side-post { border-right: none; border-bottom: 2px solid var(--ink); }
  .ll-side-post:last-child { border-bottom: none; }
}
