/* ============================================================
   BLOG.CSS  —  Blog listing, post, and admin shared styles
   The Igoe Score  |  igoscore.com
============================================================ */

/* ── Dynamic score corner pill (replaces static badge images on cards) ── */
.card-score-pill {
  position: absolute;
  bottom: 10px; left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(10,10,10,0.82);
  border: 2px solid #22c55e;
  color: #fff;
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 900;
  padding: 4px 11px 4px 9px;
  border-radius: 50px;
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
  white-space: nowrap;
  z-index: 2;
}
.card-score-pill .pill-num {
  font-size: 1rem;
  font-weight: 900;
  color: #22c55e;
}
.card-score-pill.caution { border-color: #eab308; }
.card-score-pill.caution .pill-num { color: #eab308; }
.card-score-pill.avoid   { border-color: #ef4444; }
.card-score-pill.avoid   .pill-num { color: #ef4444; }

/* ── Loading state ── */
.blog-loading-state {
  text-align: center;
  padding: 80px 20px;
  color: rgba(255,255,255,.4);
}
.blog-loading-state i {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 14px;
  color: rgba(201,168,76,.5);
}
.blog-loading-state p { font-size: 1rem; }

/* ── Blog Hero ── */
.blog-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1400 60%, #0a0a0a 100%);
  padding: 120px 0 60px;
  overflow: hidden;
}
.blog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><circle cx="30" cy="30" r="1" fill="%23C9A84C" opacity=".18"/></svg>') repeat;
  pointer-events: none;
}
.blog-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,.12) 0%, transparent 70%);
}
.blog-hero-content {
  position: relative;
  text-align: center;
}
.blog-hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: #fff;
  margin: 0.4rem 0 1rem;
  line-height: 1.15;
}
.blog-hero-sub {
  color: rgba(255,255,255,.72);
  font-size: 1.1rem;
  max-width: 620px;
  margin: 0 auto 1.6rem;
  line-height: 1.65;
}
.blog-badge-row {
  justify-content: center;
  gap: 18px;
  margin-top: 0;
}

