/* ============================================
   NxtLifestyle — Professional Blog Theme v3.0
   Single Source of Truth for ALL styles
   ============================================ */

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

/* --- Design Tokens --- */
:root {
  --brand: #B5636A;
  --brand-light: #FDF2F4;
  --brand-dark: #8D4A4F;
  --surface: #FFFFFF;
  --background: #FAF8F6;
  --text: #1A1A1A;
  --text-secondary: #5A5A5A;
  --text-muted: #999;
  --border: #E8E5E0;
  --border-light: rgba(0,0,0,0.04);
  --amazon-orange: #FF9900;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --container-max: 1200px;
  --container-wide: 1380px;
  --nav-height: 64px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--background);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); line-height: 1.25; color: var(--text); }

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

/* --- Boxed Layout --- */
.site-wrapper {
  max-width: var(--container-wide);
  margin: 32px auto;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  min-height: 80vh;
}
@media (max-width: 1440px) { .site-wrapper { margin: 16px; } }
@media (max-width: 768px) {
  .site-wrapper { margin: 0; border-radius: 0; border: none; box-shadow: none; }
}

/* ============================================
   NAVIGATION
   ============================================ */
.nxt-nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-height);
}
.nxt-nav-inner {
  max-width: var(--container-wide);
  margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
}
.nxt-logo { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--text); }
.nxt-logo span { color: var(--brand); }
.nxt-nav-links { display: flex; align-items: center; gap: 4px; }
.nxt-nav-item { position: relative; }
.nxt-nav-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; font-size: 0.9rem; font-weight: 500;
  color: var(--text-secondary); border-radius: var(--radius-sm);
  transition: var(--transition); white-space: nowrap;
}
.nxt-nav-link:hover { color: var(--brand); background: var(--brand-light); }
.nxt-nav-link.active { color: var(--brand); font-weight: 600; }

/* Dropdown */
.nxt-dropdown {
  position: absolute; top: 100%; left: 0;
  min-width: 220px; padding: 8px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-md); box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: var(--transition); z-index: 100;
}
.nxt-nav-item:hover .nxt-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nxt-dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; font-size: 0.88rem; color: var(--text-secondary);
  border-radius: var(--radius-sm); transition: var(--transition);
}
.nxt-dropdown a:hover { background: var(--brand-light); color: var(--brand); }
.nxt-dropdown-icon { font-size: 1.1rem; width: 24px; text-align: center; }
.nxt-dropdown-divider { height: 1px; background: var(--border); margin: 6px 0; }
.nxt-dropdown-viewall {
  display: block; padding: 10px 14px; font-size: 0.85rem;
  font-weight: 600; color: var(--brand); text-align: center;
  border-top: 1px solid var(--border); margin-top: 4px;
}

/* Nav CTA + Search */
.nxt-nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 20px; font-size: 0.85rem; font-weight: 600;
  background: var(--brand); color: #fff; border-radius: var(--radius-full);
  transition: var(--transition);
}
.nxt-nav-cta:hover { background: var(--brand-dark); transform: translateY(-1px); }
.nxt-search-btn {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  color: var(--text-secondary); transition: var(--transition);
}
.nxt-search-btn:hover { background: var(--brand-light); color: var(--brand); }

/* Mobile hamburger */
.nxt-hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nxt-hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }
@media (max-width: 1024px) {
  .nxt-hamburger { display: flex; }
  .nxt-nav-links { display: none; }
  .nxt-nav-links.open {
    display: flex; flex-direction: column; position: fixed;
    top: var(--nav-height); left: 0; right: 0; bottom: 0;
    background: var(--surface); padding: 24px; gap: 4px;
    overflow-y: auto; z-index: 999;
  }
  .nxt-dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding-left: 16px; }
  .nxt-nav-item:hover .nxt-dropdown { display: none; }
  .nxt-nav-item.open .nxt-dropdown { display: block; }
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1 { font-size: 2.5rem; font-weight: 700; letter-spacing: -0.5px; }
h2 { font-size: 1.75rem; font-weight: 600; letter-spacing: -0.3px; margin: 2rem 0 1rem; }
h3 { font-family: var(--font-body); font-size: 1.2rem; font-weight: 700; margin: 1.5rem 0 0.75rem; }
p { margin-bottom: 1rem; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px; font-size: 0.9rem; font-weight: 600;
  border-radius: var(--radius-full); transition: var(--transition);
  text-decoration: none; cursor: pointer; border: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); }
