/*
Theme Name: LightHouz
Theme URI: https://lighthouz.today
Author: LightHouz News
Author URI: https://lighthouz.today
Description: A bold premium US news magazine theme for LightHouz.today — slate blue, amber gold, and crisp white design. Completely unique from AmeriWave, AmeriNest and EagleHub. Google News ready, E-E-A-T compliant, lightning fast, and fully mobile responsive.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: lighthouz
Tags: news, magazine, blog, custom-menu, featured-images
*/

/* ═══════════════════════════════════════
   CSS VARIABLES & RESET
═══════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --slate:    #1E293B;
  --slate-dk: #0F172A;
  --slate-md: #334155;
  --amber:    #F59E0B;
  --amber-dk: #D97706;
  --amber-lt: #FEF3C7;
  --teal:     #0D9488;
  --white:    #FFFFFF;
  --offwhite: #F8FAFC;
  --gray:     #F1F5F9;
  --border:   #E2E8F0;
  --text:     #1E293B;
  --muted:    #64748B;
  --serif:    'Playfair Display', Georgia, serif;
  --sans:     'Plus Jakarta Sans', 'Inter', Arial, sans-serif;
  --shadow:   0 1px 12px rgba(0,0,0,.07);
  --shadow-lg:0 8px 40px rgba(0,0,0,.14);
  --radius:   6px;
}

html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--text); background: var(--offwhite); line-height: 1.7; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ═══════════════════════════════════════
   ACCESSIBILITY
═══════════════════════════════════════ */
.lh-sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.lh-skip { position: absolute; top: -100%; left: 8px; background: var(--slate); color: #fff; padding: 8px 16px; z-index: 9999; border-radius: 0 0 6px 6px; }
.lh-skip:focus { top: 0; }
:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; }

/* ═══════════════════════════════════════
   ALERT TICKER
═══════════════════════════════════════ */
.lh-alert {
  background: var(--slate-dk);
  padding: 8px 0;
  border-bottom: 3px solid var(--amber);
}
.lh-alert-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.lh-alert-pill {
  background: var(--amber);
  color: var(--slate-dk);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 99px;
  flex-shrink: 0;
  white-space: nowrap;
  animation: lhpulse 2s ease-in-out infinite;
}
@keyframes lhpulse { 0%,100%{opacity:1} 50%{opacity:.65} }
.lh-alert-track { overflow: hidden; flex: 1; }
.lh-alert-scroll { display: inline-block; white-space: nowrap; animation: lhscroll 38s linear infinite; font-size: 12.5px; color: #94A3B8; font-weight: 500; }
.lh-alert-scroll span { margin: 0 44px; }
.lh-alert-scroll span::before { content: '◆'; font-size: 6px; margin-right: 10px; color: var(--amber); vertical-align: middle; }
@keyframes lhscroll { 0%{transform:translateX(100vw)} 100%{transform:translateX(-100%)} }
.lh-alert-right { font-size: 11px; color: #475569; flex-shrink: 0; display: flex; align-items: center; gap: 8px; }
.lh-alert-live { width: 8px; height: 8px; background: var(--teal); border-radius: 50%; animation: lhpulse 1.5s infinite; display: inline-block; }

/* ═══════════════════════════════════════
   HEADER
═══════════════════════════════════════ */
.lh-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: var(--shadow);
}
.lh-header-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.lh-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lh-logo-icon {
  width: 44px;
  height: 44px;
  background: var(--slate);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.lh-logo-icon::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--amber);
}
.lh-logo-text { display: flex; flex-direction: column; }
.lh-logo-name {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1;
  color: var(--slate);
}
.lh-logo-name em { color: var(--amber); font-style: normal; }
.lh-logo-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}
.lh-header-right { display: flex; align-items: center; gap: 12px; }
.lh-header-date { font-size: 11px; color: var(--muted); text-align: right; line-height: 1.5; }
.lh-header-date strong { display: block; color: var(--slate); font-size: 12px; }