/* ── Filter bar ── */
.blog-filter-bar {
  background: #111;
  border-bottom: 1px solid rgba(201,168,76,.2);
  padding: 14px 0;
  position: sticky;
  top: 70px;
  z-index: 90;
}
.blog-filter-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.filter-btn {
  background: transparent;
  border: 1px solid rgba(201,168,76,.35);
  color: rgba(255,255,255,.7);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: .85rem;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all .25s ease;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--gold, #C9A84C);
  border-color: var(--gold, #C9A84C);
  color: #000;
  font-weight: 600;
}
.blog-search-wrap {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 50px;
  padding: 6px 16px;
}
.blog-search-wrap i { color: rgba(201,168,76,.7); font-size: .9rem; }
.blog-search-wrap input {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: .9rem;
  width: 200px;
}
.blog-search-wrap input::placeholder { color: rgba(255,255,255,.35); }

/* ── Blog main ── */
.blog-main { padding-top: 60px !important; padding-bottom: 80px !important; }

/* ── Featured post ── */
.blog-featured {
  margin-bottom: 56px;
}
.featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #111;
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.featured-card:hover {
  border-color: rgba(201,168,76,.6);
  box-shadow: 0 12px 50px rgba(201,168,76,.12);
}
.featured-card-img {
  position: relative;
  overflow: hidden;
  min-height: 380px;
}
.featured-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .6s ease;
}
.featured-card:hover .featured-card-img img { transform: scale(1.04); }
.featured-card-badge-wrap {
  position: absolute;
  bottom: 16px;
  left: 16px;
}
.featured-card-badge-wrap img {
  width: 72px;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.6));
}
.featured-card-body {
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-label {
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold, #C9A84C);
  font-weight: 700;
  margin-bottom: 10px;
}
.featured-label i { margin-right: 5px; }
.featured-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 14px;
}
.featured-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color .25s ease;
}
.featured-card-title a:hover { color: var(--gold, #C9A84C); }
.featured-card-excerpt {
  color: rgba(255,255,255,.65);
  font-size: .96rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.featured-score-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: 22px;
}
.score-pill-approved { background: rgba(34,197,94,.15); color: #22c55e; border: 1px solid rgba(34,197,94,.3); }
.score-pill-caution  { background: rgba(234,179,8,.15);  color: #eab308; border: 1px solid rgba(234,179,8,.3); }
.score-pill-avoid    { background: rgba(239,68,68,.15);  color: #ef4444; border: 1px solid rgba(239,68,68,.3); }
.featured-meta {
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  margin-bottom: 24px;
}
.featured-meta span { margin-right: 16px; }
.featured-meta i { margin-right: 4px; color: rgba(201,168,76,.6); }
.featured-read-btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #C9A84C, #E2C97E);
  color: #000;
  font-weight: 700;
  font-size: .9rem;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
}
.featured-read-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,.35); }

/* ── Posts grid ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
@media (max-width: 1024px) { .blog-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px)  { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  background: #111;
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.blog-card:hover {
  border-color: rgba(201,168,76,.55);
  box-shadow: 0 8px 36px rgba(201,168,76,.1);
  transform: translateY(-4px);
}
.blog-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-img-badge {
  position: absolute;
  bottom: 10px; left: 10px;
  width: 48px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.5));
}
.blog-card-body {
  padding: 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-cat {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold, #C9A84C);
  font-weight: 700;
  margin-bottom: 8px;
}
.blog-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.45;
  margin-bottom: 10px;
  flex: 1;
}
.blog-card-title a { color: inherit; text-decoration: none; }
.blog-card-title a:hover { color: var(--gold, #C9A84C); }
.blog-card-excerpt {
  color: rgba(255,255,255,.55);
  font-size: .86rem;
  line-height: 1.65;
  margin-bottom: 14px;
}
.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 12px;
  margin-top: auto;
}
.blog-card-meta {
  font-size: .78rem;
  color: rgba(255,255,255,.35);
}
.blog-card-meta i { margin-right: 4px; color: rgba(201,168,76,.5); }
.blog-card-score {
  font-size: .8rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
}

/* ── Pagination ── */
.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}
.page-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,.3);
  background: transparent;
  color: rgba(255,255,255,.6);
  font-size: .88rem;
  cursor: pointer;
  transition: all .2s;
}
.page-btn.active,
.page-btn:hover {
  background: var(--gold, #C9A84C);
  border-color: var(--gold, #C9A84C);
  color: #000;
  font-weight: 700;
}

/* ── Empty state ── */
.blog-empty {
  text-align: center;
  padding: 80px 20px;
  color: rgba(255,255,255,.3);
}
.blog-empty i { font-size: 3rem; margin-bottom: 16px; color: rgba(201,168,76,.3); }
.blog-empty p { font-size: 1.05rem; }
.hidden { display: none !important; }

/* ============================================================
   POST PAGE
============================================================ */
.post-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1400 60%, #0a0a0a 100%);
  padding: 120px 0 56px;
  overflow: hidden;
}
.post-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.3) 0%, rgba(0,0,0,.75) 100%);
}
.post-hero.has-img .post-hero-overlay {
  background: linear-gradient(to bottom, rgba(0,0,0,.45) 0%, rgba(0,0,0,.85) 100%);
}
.post-hero-content {
  position: relative;
  max-width: 860px;
}
.post-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 16px;
}
.post-breadcrumb a { color: rgba(201,168,76,.75); text-decoration: none; }
.post-breadcrumb a:hover { color: var(--gold, #C9A84C); }
.post-breadcrumb span { color: rgba(255,255,255,.3); }
.post-category-badge {
  display: inline-block;
  background: rgba(201,168,76,.18);
  border: 1px solid rgba(201,168,76,.45);
  color: var(--gold, #C9A84C);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.post-hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.7rem, 4vw, 2.7rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 16px;
}
.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: .84rem;
  color: rgba(255,255,255,.45);
}
.post-meta span i { margin-right: 5px; color: rgba(201,168,76,.6); }

/* Post layout */
.post-layout { padding-top: 0 !important; }
.post-container {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  padding-top: 56px;
  padding-bottom: 80px;
  align-items: start;
}
@media (max-width: 960px) {
  .post-container { grid-template-columns: 1fr; }
  .post-sidebar { order: -1; }
}

/* Score strip */
.post-score-strip {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(201,168,76,.07);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 12px;
  padding: 20px 28px;
  margin-bottom: 36px;
}
.post-score-strip img {
  width: 80px;
  flex-shrink: 0;
}
/* CSS-based score badge replacing PNG image in score strip */
.post-strip-score-badge-css {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
  border: 3px solid #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: #22c55e;
  box-shadow: 0 0 18px rgba(34,197,94,.3);
}
.post-strip-score-badge-css.caution {
  border-color: #eab308;
  color: #eab308;
  box-shadow: 0 0 18px rgba(234,179,8,.3);
}
.post-strip-score-badge-css.avoid {
  border-color: #ef4444;
  color: #ef4444;
  box-shadow: 0 0 18px rgba(239,68,68,.3);
}
.post-strip-info { flex: 1; }
.post-strip-vendor {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.post-strip-score-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  color: var(--gold, #C9A84C);
}
.post-strip-tier {
  font-size: .82rem;
  font-weight: 600;
  color: #22c55e;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.post-strip-tier.caution { color: #eab308; }
.post-strip-tier.avoid   { color: #ef4444; }

/* Featured image */
.post-featured-img-wrap {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 36px;
  border: 1px solid rgba(201,168,76,.2);
}
.post-featured-img-wrap img {
  width: 100%;
  display: block;
  object-fit: cover;
  max-height: 480px;
}

/* Article body */
.post-body {
  color: rgba(255,255,255,.82);
  font-size: 1rem;
  line-height: 1.8;
}
.post-body h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  margin: 2.4rem 0 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid rgba(201,168,76,.2);
}
.post-body h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold, #C9A84C);
  margin: 1.8rem 0 .7rem;
}
.post-body p { margin-bottom: 1.3rem; }
.post-body strong { color: #fff; font-weight: 600; }
.post-body a { color: var(--gold, #C9A84C); text-decoration: underline; text-underline-offset: 3px; }
.post-body a:hover { color: #E2C97E; }
.post-body ul, .post-body ol {
  padding-left: 1.4rem;
  margin-bottom: 1.3rem;
}
.post-body li { margin-bottom: .5rem; }
.post-body blockquote {
  border-left: 4px solid var(--gold, #C9A84C);
  background: rgba(201,168,76,.06);
  padding: 18px 24px;
  border-radius: 0 8px 8px 0;
  margin: 1.8rem 0;
  font-style: italic;
  color: rgba(255,255,255,.75);
}
.post-loading {
  text-align: center;
  padding: 60px;
  color: rgba(255,255,255,.3);
}
.post-loading i { font-size: 2rem; display: block; margin-bottom: 12px; color: rgba(201,168,76,.4); }

/* Igoe Score table in article */
.igoe-score-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,.25);
  font-size: .92rem;
}
.igoe-score-table thead tr {
  background: linear-gradient(135deg, #1a1400, #222);
}
.igoe-score-table thead th {
  padding: 14px 18px;
  text-align: left;
  color: var(--gold, #C9A84C);
  font-weight: 700;
  letter-spacing: .05em;
  font-size: .82rem;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(201,168,76,.25);
}
.igoe-score-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .2s;
}
.igoe-score-table tbody tr:last-child { border-bottom: none; }
.igoe-score-table tbody tr:hover { background: rgba(201,168,76,.06); }
.igoe-score-table td { padding: 13px 18px; color: rgba(255,255,255,.78); vertical-align: top; }
.igoe-score-table .score-cell {
  font-weight: 700;
  font-size: 1.05rem;
  color: #22c55e;
  white-space: nowrap;
}
.igoe-score-table .total-row {
  background: rgba(201,168,76,.1);
}
.igoe-score-table .total-row td {
  font-weight: 700;
  color: #fff;
  border-top: 2px solid rgba(201,168,76,.4);
}
.igoe-score-table .total-score {
  color: var(--gold, #C9A84C);
  font-size: 1.3rem;
}

/* Pros/cons grid */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 1.8rem 0;
}
@media (max-width: 600px) { .pros-cons-grid { grid-template-columns: 1fr; } }
.pros-box, .cons-box {
  border-radius: 10px;
  padding: 20px 22px;
}
.pros-box {
  background: rgba(34,197,94,.07);
  border: 1px solid rgba(34,197,94,.25);
}
.cons-box {
  background: rgba(239,68,68,.07);
  border: 1px solid rgba(239,68,68,.2);
}
.pros-box h4 { color: #22c55e; margin-bottom: 10px; font-size: .95rem; }
.cons-box h4 { color: #ef4444; margin-bottom: 10px; font-size: .95rem; }
.pros-box li::marker { color: #22c55e; }
.cons-box li::marker { color: #ef4444; }

/* Tags */
.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 32px 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.tag-chip {
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.25);
  color: rgba(201,168,76,.85);
  padding: 4px 13px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 500;
  transition: background .2s;
}
.tag-chip:hover { background: rgba(201,168,76,.22); }

/* Share */
.post-share {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
  font-size: .88rem;
  color: rgba(255,255,255,.5);
}
.share-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.6);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all .25s;
  font-size: .95rem;
  text-decoration: none;
}
.share-btn:hover { background: var(--gold, #C9A84C); border-color: var(--gold); color: #000; }

/* Post CTA box */
.post-cta-box {
  display: flex;
  align-items: center;
  gap: 28px;
  background: linear-gradient(135deg, rgba(201,168,76,.1) 0%, rgba(201,168,76,.05) 100%);
  border: 1px solid rgba(201,168,76,.35);
  border-radius: 16px;
  padding: 32px 36px;
  margin-bottom: 40px;
}
.post-cta-box img { width: 90px; flex-shrink: 0; }
/* CSS-based CTA score badge */
.post-cta-score-badge {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
  border: 3px solid #22c55e;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 24px rgba(34,197,94,.25), inset 0 0 16px rgba(34,197,94,.05);
}
.post-cta-score-badge .post-cta-score-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.85rem;
  font-weight: 900;
  line-height: 1;
  color: #22c55e;
}
.post-cta-score-badge .post-cta-score-label {
  font-size: .55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(255,255,255,.5);
  text-align: center;
  line-height: 1.3;
  padding: 0 4px;
}
.post-cta-score-badge.caution {
  border-color: #eab308;
  box-shadow: 0 0 24px rgba(234,179,8,.25);
}
.post-cta-score-badge.caution .post-cta-score-num { color: #eab308; }
.post-cta-score-badge.avoid {
  border-color: #ef4444;
  box-shadow: 0 0 24px rgba(239,68,68,.25);
}
.post-cta-score-badge.avoid .post-cta-score-num { color: #ef4444; }
.post-cta-box h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 8px;
}
.post-cta-box p { color: rgba(255,255,255,.6); font-size: .9rem; margin-bottom: 16px; }
@media (max-width: 600px) {
  .post-cta-box { flex-direction: column; text-align: center; }
}

/* ── Sidebar ── */
.post-sidebar { display: flex; flex-direction: column; gap: 28px; }

.sidebar-score-card {
  background: #111;
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
}
.sidebar-score-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--gold, #C9A84C);
}
.sidebar-score-badge img {
  width: 100px;
  margin: 12px auto;
  display: block;
}
/* CSS-based score badge replacing PNG in sidebar */
.sidebar-score-badge-css {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, #111 0%, #1c1c1c 100%);
  border: 3px solid #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: #22c55e;
  margin: 10px auto;
  box-shadow: 0 0 20px rgba(34,197,94,.25);
}
.sidebar-score-badge-css.caution {
  border-color: #eab308;
  color: #eab308;
  box-shadow: 0 0 20px rgba(234,179,8,.25);
}
.sidebar-score-badge-css.avoid {
  border-color: #ef4444;
  color: #ef4444;
  box-shadow: 0 0 20px rgba(239,68,68,.25);
}
.sidebar-score-tier {
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #22c55e;
  margin-bottom: 16px;
}
.sidebar-score-tier.caution { color: #eab308; }
.sidebar-score-tier.avoid   { color: #ef4444; }
.sidebar-score-bars { text-align: left; }
.sidebar-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 9px;
  font-size: .82rem;
}
.sidebar-bar-label { flex: 1; color: rgba(255,255,255,.6); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 140px; }
.sidebar-bar-track {
  flex: 2;
  height: 6px;
  background: rgba(255,255,255,.08);
  border-radius: 3px;
  overflow: hidden;
}
.sidebar-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #C9A84C, #E2C97E);
  border-radius: 3px;
  width: 0;
  transition: width 1.2s ease;
}
.sidebar-bar-val { width: 26px; text-align: right; color: var(--gold); font-weight: 600; font-size: .82rem; }

.sidebar-widget {
  background: #111;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 24px;
}
.sidebar-widget h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,168,76,.2);
}
.sidebar-jeff img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  height: 180px;
  margin-bottom: 14px;
  border: 1px solid rgba(201,168,76,.2);
}
.sidebar-jeff p { color: rgba(255,255,255,.6); font-size: .86rem; line-height: 1.6; margin-bottom: 14px; }
.sidebar-link {
  color: var(--gold, #C9A84C);
  font-size: .86rem;
  font-weight: 600;
  text-decoration: none;
  transition: gap .2s;
}
.sidebar-link:hover { color: #E2C97E; }
.sidebar-link i { margin-left: 5px; font-size: .8rem; }

.related-post-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  text-decoration: none;
}
.related-post-item:last-child { border-bottom: none; }
.related-post-img {
  width: 60px; height: 50px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(201,168,76,.15);
}
.related-post-title {
  font-size: .84rem;
  color: rgba(255,255,255,.75);
  line-height: 1.45;
  font-weight: 500;
}
.related-post-item:hover .related-post-title { color: var(--gold, #C9A84C); }
.related-post-cat {
  font-size: .72rem;
  color: rgba(201,168,76,.6);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 2px;
}

/* nav active */
.nav-active { color: var(--gold, #C9A84C) !important; }