.btn-secondary { background: transparent; color: var(--brand); border: 2px solid var(--brand); }
.btn-secondary:hover { background: var(--brand-light); }

/* Affiliate Buttons */
.btn-buy, .btn-amazon {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px; font-size: 0.9rem; font-weight: 700;
  border-radius: var(--radius-full); text-decoration: none;
  background: var(--amazon-orange); color: #000;
  transition: var(--transition);
}
.btn-buy:hover, .btn-amazon:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); filter: brightness(1.05); }

/* ============================================
   ARTICLE LAYOUT
   ============================================ */
/* ============================================
   ARTICLE LAYOUT
   ============================================ */
.nxt-layout {
  display: grid; 
  grid-template-columns: 1fr 340px; 
  gap: 40px;
  max-width: var(--container-wide); 
  margin: 0 auto; 
  padding: 40px 24px;
  align-items: start;
}
@media (max-width: 1100px) { 
  .nxt-layout { grid-template-columns: 1fr; gap: 48px; } 
}

/* Article Content */
.nxt-article { min-width: 0; }
.article-hero-image {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  border-radius: var(--radius-md); margin-bottom: 32px;
}
.article-body-container {
  font-size: 1.1rem; line-height: 1.85; color: var(--text);
}
.article-body-container h2 { font-size: 1.8rem; margin: 3rem 0 1.5rem; padding-bottom: 12px; border-bottom: 2px solid var(--brand-light); }
.article-body-container h3 { font-size: 1.3rem; margin: 2rem 0 1rem; color: var(--text); }
.article-body-container a { color: var(--brand); text-decoration: underline; text-underline-offset: 4px; font-weight: 500; }
.article-body-container a:hover { color: var(--brand-dark); text-decoration-thickness: 2px; }
.article-body-container img { border-radius: var(--radius-md); margin: 1.5rem 0; }
.article-body-container ul, .article-body-container ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.article-body-container li { margin-bottom: 0.5rem; }
.article-body-container blockquote {
  border-left: 4px solid var(--brand); padding: 16px 20px; margin: 1.5rem 0;
  background: var(--brand-light); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic; color: var(--text-secondary);
}

/* Highlight Box */
.highlight-box {
  background: var(--brand-light); border: 1px solid rgba(181,99,106,0.15);
  border-radius: var(--radius-md); padding: 24px; margin: 1.5rem 0;
}
.highlight-box h3 { margin-top: 0; color: var(--brand-dark); }

/* Product Pick */
.product-pick, .product-pick-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 24px; margin: 1.5rem 0;
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.product-pick:hover, .product-pick-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.product-pick h4 { font-family: var(--font-body); font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }

/* Comparison Table */
.comparison-table-wrapper { overflow-x: auto; margin: 1.5rem 0; }
.comparison-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.comparison-table th { background: var(--brand); color: #fff; padding: 12px 16px; text-align: left; font-weight: 600; }
.comparison-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); }
.comparison-table tr:hover td { background: var(--brand-light); }

/* Pros & Cons */
.pros-cons-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px; margin: 1.5rem 0; }
.pros-section h4, .cons-section h4 { font-family: var(--font-body); margin-bottom: 12px; }

/* ============================================
   SIDEBAR
   ============================================ */
