/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: #1a1a2e; background: #fff; line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== CSS VARIABLES ===== */
:root {
  --navy: #0f1b40;
  --navy-light: #1e3a6e;
  --accent: #e84545;
  --accent-hover: #c73232;
  --accent-light: #fef2f2;
  --gold: #f59e0b;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 10px 32px rgba(0,0,0,.14);
  --transition: .22s ease;
  --max-w: 1200px;
}

/* ===== UTILITY ===== */
.container { width: 90%; max-width: var(--max-w); margin: 0 auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: .45em;
  padding: .65em 1.4em; border: none; border-radius: 6px;
  font-size: .93rem; font-weight: 600; cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-decoration: none; line-height: 1;
}
.btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 2px 8px rgba(232,69,69,.35); }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(232,69,69,.4); color: #fff; }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy-light); }
.btn-outline:hover { background: var(--navy); color: #fff; transform: translateY(-1px); }
.btn-ghost { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.3); }
.btn-ghost:hover { background: rgba(255,255,255,.22); transform: translateY(-1px); }
.btn-sm { padding: .42em .95em; font-size: .84rem; }
.btn-lg { padding: .85em 2em; font-size: 1.05rem; }

/* ===== TOP BAR ===== */
.topbar {
  background: var(--navy); color: #fff;
  font-size: .8rem; text-align: center; padding: .5rem 1rem; letter-spacing: .02em;
}
.topbar a { color: var(--gold); font-weight: 600; }
.topbar a:hover { text-decoration: underline; }

/* ===== SITE HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: #fff; border-bottom: 1px solid var(--gray-200); box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex; align-items: center; gap: 1.5rem; padding: .75rem 0;
}
.site-logo { font-size: 1.45rem; font-weight: 800; color: var(--navy); letter-spacing: -.03em; flex-shrink: 0; }
.site-logo span { color: var(--accent); }
.site-logo:hover { text-decoration: none; }

/* Primary Nav */
.primary-nav { display: flex; align-items: center; gap: 0; flex-wrap: nowrap; flex: 1; }
.primary-nav a, .primary-nav .nav-item {
  padding: .4em .5em; border-radius: 6px;
  font-size: .8rem; font-weight: 500; color: var(--gray-800); white-space: nowrap;
  transition: background var(--transition), color var(--transition); cursor: pointer;
}
.primary-nav a:hover, .primary-nav .current-menu-item > a { background: var(--accent-light); color: var(--accent); }
.nav-cta-btn { background: var(--accent) !important; color: #fff !important; border-radius: 6px !important; }
.nav-cta-btn:hover { background: var(--accent-hover) !important; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: .3rem;
}
.hamburger span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); display: block; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none; flex-direction: column;
  border-top: 1px solid var(--gray-200); padding: .75rem 0;
  background: #fff;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: .65rem 1rem; font-size: .95rem; font-weight: 500; color: var(--gray-800); border-radius: 6px; }
.mobile-nav a:hover { background: var(--gray-100); }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #2d5a9e 100%);
  color: #fff; padding: 5rem 0 4rem; text-align: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.12); color: var(--gold);
  font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .35em .9em; border-radius: 100px; margin-bottom: 1.2rem;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800;
  line-height: 1.18; max-width: 760px; margin: 0 auto 1.2rem;
}
.hero p { font-size: 1.1rem; opacity: .82; max-width: 560px; margin: 0 auto 2rem; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-stats {
  display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap;
  margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,.15);
}
.hero-stat-num { font-size: 1.75rem; font-weight: 800; color: var(--gold); }
.hero-stat-label { font-size: .8rem; opacity: .7; letter-spacing: .04em; text-transform: uppercase; margin-top: .2rem; }

/* ===== SECTION TITLE ===== */
.section-title { text-align: center; margin-bottom: 2.5rem; }
.section-title h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; color: var(--navy); }
.section-title p { color: var(--gray-600); margin-top: .5rem; font-size: .97rem; }
.eyebrow { display: inline-block; color: var(--accent); font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .5rem; display: block; }

/* ===== TRUST BADGES ===== */
.trust-section { padding: 3rem 0; background: var(--gray-50); }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1.5rem; text-align: center; }
.trust-item { padding: 1.5rem; }
.trust-icon { font-size: 2rem; margin-bottom: .75rem; }
.trust-item h4 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: .3rem; }
.trust-item p { font-size: .83rem; color: var(--gray-600); }