/* ═══════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════ */
.lh-nav-wrap { background: var(--slate); border-bottom: 3px solid var(--amber); }
.lh-nav {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}
.lh-nav::-webkit-scrollbar { display: none; }
.lh-nav a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 16px;
  white-space: nowrap;
  color: #94A3B8;
  display: block;
  transition: all .15s;
  border-bottom: 3px solid transparent;
  margin-bottom: -3px;
}
.lh-nav a:hover { color: #fff; border-bottom-color: var(--amber); }
.lh-nav a.lh-active { color: var(--amber); border-bottom-color: var(--amber); }
.lh-nav a.lh-home { color: var(--amber); font-size: 13px; }

/* ═══════════════════════════════════════
   LAYOUT
═══════════════════════════════════════ */
.lh-container { max-width: 1260px; margin: 0 auto; padding: 0 24px; }
.lh-grid { display: grid; grid-template-columns: 1fr 380px; gap: 40px; padding: 36px 0; }
@media (max-width: 980px) { .lh-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════
   SECTION HEADERS
═══════════════════════════════════════ */
.lh-section-hd {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 32px 0 20px;
}
.lh-section-hd-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--slate);
  padding: 6px 16px;
  border-radius: 3px;
  white-space: nowrap;
}
.lh-section-hd-amber {
  width: 32px;
  height: 3px;
  background: var(--amber);
  border-radius: 99px;
}
.lh-section-hd-line { flex: 1; height: 1px; background: var(--border); }

/* ═══════════════════════════════════════
   FEATURED HERO — Unique stacked layout
═══════════════════════════════════════ */
.lh-hero { margin-bottom: 4px; }
.lh-hero-top {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4px;
  margin-bottom: 4px;
}
.lh-hero-main {
  position: relative;
  overflow: hidden;
  background: var(--slate);
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  border-radius: var(--radius) 0 0 var(--radius);
}
.lh-hero-main img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.lh-hero-main:hover img { transform: scale(1.04); }
.lh-hero-main-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,.95) 0%, rgba(15,23,42,.5) 50%, rgba(15,23,42,.1) 100%);
}
.lh-hero-main-body { position: relative; z-index: 2; padding: 28px; width: 100%; }
.lh-hero-tag {
  background: var(--amber);
  color: var(--slate-dk);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 12px;
}
.lh-hero-title {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 900;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 12px;
}
.lh-hero-title a { color: #fff; }
.lh-hero-title a:hover { color: var(--amber); }
.lh-hero-meta { font-size: 12px; color: rgba(255,255,255,.6); }
.lh-hero-meta strong { color: rgba(255,255,255,.9); }

/* Right side of hero — stacked 2 */
.lh-hero-stack { display: flex; flex-direction: column; gap: 4px; }
.lh-hero-sub {
  position: relative;
  overflow: hidden;
  background: var(--slate);
  flex: 1;
  min-height: 206px;
  display: flex;
  align-items: flex-end;
}
.lh-hero-sub:first-child { border-radius: 0 var(--radius) 0 0; }
.lh-hero-sub:last-child { border-radius: 0 0 var(--radius) 0; }
.lh-hero-sub img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.lh-hero-sub:hover img { transform: scale(1.05); }
.lh-hero-sub .lh-hero-main-overlay { background: linear-gradient(to top, rgba(15,23,42,.9) 0%, rgba(15,23,42,.15) 100%); }
.lh-hero-sub .lh-hero-main-body { padding: 16px 20px; }
.lh-hero-sub .lh-hero-title { font-size: 17px; margin-bottom: 6px; }
.lh-hero-sub .lh-hero-tag { font-size: 8px; padding: 3px 8px; margin-bottom: 8px; }

/* Bottom row — 3 more stories */
.lh-hero-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.lh-hero-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--amber);
  padding: 16px;
  transition: var(--shadow-lg) .2s;
}
.lh-hero-card:hover { box-shadow: var(--shadow-lg); }
.lh-hero-card-tag { font-size: 9px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--amber); margin-bottom: 8px; display: block; }
.lh-hero-card-title { font-family: var(--serif); font-size: 15px; font-weight: 700; line-height: 1.35; color: var(--text); margin-bottom: 8px; }
.lh-hero-card-title a:hover { color: var(--slate-md); }
.lh-hero-card-meta { font-size: 11px; color: var(--muted); }