.nxt-sidebar { 
  display: flex; flex-direction: column; gap: 32px; 
  position: sticky; top: calc(var(--nav-height) + 40px);
}
.sidebar-widget {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 24px;
}
.sidebar-widget h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 700; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid var(--brand-light); }
.widget-sticky { position: sticky; top: calc(var(--nav-height) + 24px); }

/* Trending Widget */
.trending-list { display: flex; flex-direction: column; gap: 12px; }
.trending-item { display: flex; gap: 12px; align-items: center; padding: 8px; border-radius: var(--radius-sm); transition: var(--transition); }
.trending-item:hover { background: var(--brand-light); }
.trending-thumb { width: 56px; height: 56px; border-radius: var(--radius-sm); flex-shrink: 0; }
.trending-info h4 { font-family: var(--font-body); font-size: 0.85rem; font-weight: 600; line-height: 1.3; }
.trending-meta { font-size: 0.75rem; color: var(--text-muted); }
.trending-number { font-weight: 700; color: var(--brand); margin-right: 4px; }

/* Author Widget */
.author-card { display: flex; gap: 12px; align-items: center; }
.author-card img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }

/* Newsletter Widget */
.newsletter-form { display: flex; flex-direction: column; gap: 8px; }
.newsletter-form input { padding: 10px 14px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 0.9rem; }
.newsletter-form button { padding: 10px; background: var(--brand); color: #fff; border-radius: var(--radius-sm); font-weight: 600; font-size: 0.9rem; }

/* ============================================
   BLOG GRID & CARDS
   ============================================ */
.blog-hero {
  text-align: center; padding: 48px 24px 32px;
  background: linear-gradient(135deg, var(--brand-light), var(--surface));
}
.blog-hero h1 { font-size: 2.2rem; margin-bottom: 12px; }
.blog-hero p { color: var(--text-secondary); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

/* Category Tabs */
.category-tabs {
  display: flex; gap: 6px; padding: 16px 24px;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.category-tabs::-webkit-scrollbar { display: none; }
.tab-btn {
  padding: 8px 18px; font-size: 0.85rem; font-weight: 500;
  border-radius: var(--radius-full); white-space: nowrap;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text-secondary); transition: var(--transition);
}
.tab-btn:hover { border-color: var(--brand); color: var(--brand); }
.tab-btn.active { background: var(--brand); color: #fff; border-color: var(--brand); }

/* Sub-category Tabs */
.sub-category-tabs {
  display: flex; gap: 8px; padding: 0 24px 16px;
  overflow-x: auto; scrollbar-width: none;
}
.sub-category-tabs::-webkit-scrollbar { display: none; }
.sub-chip {
  padding: 6px 14px; font-size: 0.78rem; font-weight: 600;
  border-radius: var(--radius-full); white-space: nowrap;
  background: var(--brand-light); color: var(--brand);
  border: 1px solid rgba(181,99,106,0.1); transition: var(--transition);
}
.sub-chip:hover { background: #fee7eb; transform: translateY(-1px); }
.sub-chip.active { background: var(--brand-dark); color: #fff; border-color: var(--brand-dark); }

/* Blog Filters Bar */
.blog-filters {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 24px; border-bottom: 1px solid var(--border);
}
.article-count { font-size: 0.9rem; color: var(--text-secondary); font-weight: 500; }
.sort-select {
  padding: 6px 12px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-size: 0.85rem; background: var(--surface); color: var(--text);
}

/* Card Grid */
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  padding: 24px;
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .blog-grid { grid-template-columns: 1fr; } }

/* Article Card */
.article-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden;
  transition: var(--transition);
}
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-link { display: block; color: inherit; }
.card-image-wrapper { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.card-image-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.article-card:hover .card-image-wrapper img { transform: scale(1.04); }
.card-category-badge {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 12px; font-size: 0.75rem; font-weight: 600;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(4px);
  border-radius: var(--radius-full); color: var(--text);
}
.card-content { padding: 16px; }
.card-content h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 600; line-height: 1.4; margin-bottom: 8px; }
.card-meta { display: flex; gap: 12px; font-size: 0.8rem; color: var(--text-muted); }

/* Load More */
.load-more-container { text-align: center; padding: 24px; }
.empty-state { text-align: center; padding: 80px 24px; color: var(--text-muted); }

/* ============================================
   FOOTER
   ============================================ */
.nxt-footer { background: var(--text); color: rgba(255,255,255,0.85); padding: 48px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h4 { font-family: var(--font-body); font-size: 0.9rem; font-weight: 700; color: #fff; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col a { display: block; font-size: 0.88rem; color: rgba(255,255,255,0.65); padding: 4px 0; transition: var(--transition); }
.footer-col a:hover { color: #fff; }
.footer-bottom { text-align: center; padding-top: 32px; margin-top: 32px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.footer-logo { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
.footer-logo span { color: var(--brand); }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a { color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-social a:hover { color: #fff; }
.footer-social svg { width: 20px; height: 20px; }

/* Newsletter Bar */
.newsletter-bar { background: var(--brand-dark); padding: 32px 0; margin-bottom: 32px; text-align: center; border-radius: var(--radius-md) var(--radius-md) 0 0; }
.newsletter-bar h3 { color: #fff; font-family: var(--font-body); font-size: 1.1rem; margin-bottom: 8px; }
.newsletter-bar p { color: rgba(255,255,255,0.8); font-size: 0.9rem; margin-bottom: 16px; }
.newsletter-inline { display: flex; gap: 8px; max-width: 420px; margin: 0 auto; padding: 0 24px; }
.newsletter-inline input { flex: 1; padding: 10px 16px; border: none; border-radius: var(--radius-sm); font-size: 0.9rem; }
.newsletter-inline button { padding: 10px 24px; background: #fff; color: var(--brand-dark); border: none; border-radius: var(--radius-sm); font-weight: 700; font-size: 0.9rem; cursor: pointer; }

/* ============================================
   SEARCH OVERLAY
   ============================================ */
.search-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(8px);
  display: none; align-items: flex-start; justify-content: center; padding-top: 15vh;
}
.search-overlay.active { display: flex; }
.search-overlay-inner { width: 90%; max-width: 600px; }
.search-overlay input {
  width: 100%; padding: 18px 24px; font-size: 1.1rem;
  border: none; border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); outline: none;
}
.search-close {
  position: absolute; top: 24px; right: 24px;
  font-size: 2rem; color: #fff; background: none; border: none; cursor: pointer;
}
.search-results { margin-top: 12px; background: var(--surface); border-radius: var(--radius-md); max-height: 50vh; overflow-y: auto; }
.search-result-item { display: block; padding: 14px 20px; border-bottom: 1px solid var(--border); transition: var(--transition); }
.search-result-item:hover { background: var(--brand-light); }
.search-result-title { font-weight: 600; font-size: 0.95rem; }
.search-result-desc { font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; }

/* ============================================
   HOMEPAGE SECTIONS
   ============================================ */
.hero-section { text-align: center; padding: 64px 24px 48px; }
.hero-section h1 { font-size: 3rem; margin-bottom: 16px; }
.hero-section h1 em { color: var(--brand); font-style: italic; }
.hero-section p { font-size: 1.1rem; color: var(--text-secondary); max-width: 600px; margin: 0 auto 32px; }
.hero-cta { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

.section-header { text-align: center; margin-bottom: 40px; }
.section-tag { display: inline-block; padding: 4px 16px; font-size: 0.8rem; font-weight: 600; background: var(--brand-light); color: var(--brand); border-radius: var(--radius-full); margin-bottom: 12px; }

/* Articles Grid (Homepage) */
.articles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }

/* CTA Section */
.cta-section { padding: 64px 24px; background: var(--text); color: #fff; text-align: center; }
.cta-section h2 { color: #fff; margin-bottom: 12px; }
.cta-section p { color: rgba(255,255,255,0.8); margin-bottom: 24px; }

/* ============================================
   READING PROGRESS
   ============================================ */
.reading-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: var(--brand); z-index: 10000; transition: width 0.1s linear;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed; bottom: 80px; right: 24px; z-index: 999;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--brand); color: #fff; box-shadow: var(--shadow-md);
  display: none; align-items: center; justify-content: center;
  transition: var(--transition);
}
.back-to-top.visible { display: flex; }
.back-to-top:hover { transform: translateY(-2px); background: var(--brand-dark); }
.back-to-top svg { width: 20px; height: 20px; }

/* ============================================
   MOBILE BOTTOM NAV
   ============================================ */
.mobile-bottom-nav {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--surface); border-top: 1px solid var(--border);
  z-index: 998; padding: 6px 0 env(safe-area-inset-bottom, 6px);
}
@media (max-width: 768px) { .mobile-bottom-nav { display: flex; justify-content: space-around; } }
.mobile-nav-item {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 6px 12px; font-size: 0.7rem; color: var(--text-muted); transition: var(--transition);
}
.mobile-nav-item:hover, .mobile-nav-item.active { color: var(--brand); }
.mobile-nav-item svg { width: 22px; height: 22px; }

/* ============================================
   SHARE BUTTONS
   ============================================ */
.share-buttons-inline { margin: 2rem 0; padding: 20px 0; border-top: 1px solid var(--border); }
.share-buttons-inline h3 { font-family: var(--font-body); font-size: 0.95rem; margin-bottom: 12px; }
.share-buttons-row { display: flex; gap: 8px; flex-wrap: wrap; }
.share-btn-inline {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: var(--radius-full); font-size: 0.82rem; font-weight: 500;
  transition: var(--transition);
}
.share-btn-inline svg { width: 16px; height: 16px; }
.share-fb { background: #1877F2; color: #fff; }
.share-tw { background: #1DA1F2; color: #fff; }
.share-pn { background: #E60023; color: #fff; }
.share-em { background: #555; color: #fff; }
.share-btn-inline:hover { opacity: 0.85; transform: translateY(-1px); }

/* ============================================
   ADS
   ============================================ */
.ad-container { margin: 1.5rem 0; text-align: center; }
.ad-label { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }

/* ============================================
   POLL WIDGET
   ============================================ */
.poll-question { font-weight: 600; margin-bottom: 12px; }
.poll-option {
  display: block; width: 100%; padding: 10px 14px; margin-bottom: 6px;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-size: 0.88rem; text-align: left; transition: var(--transition);
}
.poll-option:hover { border-color: var(--brand); background: var(--brand-light); }
.poll-results { display: none; }
.poll-bar { height: 8px; background: var(--border); border-radius: 4px; overflow: hidden; margin-bottom: 8px; }
.poll-fill { height: 100%; background: var(--brand); border-radius: 4px; }

/* ============================================
   UTILITY
   ============================================ */
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ============================================
   AUTHOR BIO (Fix for Oversized Image)
   ============================================ */
.author-bio {
  display: flex; align-items: center; gap: 16px;
  padding: 24px; background: var(--brand-light);
  border-radius: var(--radius-md); margin: 3rem 0;
}
.author-bio-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  flex-shrink: 0; object-fit: cover;
  background: var(--brand-muted);
}
.author-bio h4 { margin: 0 0 4px; font-family: var(--font-display); font-size: 1.1rem; }
.author-bio p { margin: 0; font-size: 0.88rem; line-height: 1.5; color: var(--text-secondary); }

/* Print */
@media print {
  .nxt-nav, .nxt-footer, .nxt-sidebar, .mobile-bottom-nav, .back-to-top, .ad-container, .share-buttons-inline { display: none !important; }
  .site-wrapper { box-shadow: none; border: none; margin: 0; max-width: none; }
  .nxt-layout { grid-template-columns: 1fr; }
}
