@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800;900&display=swap');

:root {
  --bg-primary: #1a1a2e;
  --bg-secondary: #16213e;
  --bg-card: #16213e;
  --bg-glass: rgba(22, 161, 74, 0.06);
  --text-primary: #e2e8f0;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --accent: #16a34a;
  --accent-light: #22c55e;
  --accent-dark: #15803d;
  --gradient-1: linear-gradient(135deg, #16a34a, #22c55e);
  --gradient-2: linear-gradient(135deg, #16a34a 0%, #0d9488 100%);
  --gradient-3: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  --border: #1e3a5f;
  --shadow: 0 10px 40px rgba(0,0,0,0.5);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --max-width: 1280px;
  --header-h: 72px;
  --header-bg: rgba(26,26,46,0.97);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Tactical Board Background Pattern */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(22, 161, 74, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 161, 74, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: -2;
  pointer-events: none;
}

/* Ambient glow orbs */
body::after {
  content: '';
  position: fixed;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(22, 197, 94, 0.08) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
  animation: orbFloat 25s infinite alternate ease-in-out;
}

@keyframes orbFloat {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-80px, 80px); }
}

a { color: var(--text-primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent-light); }
img { max-width: 100%; height: auto; display: block; border-radius: var(--radius-sm); }

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

/* ===== HEADER — Tactical Dark Bar ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: var(--header-bg);
  backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
}

.header-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 24px; height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}

.site-logo { display: flex; align-items: center; gap: 12px; }
.site-logo img {
  width: 38px; height: 38px;
  filter: drop-shadow(0 0 12px rgba(22, 163, 74, 0.5));
}
.logo-text-group { display: flex; flex-direction: column; }
.site-logo span:first-child {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem; font-weight: 900; letter-spacing: 3px; text-transform: uppercase;
  background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.header-tagline {
  font-size: 0.55rem; font-weight: 600; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 2.5px;
}

/* Desktop Nav */
.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav a {
  padding: 7px 14px; border-radius: 8px; font-size: 0.85rem; font-weight: 600;
  color: var(--text-secondary); letter-spacing: 0.3px;
}
.main-nav a:hover, .main-nav a.active {
  background: rgba(22, 163, 74, 0.12); color: var(--accent-light);
  box-shadow: inset 0 0 0 1px rgba(22, 163, 74, 0.25);
}

.menu-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.8rem; cursor: pointer; }

/* Mobile Nav */
.mobile-nav {
  display: flex; flex-direction: column;
  position: fixed; top: var(--header-h); left: -100%; width: 100%; height: calc(100vh - var(--header-h));
  background: rgba(26, 26, 46, 0.98); backdrop-filter: blur(20px);
  z-index: 999; padding: 24px; gap: 6px; transition: var(--transition); overflow-y: auto;
}
.mobile-nav.open { left: 0; }
.mobile-nav a {
  padding: 14px 20px; font-size: 1.05rem; font-weight: 600; border-radius: var(--radius-sm);
  border: 1px solid transparent; color: var(--text-secondary);
}
.mobile-nav a:hover {
  background: rgba(22, 163, 74, 0.1); border-color: var(--border); padding-left: 28px;
  color: var(--accent-light);
}

/* ===== HERO GRID — Tactical Board Layout ===== */
.hero-grid-section { padding: calc(var(--header-h) + 30px) 0 30px; }
.hero-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 10px; height: 480px;
}
.hero-tile {
  position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer;
  border: 1px solid var(--border);
}
.hero-tile:first-child { grid-column: 1 / 2; grid-row: 1 / 3; }
.hero-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1); }
.hero-tile:hover img { transform: scale(1.06); }