@media (max-width: 960px) { .lh-hero-top { grid-template-columns: 1fr; } .lh-hero-bottom { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════
   NEWS LIST — Horizontal rows
═══════════════════════════════════════ */
.lh-newslist { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.lh-newsitem {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  transition: background .15s;
}
.lh-newsitem:hover { background: var(--offwhite); }
.lh-newsitem:last-child { border-bottom: none; }
.lh-newsitem-n {
  background: var(--gray);
  border-right: 1px solid var(--border);
  padding: 0 16px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 900;
  color: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 60px;
  min-height: 90px;
}
.lh-newsitem-thumb {
  width: 120px;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--slate);
  border-right: 1px solid var(--border);
}
.lh-newsitem-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.lh-newsitem:hover .lh-newsitem-thumb img { transform: scale(1.06); }
.lh-newsitem-body { padding: 16px 20px; flex: 1; }
.lh-newsitem-tag { font-size: 9px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--amber-dk); margin-bottom: 5px; display: block; }
.lh-newsitem-title { font-family: var(--serif); font-size: 16px; font-weight: 700; line-height: 1.3; color: var(--text); margin-bottom: 6px; }
.lh-newsitem-title a:hover { color: var(--slate-md); }
.lh-newsitem-meta { font-size: 11px; color: var(--muted); }
.lh-newsitem-arrow { padding: 0 16px; display: flex; align-items: center; color: var(--border); font-size: 18px; flex-shrink: 0; }
.lh-newsitem:hover .lh-newsitem-arrow { color: var(--amber); }

/* ═══════════════════════════════════════
   MAGAZINE GRID — 4 col
═══════════════════════════════════════ */
.lh-mag { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
@media (max-width: 700px) { .lh-mag { grid-template-columns: 1fr 1fr; } }

.lh-magcard { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all .2s; }
.lh-magcard:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.lh-magcard-img { height: 160px; overflow: hidden; background: var(--slate); position: relative; }
.lh-magcard-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.lh-magcard:hover .lh-magcard-img img { transform: scale(1.07); }
.lh-magcard-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--amber);
  color: var(--slate-dk);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 3px;
}
.lh-magcard-body { padding: 14px; }
.lh-magcard-title { font-family: var(--serif); font-size: 15px; font-weight: 700; line-height: 1.35; color: var(--text); margin-bottom: 8px; }
.lh-magcard-title a:hover { color: var(--slate-md); }
.lh-magcard-meta { font-size: 11px; color: var(--muted); display: flex; justify-content: space-between; align-items: center; }
.lh-magcard-mins { background: var(--gray); padding: 2px 8px; border-radius: 99px; font-size: 10px; font-weight: 700; color: var(--muted); }

/* ═══════════════════════════════════════
   CATEGORY TILES
═══════════════════════════════════════ */
.lh-cats { display: grid; grid-template-columns: repeat(6,1fr); gap: 10px; margin-bottom: 36px; }
@media (max-width: 700px) { .lh-cats { grid-template-columns: repeat(3,1fr); } }
.lh-cattile {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 12px;
  text-align: center;
  transition: all .2s;
  display: block;
  position: relative;
  overflow: hidden;
}
.lh-cattile::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--cc, var(--slate));
  border-radius: var(--radius) var(--radius) 0 0;
}
.lh-cattile:hover { background: var(--slate); border-color: var(--slate); }
.lh-cattile:hover .lh-ct-name { color: var(--amber); }
.lh-ct-icon { font-size: 22px; display: block; margin-bottom: 8px; }
.lh-ct-name { font-size: 9px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); transition: color .2s; }