/* ===== FEATURED CARD ===== */
.featured-section { padding: 3rem 0 0; }
.featured-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--gray-200); box-shadow: var(--shadow-md); background: #fff;
  margin-bottom: 2rem;
}
.featured-img { position: relative; min-height: 320px; }
.featured-img img { width: 100%; height: 100%; object-fit: cover; }
.featured-body { padding: 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.featured-body h2 { font-size: 1.6rem; font-weight: 800; color: var(--navy); line-height: 1.3; margin: .6rem 0 .8rem; }
.featured-body p { color: var(--gray-600); font-size: .95rem; margin-bottom: 1.5rem; }
.featured-actions { display: flex; gap: .75rem; flex-wrap: wrap; }

/* ===== CATEGORY FILTER ===== */
.filter-bar { text-align: center; margin-bottom: 2rem; }
.filter-btn {
  display: inline-block; margin: .25rem;
  padding: .45em 1.1em; border: 2px solid var(--gray-200); border-radius: 100px;
  background: #fff; color: var(--gray-600);
  font-size: .85rem; font-weight: 600; cursor: pointer; transition: all var(--transition);
}
.filter-btn:hover { border-color: var(--accent); color: var(--accent); }
.filter-btn.active { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ===== POST GRID ===== */
.posts-section { padding: 3rem 0 4rem; }
.posts-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem;
}
.post-card {
  background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.post-card-img { position: relative; overflow: hidden; aspect-ratio: 16/9; background: var(--gray-100); }
.post-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.post-card:hover .post-card-img img { transform: scale(1.04); }

/* Category Badges */
.cat-badge {
  position: absolute; top: .75rem; left: .75rem;
  padding: .25em .7em; border-radius: 100px;
  font-size: .73rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
}
.badge-ai    { background: #dbeafe; color: #1d4ed8; }
.badge-home  { background: #d1fae5; color: #065f46; }
.badge-art   { background: #ede9fe; color: #5b21b6; }
.badge-food  { background: #fef3c7; color: #92400e; }
.badge-health { background: #fce7f3; color: #9d174d; }
.badge-tools { background: #ffedd5; color: #c2410c; }

.post-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.post-card-meta { display: flex; align-items: center; gap: .75rem; font-size: .78rem; color: var(--gray-400); margin-bottom: .6rem; }
.post-card-meta .rating { color: var(--gold); font-weight: 700; }
.post-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--gray-800); line-height: 1.35; margin-bottom: .55rem; }
.post-card p { font-size: .87rem; color: var(--gray-600); line-height: 1.55; flex: 1; }
.post-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 1.1rem; padding-top: 1rem; border-top: 1px solid var(--gray-100);
}
.read-time { font-size: .78rem; color: var(--gray-400); }

/* Invisible card for filter placeholders */
.post-card.hidden { display: none; }

/* ===== SINGLE REVIEW ===== */
.review-page { max-width: 800px; margin: 0 auto; padding: 2rem 0 4rem; }
.review-hero-img { border-radius: var(--radius); overflow: hidden; margin-bottom: 2rem; aspect-ratio: 16/7; }
.review-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.review-header-meta { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.review-rating-pill {
  display: flex; align-items: center; gap: .4rem;
  background: var(--gray-50); border: 1px solid var(--gray-200);
  padding: .4em .9em; border-radius: 100px;
}
.stars { color: var(--gold); letter-spacing: 2px; }
.rating-val { font-weight: 700; color: var(--navy); font-size: .9rem; }
.review-verdict {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: #fff; border-radius: var(--radius); padding: 1.75rem; margin: 2rem 0;
}
.review-verdict h3 { font-size: 1rem; font-weight: 700; margin-bottom: .75rem; opacity: .8; text-transform: uppercase; letter-spacing: .06em; }
.review-verdict p { font-size: 1.05rem; line-height: 1.6; }
.verdict-score { display: flex; align-items: center; gap: 1rem; margin-top: 1rem; }
.score-circle {
  width: 64px; height: 64px; border-radius: 50%;
  border: 3px solid var(--gold); display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 800; color: var(--gold); flex-shrink: 0;
}
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin: 2rem 0; }
.pros { background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: var(--radius-sm); padding: 1.25rem; }
.cons { background: #fff7f7; border: 1px solid #fecaca; border-radius: var(--radius-sm); padding: 1.25rem; }
.pros h4 { color: #15803d; font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .75rem; }
.cons h4 { color: #dc2626; font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .75rem; }
.pros li, .cons li { font-size: .9rem; line-height: 1.5; padding: .3rem 0 .3rem 1.4rem; position: relative; }
.pros li::before { content: '✓'; position: absolute; left: 0; color: #16a34a; font-weight: 700; }
.cons li::before { content: '✗'; position: absolute; left: 0; color: #dc2626; font-weight: 700; }

/* Rating Bars */
.rating-bars { margin: 1.5rem 0; }
.rating-bar-row { display: flex; align-items: center; gap: .75rem; margin-bottom: .65rem; font-size: .87rem; }
.rating-bar-label { width: 120px; color: var(--gray-600); flex-shrink: 0; }
.rating-bar-track { flex: 1; height: 7px; background: var(--gray-200); border-radius: 100px; overflow: hidden; }
.rating-bar-fill { height: 100%; border-radius: 100px; background: var(--gold); }
.rating-bar-score { width: 30px; text-align: right; font-weight: 700; color: var(--navy); flex-shrink: 0; }

/* Affiliate CTA Box */
.review-cta-box {
  background: var(--accent-light); border: 2px solid var(--accent);
  border-radius: var(--radius); padding: 1.75rem; text-align: center; margin: 2rem 0;
}
.review-cta-box h3 { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.review-cta-box p { color: var(--gray-600); font-size: .9rem; margin-bottom: 1.1rem; }
.affiliate-notice { font-size: .75rem; color: var(--gray-400); margin-top: .75rem; }

/* Review Body Content */
.review-body { font-size: .97rem; color: var(--gray-700); line-height: 1.8; }
.review-body h2, .review-body h3 { color: var(--navy); font-weight: 700; margin: 1.75rem 0 .75rem; }
.review-body h2 { font-size: 1.25rem; }
.review-body h3 { font-size: 1.05rem; }
.review-body p { margin-bottom: 1rem; }
.review-body ul, .review-body ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.review-body li { margin-bottom: .4rem; }
.review-body strong { color: var(--gray-800); }

/* ===== COMPARISON TABLE ===== */
.compare-section { padding: 4rem 0; }
.compare-block { margin-bottom: 3.5rem; }
.compare-block h3 { font-size: 1.25rem; font-weight: 800; color: var(--navy); margin-bottom: 1.25rem; }
.compare-table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--gray-200); box-shadow: var(--shadow-sm); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 560px; }
.compare-table th { background: var(--navy); color: #fff; padding: 1rem 1.25rem; text-align: left; font-size: .88rem; font-weight: 700; }
.compare-table th:first-child { width: 35%; }
.compare-table td { padding: .9rem 1.25rem; font-size: .9rem; border-bottom: 1px solid var(--gray-100); vertical-align: middle; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: var(--gray-50); }
.feature-name { font-weight: 600; color: var(--gray-800); }
.check { color: #16a34a; font-size: 1.1rem; }
.cross { color: #dc2626; font-size: 1.1rem; }
.winner-col { background: #fffbeb; }
.best-badge { background: var(--gold); color: var(--navy); font-size: .72rem; font-weight: 700; text-transform: uppercase; padding: .2em .6em; border-radius: 100px; letter-spacing: .04em; }

/* ===== FAQ ===== */
.faq-section { padding: 4rem 0; background: var(--gray-50); }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-sm); margin-bottom: .75rem; overflow: hidden; }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.15rem 1.5rem; text-align: left;
  font-size: .97rem; font-weight: 600; color: var(--navy);
  transition: background var(--transition);
}
.faq-question:hover { background: var(--gray-50); }
.faq-icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--gray-100); display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0; transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--accent); color: #fff; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .25s ease; padding: 0 1.5rem; font-size: .9rem; color: var(--gray-600); line-height: 1.65; }
.faq-answer.open { max-height: 400px; padding: 0 1.5rem 1.25rem; }

/* ===== NEWSLETTER ===== */
.newsletter-section { padding: 4rem 0; background: linear-gradient(135deg, var(--navy), var(--navy-light)); color: #fff; text-align: center; }
.newsletter-section h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: .5rem; }
.newsletter-section p { opacity: .8; max-width: 480px; margin: 0 auto 1.75rem; }
.newsletter-form { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; max-width: 480px; margin: 0 auto; }
.newsletter-form input { flex: 1; min-width: 220px; padding: .75em 1.2em; border-radius: 6px; border: 2px solid rgba(255,255,255,.25); background: rgba(255,255,255,.12); color: #fff; font-size: .95rem; }
.newsletter-form input::placeholder { color: rgba(255,255,255,.55); }
.newsletter-form input:focus { outline: none; border-color: var(--gold); }
.newsletter-notice { font-size: .78rem; opacity: .55; margin-top: .85rem; }

/* ===== BREADCRUMB ===== */
.breadcrumb { display: flex; align-items: center; gap: .4rem; font-size: .83rem; color: var(--gray-400); padding: 1rem 0 .5rem; flex-wrap: wrap; }
.breadcrumb a { color: var(--accent); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: var(--gray-300); }

/* ===== ABOUT ===== */
.about-section { padding: 4.5rem 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.about-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.about-body h2 { font-size: 1.75rem; font-weight: 800; color: var(--navy); margin: .5rem 0 1rem; }
.about-body p { color: var(--gray-600); font-size: .95rem; line-height: 1.7; margin-bottom: 1rem; }

/* ===== FOOTER ===== */
.site-footer { background: var(--navy); color: #fff; padding: 3.5rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 2.5rem; margin-bottom: 3rem; }
.footer-brand .site-logo { margin-bottom: 1rem; display: block; color: #fff; }
.footer-brand .site-logo span { color: var(--accent); }
.footer-brand p { font-size: .87rem; opacity: .65; line-height: 1.65; max-width: 280px; }
.social-links { display: flex; gap: .6rem; margin-top: 1.25rem; }
.social-link { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-size: .85rem; transition: background var(--transition); }
.social-link:hover { background: var(--accent); }
.footer-col h4 { font-size: .88rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; opacity: .55; margin-bottom: 1rem; }
.footer-col li { margin-bottom: .5rem; }
.footer-col a { font-size: .88rem; opacity: .75; transition: opacity var(--transition), color var(--transition); }
.footer-col a:hover { opacity: 1; color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 1.25rem 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: .8rem; opacity: .55;
}
.footer-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }

/* ===== ARCHIVE / CATEGORY PAGE ===== */
.archive-header { padding: 2.5rem 0 0; }
.archive-header h1 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--navy); }
.archive-header p { color: var(--gray-600); margin-top: .5rem; }
.archive-content { padding: 2rem 0 4rem; }

/* ===== PAGINATION ===== */
.pagination { display: flex; justify-content: center; align-items: center; gap: .5rem; margin-top: 2.5rem; flex-wrap: wrap; }
.pagination a, .pagination span {
  min-width: 38px; height: 38px; padding: 0 10px; border-radius: 6px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 2px solid var(--gray-200); font-size: .88rem; font-weight: 600; color: var(--navy);
  white-space: nowrap; text-decoration: none;
  transition: all var(--transition);
}
.pagination a:hover { border-color: var(--accent); color: var(--accent); }
.pagination .current { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ===== GENERIC PAGE ===== */
.page-content { max-width: 800px; margin: 0 auto; padding: 3rem 0 5rem; }
.page-content h1 { font-size: 2rem; font-weight: 800; color: var(--navy); margin-bottom: 1.5rem; }
.page-content p { color: var(--gray-600); line-height: 1.8; margin-bottom: 1rem; }

/* ===== LOADING SPINNER ===== */
.loading { text-align: center; padding: 3rem; color: var(--gray-400); }
.spinner { display: inline-block; width: 32px; height: 32px; border: 3px solid var(--gray-200); border-top-color: var(--accent); border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== NOTICE / ALERTS ===== */
.notice { padding: 1rem 1.5rem; border-radius: var(--radius-sm); margin-bottom: 1rem; font-size: .92rem; }
.notice-success { background: #f0fdf4; border: 1px solid #bbf7d0; color: #15803d; }
.notice-error { background: #fff7f7; border: 1px solid #fecaca; color: #dc2626; }

/* ===== WP ALIGNMENT ===== */
.alignleft { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.aligncenter { margin: 0 auto 1rem; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: .8rem; color: var(--gray-400); text-align: center; margin-top: .3rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .featured-card { grid-template-columns: 1fr; }
  .featured-img { min-height: 240px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .primary-nav { display: none; }
  .hamburger { display: flex; }
  .posts-grid { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
}
@media (max-width: 420px) {
  .hero h1 { font-size: 1.7rem; }
  .featured-body { padding: 1.5rem; }
}