.hero-tile-overlay {
  position: absolute; inset: 0; padding: 28px;
  background: linear-gradient(0deg, rgba(26,26,46,0.95) 0%, rgba(26,26,46,0.5) 40%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
}
.hero-tile-category {
  align-self: flex-start; background: var(--gradient-1); padding: 5px 14px; border-radius: 6px;
  font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 10px;
  color: #fff;
}
.hero-tile-overlay h2 {
  font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; line-height: 1.25;
  margin-bottom: 6px; color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.hero-tile:first-child .hero-tile-overlay h2 { font-size: 2.2rem; }
.hero-meta { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; grid-template-rows: 320px repeat(4, 180px); height: auto; }
  .hero-tile:first-child { grid-column: 1; grid-row: 1; }
  .hero-tile-overlay h2 { font-size: 0.95rem; }
  .hero-tile:first-child .hero-tile-overlay h2 { font-size: 1.6rem; }
}

/* ===== BLOG CARDS — Chalkboard Style ===== */
.section { padding: 50px 0; }
.section-title {
  font-family: 'Playfair Display', serif; font-size: 2rem; margin-bottom: 8px;
  background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.section-subtitle { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 36px; }

.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }

.blog-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; transition: var(--transition);
  cursor: pointer; box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.blog-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 16px 40px rgba(22, 163, 74, 0.15);
}
.card-image { position: relative; height: 210px; overflow: hidden; border-radius: var(--radius-sm) var(--radius-sm) 0 0; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .card-image img { transform: scale(1.05); }
.card-category {
  position: absolute; top: 14px; left: 14px; background: rgba(22, 163, 74, 0.85);
  backdrop-filter: blur(4px); padding: 5px 12px; border-radius: 6px;
  font-size: 0.7rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 1px;
}
.card-body { padding: 22px; }
.card-body h3 { font-size: 1.1rem; font-weight: 700; line-height: 1.4; margin-bottom: 10px; color: var(--text-primary); }
.card-body .excerpt {
  font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 18px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.card-meta {
  display: flex; justify-content: space-between; font-size: 0.78rem; color: var(--text-muted);
  padding-top: 14px; border-top: 1px solid var(--border);
}

/* ===== CATEGORY PAGE ===== */
.category-header { padding: calc(var(--header-h) + 40px) 0 30px; text-align: center; }
.category-header h1 {
  font-family: 'Playfair Display', serif; font-size: 2.8rem; margin-bottom: 10px;
  background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.category-nav { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.category-nav a {
  padding: 9px 20px; border-radius: 8px; font-size: 0.88rem; font-weight: 600;
  background: var(--bg-secondary); border: 1px solid var(--border); transition: var(--transition);
}
.category-nav a:hover, .category-nav a.active {
  background: var(--gradient-1); border-color: transparent; color: #fff;
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.3); transform: translateY(-2px);
}

/* ===== ARTICLE PAGE ===== */
.article-page { padding-top: var(--header-h); }
.article-header { text-align: center; max-width: 900px; margin: 0 auto 36px; padding-top: 40px; }
.article-header h1 {
  font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4.5vw, 3rem); line-height: 1.2;
  margin-bottom: 20px; color: #fff;
}
.article-meta {
  display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; color: var(--text-secondary);
  font-size: 0.9rem; padding: 14px 20px; background: var(--bg-secondary); border-radius: 10px;
  border: 1px solid var(--border); width: fit-content; margin: 0 auto;
}

.article-featured-img {
  max-width: 1000px; margin: 0 auto 40px; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border);
}
.article-content {
  max-width: 800px; margin: 0 auto; font-size: 1.1rem; line-height: 1.9; color: #e2e8f0;
}
.article-content h2 {
  font-family: 'Playfair Display', serif; font-size: 1.8rem; margin: 44px 0 18px;
  color: var(--accent-light); border-left: 4px solid var(--accent); padding-left: 16px;
}
.article-content h3 { font-size: 1.3rem; margin: 28px 0 14px; color: #fff; }
.article-content blockquote {
  border-left: 4px solid var(--accent); padding: 20px 28px; margin: 28px 0;
  background: var(--bg-secondary); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic; font-size: 1.15rem; color: var(--text-secondary);
}
.article-content p { margin-bottom: 18px; }
.article-content ul, .article-content ol { margin: 14px 0; padding-left: 28px; }
.article-content li { margin-bottom: 8px; }
.article-content table {
  width: 100%; border-collapse: collapse; margin: 22px 0;
  background: var(--bg-secondary); border-radius: var(--radius-sm); overflow: hidden;
}
.article-content th, .article-content td { padding: 12px 16px; border: 1px solid var(--border); text-align: left; }
.article-content th { background: rgba(22, 163, 74, 0.15); font-weight: 700; color: var(--accent-light); }
.article-content a { color: var(--accent-light); text-decoration: underline; }

/* Article Tags */
.article-tags { max-width: 800px; margin: 36px auto 0; display: flex; flex-wrap: wrap; gap: 8px; }
.article-tags span {
  padding: 7px 16px; border-radius: 6px; font-size: 0.82rem;
  background: rgba(22, 163, 74, 0.1); border: 1px solid rgba(22, 163, 74, 0.25); color: var(--accent-light);
}

/* Social Share */
.social-share { max-width: 800px; margin: 28px auto; display: flex; flex-wrap: wrap; gap: 10px; }
.share-btn {
  padding: 10px 20px; border-radius: 8px; font-weight: 700; font-size: 0.85rem;
  color: #fff !important; background: var(--accent); transition: var(--transition);
}
.share-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(22,163,74,0.3); }

/* Author Box */
.author-box {
  max-width: 800px; margin: 36px auto; display: flex; gap: 20px; padding: 28px;
  background: var(--bg-secondary); border: 1px solid var(--border); border-radius: var(--radius);
}
.author-avatar {
  width: 72px; height: 72px; border-radius: 50%; object-fit: cover; flex-shrink: 0;
  border: 3px solid var(--accent);
}
.author-info h4 { font-size: 1.05rem; margin-bottom: 8px; color: var(--accent-light); }
.author-info p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }

/* ===== SIDEBAR ===== */
.content-with-sidebar { display: grid; grid-template-columns: 1fr 310px; gap: 36px; align-items: start; }
.sidebar { position: sticky; top: calc(var(--header-h) + 20px); }
.sidebar-widget {
  background: var(--bg-secondary); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px; margin-bottom: 20px;
}
.sidebar-widget h3 {
  font-size: 0.95rem; font-weight: 700; margin-bottom: 14px; padding-bottom: 10px;
  border-bottom: 2px solid var(--accent); color: var(--accent-light);
}
.sidebar-widget .popular-post { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); cursor: pointer; }
.sidebar-widget .popular-post:last-child { border-bottom: none; }
.sidebar-widget .popular-post .thumb { width: 60px; height: 60px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.sidebar-widget .popular-post .thumb img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-widget .popular-post .info h4 { font-size: 0.82rem; font-weight: 600; line-height: 1.4; color: var(--text-primary); }
.sidebar-widget .popular-post .info .meta { font-size: 0.72rem; color: var(--text-muted); margin-top: 4px; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 0.85rem; color: var(--text-muted); margin-bottom: 20px; flex-wrap: wrap;
}
.breadcrumb a { color: var(--accent-light); }

/* ===== TOC ===== */
.toc-container {
  background: var(--bg-secondary); border: 1px solid var(--border); border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0; padding: 22px 28px; margin: 0 0 36px;
}
.toc-container h3 { font-size: 1.05rem; margin-bottom: 12px; color: var(--accent-light); }
.toc-list { list-style: none; padding: 0; }
.toc-list li { padding: 5px 0; }
.toc-list li a { color: var(--text-secondary); font-size: 0.9rem; }
.toc-list li a:hover { color: var(--accent-light); }

/* ===== LATEST ARTICLES ===== */
.latest-articles-section { padding: 10px 0 40px; }
.la-title {
  font-family: 'Inter', sans-serif; font-size: 0.85rem; font-weight: 800; letter-spacing: 3px;
  text-transform: uppercase; margin-bottom: 22px; padding-bottom: 10px;
  border-bottom: 3px solid var(--accent); display: inline-block; color: var(--accent-light);
}
.la-top-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 24px; }
.la-card {
  position: relative; border-radius: var(--radius); overflow: hidden; height: 280px;
  cursor: pointer; border: 1px solid var(--border);
}
.la-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.la-card:hover img { transform: scale(1.06); }
.la-card-overlay {
  position: absolute; inset: 0; padding: 22px;
  background: linear-gradient(0deg, rgba(26,26,46,0.95) 0%, rgba(26,26,46,0.3) 60%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
}
.la-card-overlay h3 {
  font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; line-height: 1.35;
  color: #fff; text-shadow: 0 2px 6px rgba(0,0,0,0.5); margin-bottom: 5px;
}
.la-meta { font-size: 0.75rem; color: var(--text-muted); }
.la-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.la-list-item {
  display: flex; align-items: center; gap: 12px; padding: 10px 0;
  border-bottom: 1px solid var(--border); cursor: pointer; transition: var(--transition);
}
.la-list-item:hover { padding-left: 6px; background: var(--bg-glass); border-radius: 6px; }
.la-list-item img { width: 75px; height: 56px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.la-list-item h4 { font-size: 0.85rem; font-weight: 600; line-height: 1.4; color: var(--text-primary); }

/* ===== CATEGORY SPOTLIGHT ===== */
.cat-spotlight-section { padding: 40px 0; }
.cat-spotlight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.cat-spotlight-col { border-top: 3px solid var(--accent); padding-top: 16px; }
.cat-spotlight-col h3 {
  font-family: 'Inter', sans-serif; font-size: 0.8rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 18px; text-align: center;
  color: var(--accent-light);
}
.cat-spot-featured {
  position: relative; border-radius: var(--radius-sm); overflow: hidden; height: 210px;
  cursor: pointer; margin-bottom: 14px; border: 1px solid var(--border);
}
.cat-spot-featured img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.cat-spot-featured:hover img { transform: scale(1.05); }
.cs-overlay {
  position: absolute; inset: 0; padding: 16px;
  background: linear-gradient(0deg, rgba(26,26,46,0.95) 0%, rgba(26,26,46,0.3) 60%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end; color: #fff;
}
.cs-overlay h4 { font-family: 'Playfair Display', serif; font-size: 0.92rem; font-weight: 700; color: #fff; }
.cat-spot-list-item {
  display: flex; align-items: center; gap: 12px; padding: 9px 0;
  border-bottom: 1px solid var(--border); cursor: pointer; transition: var(--transition);
}
.cat-spot-list-item:hover { padding-left: 6px; background: var(--bg-glass); border-radius: 6px; }
.cat-spot-list-item img { width: 65px; height: 48px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.cat-spot-list-item h5 { font-size: 0.8rem; font-weight: 600; color: var(--text-primary); line-height: 1.4; }

/* ===== BOTTOM BANNER ===== */
.bottom-banner-section { padding: 20px 0 50px; }
.bottom-banner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.bb-card {
  position: relative; border-radius: var(--radius); overflow: hidden; height: 260px;
  cursor: pointer; border: 1px solid var(--border);
}
.bb-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.bb-card:hover img { transform: scale(1.06); }
.bb-overlay {
  position: absolute; inset: 0; padding: 22px;
  background: linear-gradient(0deg, rgba(26,26,46,0.95) 0%, rgba(26,26,46,0.3) 50%, transparent 100%);
  color: #fff; display: flex; flex-direction: column; justify-content: flex-end; align-items: center; text-align: center;
}
.bb-cat {
  display: inline-block; background: var(--gradient-1); padding: 4px 12px; border-radius: 6px;
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px;
}
.bb-overlay h3 {
  font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 800;
  text-transform: uppercase; line-height: 1.3; text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

/* ===== PAGINATION ===== */
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 36px; flex-wrap: wrap; }
.pagination button {
  background: var(--bg-secondary); border: 1px solid var(--border); color: var(--text-secondary);
  padding: 9px 16px; border-radius: 8px; cursor: pointer; font-weight: 600; transition: var(--transition);
  font-family: 'Inter', sans-serif; font-size: 0.85rem;
}
.pagination button:hover, .pagination button.active {
  background: var(--gradient-1); border-color: transparent; color: #fff;
  box-shadow: 0 4px 16px rgba(22,163,74,0.3);
}

/* ===== NEW BADGE ===== */
.new-badge {
  background: var(--gradient-1); color: #fff; padding: 2px 8px; border-radius: 4px;
  font-size: 0.65rem; font-weight: 800; margin-left: 6px; vertical-align: middle;
  text-transform: uppercase; letter-spacing: 1px;
}

/* ===== SCROLL TOP ===== */
.scroll-top {
  position: fixed; bottom: 28px; right: 28px; width: 46px; height: 46px; border-radius: 10px;
  background: var(--gradient-1); border: none; color: #fff; font-size: 1.3rem; cursor: pointer;
  z-index: 999; opacity: 0; transform: translateY(20px); transition: var(--transition);
  box-shadow: 0 6px 20px rgba(22,163,74,0.4);
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }

/* ===== FOOTER — Dark Tactical ===== */
.site-footer {
  background: #0d0d1a; border-top: 1px solid var(--border); padding: 70px 0 36px; margin-top: 80px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1.5fr 1.5fr; gap: 50px; margin-bottom: 50px; }
.footer-grid-new { grid-template-columns: 1.2fr 1.5fr 1fr; }
.footer-col h3 {
  font-family: 'Inter', sans-serif; font-size: 0.85rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 2px; margin-bottom: 20px; color: var(--accent-light);
  border-bottom: 2px solid var(--accent); padding-bottom: 10px; display: inline-block;
}
.footer-about-text { color: var(--text-secondary); line-height: 1.8; margin: 16px 0; font-size: 0.88rem; }
.footer-contact { font-size: 0.85rem; color: var(--text-secondary); }
.footer-contact a { color: var(--accent-light); font-weight: 600; }
.footer-col p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.7; }
.footer-links-bar {
  display: flex; justify-content: center; gap: 28px; margin-bottom: 24px; padding-top: 24px;
  border-top: 1px solid rgba(30, 58, 95, 0.5);
}
.footer-links-bar a { color: var(--text-muted); font-size: 0.88rem; font-weight: 500; }
.footer-links-bar a:hover { color: var(--accent-light); }
.footer-bottom { text-align: center; color: var(--text-muted); font-size: 0.85rem; }

/* Footer Popular Posts */
.fp-item { display: flex; gap: 14px; padding: 10px 0; border-bottom: 1px solid rgba(30,58,95,0.4); cursor: pointer; }
.fp-item img { width: 72px; height: 54px; border-radius: 6px; object-fit: cover; }
.fp-item h4 { font-size: 0.85rem; font-weight: 500; color: #e2e8f0; line-height: 1.4; transition: var(--transition); }
.fp-item:hover h4 { color: var(--accent-light); }

/* ===== NAV DROPDOWN ===== */
.nav-dropdown { position: relative; display: inline-flex; align-items: center; }
.nav-dropdown-content {
  display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: var(--bg-secondary); min-width: 200px; border: 1px solid var(--border);
  border-radius: var(--radius-sm); box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  padding: 8px 0; z-index: 2000; flex-direction: column;
}
.nav-dropdown:hover .nav-dropdown-content { display: flex; }
.nav-dropdown-content a { padding: 9px 18px !important; border-radius: 0 !important; font-size: 0.84rem !important; white-space: nowrap; }
.nav-dropdown-content a:hover { background: rgba(22,163,74,0.1) !important; color: var(--accent-light) !important; }

/* ===== STATIC PAGES ===== */
.static-page {
  max-width: 800px; margin: 0 auto; padding: calc(var(--header-h) + 50px) 24px 60px;
}
.static-page h1 {
  font-family: 'Playfair Display', serif; font-size: 2.4rem; margin-bottom: 24px;
  background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.static-page h2 {
  font-size: 1.4rem; margin: 32px 0 12px; color: var(--accent-light);
  border-left: 4px solid var(--accent); padding-left: 14px;
}
.static-page p { font-size: 1rem; line-height: 1.8; color: var(--text-secondary); margin-bottom: 14px; }
.static-page ul { margin: 14px 0 18px 24px; }
.static-page li { margin-bottom: 8px; line-height: 1.6; font-size: 0.98rem; color: var(--text-secondary); }

/* Contact Form */
.contact-form { margin: 30px 0; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 6px; color: var(--text-secondary);
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: var(--bg-secondary); color: var(--text-primary); font-family: inherit; font-size: 0.95rem;
  transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(22,163,74,0.15);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.btn-submit {
  padding: 12px 36px; background: var(--gradient-1); border: none; border-radius: var(--radius-sm);
  color: #fff; font-weight: 700; font-size: 1rem; cursor: pointer; transition: var(--transition);
  font-family: inherit;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(22,163,74,0.3); }

/* Featured Card */
.featured-card { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; min-height: 340px; }
.featured-card .card-image { height: 100%; min-height: 280px; border-radius: var(--radius) 0 0 var(--radius); }
.featured-card .card-body { display: flex; flex-direction: column; justify-content: center; padding: 36px; }
.featured-card .card-body h3 { font-size: 1.4rem; }

/* ===== SEARCH OVERLAY ===== */
.nav-search {
  display: inline-flex; align-items: center; padding: 8px; cursor: pointer;
  color: var(--text-primary); font-size: 1.05rem; transition: 0.3s ease;
}
.nav-search:hover { opacity: 0.7; transform: scale(1.1); }

.search-overlay {
  position: fixed; inset: 0; background: rgba(26,26,46,0.92);
  backdrop-filter: blur(16px); z-index: 9999;
  display: none; align-items: flex-start; justify-content: center; padding-top: 10vh;
  opacity: 0; transition: opacity 0.3s ease;
}
.search-overlay.active { display: flex; opacity: 1; }

.search-overlay-inner { width: 90%; max-width: 700px; position: relative; }

.search-close {
  position: absolute; top: -48px; right: 0; background: none; border: none;
  color: #fff; font-size: 2.2rem; cursor: pointer; opacity: 0.7; transition: 0.3s ease; line-height: 1;
}
.search-close:hover { opacity: 1; transform: scale(1.15); }

.search-box { position: relative; }
.search-box input {
  width: 100%; padding: 16px 22px 16px 52px; font-size: 1.1rem; font-family: inherit;
  border: 2px solid var(--accent); border-radius: var(--radius-sm);
  background: var(--bg-secondary); color: var(--text-primary);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3); outline: none;
}
.search-box input::placeholder { color: var(--text-muted); font-style: italic; }
.search-box::before {
  content: '🔍'; position: absolute; left: 18px; top: 50%; transform: translateY(-50%);
  font-size: 1.1rem; pointer-events: none;
}

.search-results { margin-top: 18px; max-height: 55vh; overflow-y: auto; padding-right: 4px; }
.search-results::-webkit-scrollbar { width: 5px; }
.search-results::-webkit-scrollbar-thumb { background: rgba(22,163,74,0.3); border-radius: 3px; }

.search-hint {
  color: rgba(255,255,255,0.4); text-align: center; font-size: 0.92rem;
  padding: 36px 0; font-style: italic;
}
.search-no-results { color: rgba(255,255,255,0.5); text-align: center; padding: 36px 0; font-size: 1rem; }

.search-result-item {
  display: flex; align-items: center; gap: 14px; padding: 12px 14px;
  background: rgba(22,163,74,0.06); border-radius: 8px; margin-bottom: 6px;
  cursor: pointer; transition: 0.3s ease; border: 1px solid rgba(30,58,95,0.4);
}
.search-result-item:hover {
  background: rgba(22,163,74,0.12); transform: translateX(4px); border-color: var(--accent);
}

.search-result-img { width: 68px; height: 50px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.search-result-info { flex: 1; min-width: 0; }
.search-result-cat {
  display: inline-block; font-size: 0.58rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--accent-light); margin-bottom: 3px;
}
.search-result-title {
  font-size: 0.9rem; font-weight: 700; color: #fff; line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.search-result-excerpt {
  font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-top: 3px;
  display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden;
}
.search-count { color: rgba(255,255,255,0.3); font-size: 0.78rem; padding: 6px 0 4px; text-align: right; }

/* ===== ABOUT PAGE CUSTOM ===== */
.about-hero {
  background: linear-gradient(135deg, #16a34a 0%, #0d9488 100%);
  color: white; padding: 90px 20px 70px; text-align: center; margin-top: var(--header-h);
}
.about-hero h1 { font-family: 'Playfair Display', serif; font-size: 2.6rem; margin-bottom: 14px; }
.about-hero p { font-size: 1.1rem; opacity: 0.9; max-width: 620px; margin: 0 auto; line-height: 1.7; }
.about-content {
  max-width: 800px; margin: -36px auto 50px; background: var(--bg-secondary);
  padding: 44px; border-radius: var(--radius); border: 1px solid var(--border);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}
.about-content h1 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: #fff; margin-bottom: 14px; }
.about-content h2 {
  color: var(--accent-light); font-size: 1.3rem; margin: 28px 0 12px;
  border-left: 4px solid var(--accent); padding-left: 14px;
}
.about-content p { font-size: 1rem; line-height: 1.8; color: var(--text-secondary); margin-bottom: 14px; }
.about-content ul { margin: 12px 0 18px 24px; }
.about-content li { margin-bottom: 8px; line-height: 1.6; font-size: 0.98rem; color: var(--text-secondary); }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 28px 0; }
.about-stat {
  text-align: center; padding: 22px; background: rgba(22,163,74,0.08); border-radius: var(--radius-sm);
  border: 1px solid rgba(22,163,74,0.2);
}
.about-stat .num { font-size: 2rem; font-weight: 800; color: var(--accent-light); }
.about-stat .label { font-size: 0.85rem; color: var(--text-muted); margin-top: 4px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .menu-toggle { display: block; }
  .content-with-sidebar { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .footer-grid, .footer-grid-new { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .la-top-row, .la-list, .cat-spotlight-grid, .bottom-banner-grid { grid-template-columns: 1fr; }
  .la-card, .bb-card { height: 220px; }
  .hero-grid { grid-template-columns: 1fr; grid-template-rows: 300px repeat(4, 180px); height: auto; }
  .hero-tile:first-child { grid-column: 1; grid-row: 1; }
  .hero-tile:first-child .hero-tile-overlay h2 { font-size: 1.6rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .featured-card { grid-template-columns: 1fr; }
  .featured-card .card-image { min-height: 200px; border-radius: var(--radius) var(--radius) 0 0; }
  .author-box { flex-direction: column; align-items: center; text-align: center; }
  .about-stats { grid-template-columns: 1fr; }
  .search-overlay { padding-top: 5vh; }
  .search-overlay-inner { width: 95%; }
  .search-box input { font-size: 1rem; padding: 14px 18px 14px 44px; }
  .search-result-img { width: 56px; height: 42px; }
  .pt-0 { padding-top: 0 !important; }
}

.pt-0 { padding-top: 0 !important; }

/* Article meta top for static pages */
.article-meta-top { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 12px; font-size: 0.85rem; color: var(--text-muted); }
.article-category { background: var(--gradient-1); color: #fff; padding: 3px 10px; border-radius: 4px; font-weight: 700; font-size: 0.75rem; text-transform: uppercase; }
.article-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.8rem); line-height: 1.2; margin-bottom: 14px; color: #fff; }
.article-byline { font-size: 0.9rem; color: var(--text-muted); }
.article-body { font-size: 1.1rem; line-height: 1.9; color: var(--text-secondary); }
.article-body h2 { font-family: 'Playfair Display', serif; font-size: 1.7rem; margin: 36px 0 14px; color: var(--accent-light); border-left: 4px solid var(--accent); padding-left: 14px; }
.article-body h3 { font-size: 1.25rem; margin: 24px 0 12px; color: #fff; }
.article-body p { margin-bottom: 16px; }
.article-body ul, .article-body ol { margin: 12px 0; padding-left: 24px; }
.article-body li { margin-bottom: 6px; }
.article-body table { width: 100%; border-collapse: collapse; margin: 20px 0; background: var(--bg-secondary); border-radius: var(--radius-sm); overflow: hidden; }
.article-body th, .article-body td { padding: 10px 14px; border: 1px solid var(--border); text-align: left; }
.article-body th { background: rgba(22,163,74,0.15); font-weight: 700; color: var(--accent-light); }
.article-body blockquote { border-left: 4px solid var(--accent); padding: 16px 24px; margin: 24px 0; background: var(--bg-secondary); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-style: italic; }
.article-body a { color: var(--accent-light); text-decoration: underline; }