/* ═══════════════════════════════════════
   SIDEBAR
═══════════════════════════════════════ */
.lh-sidebar { display: flex; flex-direction: column; gap: 24px; }
.lh-widget { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.lh-widget-hd {
  background: var(--slate);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 2px solid var(--amber);
}
.lh-widget-hd span { font-size: 10px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: #fff; }
.lh-widget-hd em { font-style: normal; font-size: 14px; }

/* Trending */
.lh-trend { display: flex; gap: 12px; padding: 12px 16px; border-bottom: 1px solid var(--border); transition: background .15s; align-items: flex-start; }
.lh-trend:hover { background: var(--offwhite); }
.lh-trend:last-child { border-bottom: none; }
.lh-trend-n { font-family: var(--serif); font-size: 26px; font-weight: 900; color: var(--border); line-height: 1; flex-shrink: 0; width: 32px; padding-top: 2px; }
.lh-trend-cat { font-size: 9px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--amber-dk); margin-bottom: 4px; display: block; }
.lh-trend-title { font-size: 13px; font-weight: 600; line-height: 1.4; color: var(--text); }
.lh-trend-title a:hover { color: var(--slate-md); }
.lh-trend-meta { font-size: 10px; color: var(--muted); margin-top: 3px; display: block; }

/* Opinion */
.lh-opinion { padding: 14px 16px; border-bottom: 1px solid var(--border); }
.lh-opinion:last-child { border-bottom: none; }
.lh-opinion-top { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.lh-opinion-av { width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; color: #fff; border: 2px solid var(--amber); }
.lh-opinion-name { font-size: 12px; font-weight: 700; color: var(--text); }
.lh-opinion-role { font-size: 10px; color: var(--muted); }
.lh-opinion-q { font-size: 13px; font-style: italic; color: #4a5568; line-height: 1.6; padding: 8px 12px; background: var(--amber-lt); border-left: 3px solid var(--amber); margin: 0; }

/* Newsletter */
.lh-letter {
  background: linear-gradient(135deg, var(--slate) 0%, var(--slate-md) 100%);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.lh-letter::after { content: '💡'; position: absolute; right: -8px; top: -8px; font-size: 80px; opacity: .06; }
.lh-letter-tag { font-size: 9px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: var(--amber); display: block; margin-bottom: 8px; }
.lh-letter h4 { font-family: var(--serif); font-size: 22px; color: #fff; margin-bottom: 6px; font-weight: 900; }
.lh-letter p { font-size: 12px; color: #94A3B8; margin-bottom: 14px; line-height: 1.6; }
.lh-letter input { width: 100%; padding: 10px 14px; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.08); color: #fff; font-size: 13px; border-radius: 4px; font-family: var(--sans); margin-bottom: 8px; }
.lh-letter input::placeholder { color: #64748B; }
.lh-letter input:focus { outline: none; border-color: var(--amber); }
.lh-letter button { width: 100%; background: var(--amber); color: var(--slate-dk); border: none; padding: 11px; font-size: 11px; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; font-family: var(--sans); border-radius: 4px; transition: background .2s; }
.lh-letter button:hover { background: var(--amber-dk); }

/* ═══════════════════════════════════════
   SINGLE POST
═══════════════════════════════════════ */
.lh-single-wrap {
  max-width: 1260px;
  margin: 0 auto;
  padding: 40px 24px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
}
@media (max-width: 980px) { .lh-single-wrap { grid-template-columns: 1fr; } }

.lh-art-tag {
  display: inline-block;
  background: var(--amber);
  color: var(--slate-dk);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 3px;
  margin-bottom: 16px;
}
.lh-art-headline {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 900;
  line-height: 1.18;
  color: var(--slate-dk);
  margin-bottom: 14px;
}
.lh-art-dek { font-size: 19px; color: var(--muted); line-height: 1.55; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 2px solid var(--border); font-style: italic; }
.lh-byline { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; padding: 14px 16px; background: var(--gray); border-radius: var(--radius); border-left: 4px solid var(--amber); }
.lh-byline-av { width: 50px; height: 50px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 16px; color: #fff; }
.lh-byline-name { font-size: 15px; font-weight: 700; color: var(--slate-dk); }
.lh-byline-info { font-size: 11px; color: var(--muted); margin-top: 2px; }
.lh-art-img { width: 100%; max-height: 500px; object-fit: cover; border-radius: var(--radius); margin-bottom: 8px; }
.lh-art-caption { font-size: 12px; color: var(--muted); font-style: italic; margin-bottom: 28px; padding: 8px 12px; background: var(--amber-lt); border-left: 3px solid var(--amber); border-radius: 0 var(--radius) var(--radius) 0; }
.lh-art-body { font-size: 17px; line-height: 1.9; color: #2d3748; }
.lh-art-body > * + * { margin-top: 1.4rem; }
.lh-art-body h2 { font-family: var(--serif); font-size: 26px; font-weight: 900; color: var(--slate-dk); margin: 36px 0 12px; padding-left: 16px; border-left: 5px solid var(--amber); }
.lh-art-body h3 { font-family: var(--serif); font-size: 21px; font-weight: 700; color: var(--slate-dk); margin: 28px 0 10px; }
.lh-art-body blockquote { border-left: 5px solid var(--amber); padding: 16px 24px; margin: 28px 0; background: var(--amber-lt); font-style: italic; font-size: 19px; color: #4a5568; border-radius: 0 var(--radius) var(--radius) 0; }
.lh-art-body a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }
.lh-art-body a:hover { color: var(--slate); }
.lh-art-body strong { font-weight: 700; color: var(--slate-dk); }
.lh-art-body ul { padding-left: 24px; }
.lh-art-body ul li { list-style: disc; margin-bottom: 8px; }
.lh-art-body ol { padding-left: 24px; }
.lh-art-body ol li { list-style: decimal; margin-bottom: 8px; }

/* Tags */
.lh-art-tags { margin-top: 32px; padding-top: 20px; border-top: 2px solid var(--border); display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.lh-art-tags strong { font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }
.lh-art-tags a { background: var(--gray); border: 1px solid var(--border); font-size: 12px; padding: 5px 14px; color: var(--muted); transition: all .2s; border-radius: 99px; }
.lh-art-tags a:hover { background: var(--slate); color: #fff; border-color: var(--slate); }

/* Author box */
.lh-author-card { margin-top: 40px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); border-top: 4px solid var(--amber); padding: 24px; display: flex; gap: 20px; }
.lh-author-av { width: 80px; height: 80px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 24px; font-weight: 900; color: #fff; border: 3px solid var(--amber); }
.lh-author-card h4 { font-family: var(--serif); font-size: 20px; font-weight: 900; margin-bottom: 2px; }
.lh-author-role { font-size: 10px; color: var(--muted); display: block; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700; }
.lh-author-card p { font-size: 14px; color: #555; margin: 0; line-height: 1.7; }

/* Disclaimer */
.lh-disclaimer { background: var(--gray); border: 1px solid var(--border); border-left: 4px solid var(--slate); padding: 16px 20px; margin-top: 28px; font-size: 12px; color: var(--muted); line-height: 1.7; border-radius: 0 var(--radius) var(--radius) 0; }
.lh-disclaimer strong { display: block; font-size: 9px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--slate); margin-bottom: 5px; }

/* ═══════════════════════════════════════
   CATEGORY PAGE
═══════════════════════════════════════ */
.lh-cat-banner { padding: 52px 0; position: relative; overflow: hidden; }
.lh-cat-banner::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,23,42,.85), rgba(15,23,42,.5)); }
.lh-cat-banner-inner { max-width: 1260px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; color: #fff; }
.lh-cat-banner small { font-size: 9px; font-weight: 800; letter-spacing: 4px; text-transform: uppercase; color: var(--amber); display: block; margin-bottom: 10px; }
.lh-cat-banner h1 { font-family: var(--serif); font-size: 52px; font-weight: 900; line-height: 1.1; }
.lh-cat-banner p { color: rgba(255,255,255,.65); margin-top: 10px; font-size: 15px; }
.lh-cat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
@media (max-width: 700px) { .lh-cat-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════
   PAGINATION
═══════════════════════════════════════ */
.lh-pagination { display: flex; gap: 6px; margin: 36px 0; }
.lh-pagination a, .lh-pagination span { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: 1px solid var(--border); font-size: 13px; font-weight: 700; background: var(--white); border-radius: var(--radius); transition: all .15s; }
.lh-pagination a:hover { background: var(--slate); color: #fff; border-color: var(--slate); }
.lh-pagination .current { background: var(--amber); color: var(--slate-dk); border-color: var(--amber); font-weight: 900; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.lh-footer { background: var(--slate-dk); color: #64748B; margin-top: 56px; }
.lh-footer-top { background: var(--slate); border-bottom: 3px solid var(--amber); padding: 36px 0; text-align: center; }
.lh-footer-top-inner { max-width: 1260px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
.lh-footer-brand { display: flex; align-items: center; gap: 12px; }
.lh-footer-logo-box { width: 40px; height: 40px; background: var(--amber); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.lh-footer-logo-name { font-family: var(--serif); font-size: 28px; font-weight: 900; color: #fff; }
.lh-footer-logo-name em { color: var(--amber); font-style: normal; }
.lh-footer-mission { font-size: 13px; color: #94A3B8; max-width: 360px; text-align: left; line-height: 1.6; }
.lh-footer-cols { max-width: 1260px; margin: 0 auto; padding: 40px 24px; display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 40px; border-bottom: 1px solid #1E293B; }
@media (max-width: 700px) { .lh-footer-cols { grid-template-columns: 1fr 1fr; } }
.lh-footer-col h5 { font-size: 10px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: var(--amber); margin-bottom: 16px; padding-bottom: 8px; border-bottom: 1px solid #1E293B; }
.lh-footer-col a { display: block; font-size: 13px; color: #475569; margin-bottom: 10px; transition: color .15s; }
.lh-footer-col a:hover { color: var(--amber); }
.lh-footer-bottom { max-width: 1260px; margin: 0 auto; padding: 18px 24px; display: flex; justify-content: space-between; align-items: center; font-size: 11px; color: #334155; flex-wrap: wrap; gap: 10px; }
.lh-footer-bottom a { color: #334155; transition: color .15s; }
.lh-footer-bottom a:hover { color: var(--amber); }
.lh-footer-legal { display: flex; gap: 20px; }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 700px) {
  .lh-logo-name { font-size: 22px; }
  .lh-art-headline { font-size: 28px; }
  .lh-hero-main { min-height: 280px; }
  .lh-alert { display: none; }
  .lh-footer-top-inner { flex-direction: column; gap: 16px; text-align: center; }
  .lh-footer-mission { text-align: center; }
  .lh-author-card { flex-direction: column; align-items: center; text-align: center; }
}
@media print { .lh-alert, .lh-header, .lh-nav-wrap, .lh-sidebar, .lh-footer { display: none; } .lh-single-wrap { grid-template-columns: 1fr; } }
