/* ============================================================
   SwingMetrics — Main Stylesheet
   ============================================================ */

:root {
  --green:        #4aba4a;
  --green-dark:   #2d7a2d;
  --green-light:  #e6f7e6;
  --green-mid:    #9FE1CB;
  --slate:        #3a5068;
  --text-primary:   #1a1a1a;
  --text-secondary: #5a6472;
  --text-muted:     #8a9299;
  --bg:           #ffffff;
  --bg-secondary: #f7f8f6;
  --border:       rgba(0,0,0,0.1);
  --border-hover: rgba(74,186,74,0.4);
  --radius-sm:    6px;
  --radius-md:    10px;
  --radius-lg:    14px;
  --font-sans:    'DM Sans', sans-serif;
  --font-serif:   'DM Serif Display', serif;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font-sans);
  color: var(--text-primary);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.25;
  color: var(--text-primary);
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.entry-content h2 { font-size: 26px; margin: 2rem 0 1rem; }
.entry-content h3 { font-size: 22px; margin: 1.75rem 0 0.75rem; }
.entry-content p  { font-size: 16px; line-height: 1.75; color: var(--text-secondary); margin-bottom: 1.25rem; }
.entry-content ul, .entry-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.entry-content li { margin-bottom: 0.5rem; font-size: 16px; color: var(--text-secondary); }
.entry-content blockquote {
  border-left: 3px solid var(--green);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--green-light);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--text-secondary);
}

/* ── LAYOUT ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container--narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 22px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-family: var(--font-sans);
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s, transform 0.1s;
  border: none;
  line-height: 1;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--green); color: white; }
.btn--primary:hover { background: var(--green-dark); color: white; }

.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn--outline:hover { border-color: var(--green); color: var(--green); }

.btn--amazon {
  background: #FF9900;
  color: #111;
  font-weight: 600;
  width: 100%;
  justify-content: center;
}
.btn--amazon:hover { background: #e68900; color: #111; }

.btn--ghost {
  background: var(--green-light);
  color: var(--green-dark);
  width: 100%;
  justify-content: center;
}
.btn--ghost:hover { background: var(--green-mid); }

/* ── BADGE / LABEL ── */
.badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge--green  { background: var(--green-light); color: var(--green-dark); }
.badge--blue   { background: #E6F1FB; color: #185FA5; }
.badge--purple { background: #EEEDFE; color: #534AB7; }
.badge--amber  { background: #FAEEDA; color: #854F0B; }
.badge--red    { background: #FCEBEB; color: #A32D2D; }

.section-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  font-family: var(--font-sans);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 0.5px solid var(--border);
  height: 64px;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 2rem;
}

.site-header__logo img {
  height: 38px;
  width: auto;
}

.site-header__logo .logo-text {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--text-primary);
}

.site-header__logo .logo-text span { color: var(--green); }

.site-nav { display: flex; align-items: center; gap: 2rem; flex: 1; justify-content: center; }
.site-nav a { font-size: 14px; color: var(--text-secondary); transition: color 0.15s; }
.site-nav a:hover, .site-nav .current-menu-item > a { color: var(--text-primary); }

.site-header__actions { display: flex; align-items: center; gap: 1rem; }

/* Hamburger (mobile) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 5rem 0 4rem;
  text-align: center;
}

.hero__inner { max-width: 700px; margin: 0 auto; }

.hero h1 {
  font-size: 46px;
  margin-bottom: 1.25rem;
}

.hero h1 em { color: var(--green); font-style: italic; }

.hero__sub {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}

.stats-bar__item {
  padding: 1.5rem 2rem;
  text-align: center;
  border-right: 0.5px solid var(--border);
}

.stats-bar__item:last-child { border-right: none; }

.stats-bar__num {
  font-family: var(--font-serif);
  font-size: 30px;
  color: var(--green);
  line-height: 1;
  margin-bottom: 6px;
}

.stats-bar__label { font-size: 13px; color: var(--text-secondary); }

/* ============================================================
   SECTION WRAPPER
   ============================================================ */
.section {
  padding: 4rem 0;
}

.section--tight { padding: 2rem 0; }
.section--flush-top { padding-top: 0; }

.section__header { margin-bottom: 2rem; }
.section__title { font-size: 30px; margin-bottom: 0.5rem; }
.section__sub { font-size: 15px; color: var(--text-secondary); }

/* ============================================================
   CARDS — FEATURED GRID
   ============================================================ */
.featured-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 1.5rem;
}

/* Main card */
.card-main {
  background: var(--bg);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.15s, transform 0.15s;
}

.card-main:hover { border-color: var(--border-hover); transform: translateY(-2px); }

.card-main__img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.card-main__img-placeholder {
  width: 100%;
  height: 240px;
  background: linear-gradient(135deg, #1a3a2a 0%, #2d7a4a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.card-main__img-wrap {
  position: relative;
}

.card-main__tag {
  position: absolute;
  top: 14px;
  left: 14px;
}

.card-main__rating {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255,255,255,0.15);
  color: white;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  font-family: var(--font-sans);
}

.card-main__body { padding: 1.25rem 1.5rem; }
.card-main__title { font-size: 18px; margin-bottom: 8px; line-height: 1.4; }
.card-main__excerpt { font-size: 14px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 1rem; }

.card-main__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-main__author { font-size: 12px; color: var(--text-muted); font-family: var(--font-sans); }
.card-main__link { font-size: 13px; font-weight: 500; color: var(--green); font-family: var(--font-sans); }

/* Side small cards */
.side-cards { display: flex; flex-direction: column; gap: 1rem; }

.card-sm {
  background: var(--bg);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  transition: border-color 0.15s;
}

.card-sm:hover { border-color: var(--border-hover); }

.card-sm__img {
  width: 100px;
  flex-shrink: 0;
  object-fit: cover;
}

.card-sm__img-placeholder {
  width: 100px;
  flex-shrink: 0;
  min-height: 95px;
  background: linear-gradient(135deg, #1a3a2a 0%, #2d7a4a 100%);
}

.card-sm__body { padding: 0.9rem 1rem; }
.card-sm__cat { font-size: 11px; color: var(--green); font-weight: 600; margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.04em; font-family: var(--font-sans); }
.card-sm__title { font-family: var(--font-sans); font-size: 13px; font-weight: 500; margin-bottom: 5px; line-height: 1.4; }
.card-sm__meta { font-size: 12px; color: var(--text-muted); font-family: var(--font-sans); }

/* ============================================================
   CATEGORY GRID
   ============================================================ */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.cat-card {
  background: var(--bg-secondary);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  text-align: center;
  transition: border-color 0.15s, transform 0.15s;
  cursor: pointer;
}

.cat-card:hover { border-color: var(--green); transform: translateY(-2px); }

.cat-card__icon {
  width: 46px;
  height: 46px;
  background: var(--green-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.cat-card__icon svg { width: 22px; height: 22px; stroke: var(--green-dark); fill: none; stroke-width: 1.5; }
.cat-card__name { font-size: 14px; font-weight: 500; margin-bottom: 4px; font-family: var(--font-sans); }
.cat-card__count { font-size: 12px; color: var(--text-muted); font-family: var(--font-sans); }

/* ============================================================
   TOP PICKS GRID
   ============================================================ */
.picks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.pick-card {
  background: var(--bg);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.15s, transform 0.15s;
}

.pick-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }

.pick-card__img {
  height: 155px;
  object-fit: cover;
  width: 100%;
}

.pick-card__img-placeholder {
  height: 155px;
  background: linear-gradient(135deg, #0C447C 0%, #378ADD 100%);
}

.pick-card__body { padding: 1rem 1.1rem; }
.pick-card__rank { margin-bottom: 8px; }
.pick-card__title { font-family: var(--font-sans); font-size: 14px; font-weight: 500; margin-bottom: 7px; line-height: 1.4; }
.pick-card__stars { color: #EF9F27; font-size: 14px; margin-bottom: 6px; letter-spacing: 1px; font-family: var(--font-sans); }
.pick-card__price { font-size: 13px; color: var(--text-secondary); font-family: var(--font-sans); margin-bottom: 12px; }
.pick-card__price strong { color: var(--text-primary); font-weight: 600; }

/* ============================================================
   REVIEW SCORE BOX (single review pages)
   ============================================================ */
.review-score {
  background: var(--bg-secondary);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
}

.review-score__num {
  text-align: center;
}

.review-score__big {
  font-family: var(--font-serif);
  font-size: 64px;
  color: var(--green);
  line-height: 1;
}

.review-score__out { font-size: 13px; color: var(--text-muted); font-family: var(--font-sans); }

.review-score__bars { display: flex; flex-direction: column; gap: 10px; }

.score-bar { display: grid; grid-template-columns: 110px 1fr 32px; align-items: center; gap: 10px; }
.score-bar__label { font-size: 13px; color: var(--text-secondary); font-family: var(--font-sans); }
.score-bar__track { height: 6px; background: var(--border); border-radius: 99px; overflow: hidden; }
.score-bar__fill { height: 100%; background: var(--green); border-radius: 99px; }
.score-bar__val { font-size: 13px; font-weight: 600; color: var(--text-primary); font-family: var(--font-sans); text-align: right; }

/* ============================================================
   PROS / CONS BOX
   ============================================================ */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.pros-cons__box {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
}

.pros-cons__box--pros { border-top: 3px solid var(--green); }
.pros-cons__box--cons { border-top: 3px solid #E24B4A; }

.pros-cons__title {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.pros-cons__box--pros .pros-cons__title { color: var(--green-dark); }
.pros-cons__box--cons .pros-cons__title { color: #A32D2D; }

.pros-cons__list { list-style: none; padding: 0; }
.pros-cons__list li {
  display: flex;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 8px;
  line-height: 1.5;
  font-family: var(--font-sans);
}

.pros-cons__list li::before {
  flex-shrink: 0;
  font-size: 14px;
  margin-top: 1px;
}

.pros-cons__box--pros .pros-cons__list li::before { content: '✓'; color: var(--green); font-weight: 700; }
.pros-cons__box--cons .pros-cons__list li::before { content: '✕'; color: #E24B4A; font-weight: 700; }

/* ============================================================
   AFFILIATE BUY BOX
   ============================================================ */
.buy-box {
  background: var(--bg-secondary);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.buy-box__info h3 { font-size: 18px; margin-bottom: 4px; }
.buy-box__info .price { font-size: 24px; font-family: var(--font-sans); font-weight: 600; color: var(--text-primary); }
.buy-box__info .price span { font-size: 14px; color: var(--text-muted); font-weight: 400; }

.buy-box__actions { display: flex; flex-direction: column; gap: 8px; min-width: 200px; }

/* ============================================================
   BLOG / ARCHIVE GRID
   ============================================================ */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.post-card {
  background: var(--bg);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.15s, transform 0.15s;
}

.post-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }

.post-card__img { width: 100%; height: 185px; object-fit: cover; }
.post-card__img-placeholder { width: 100%; height: 185px; background: linear-gradient(135deg, #1a3a2a 0%, #4aba4a 100%); }

.post-card__body { padding: 1.1rem 1.25rem; }
.post-card__cat { font-size: 11px; font-weight: 600; color: var(--green); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; font-family: var(--font-sans); }
.post-card__title { font-size: 16px; margin-bottom: 8px; line-height: 1.4; }
.post-card__excerpt { font-size: 13px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.post-card__footer { display: flex; align-items: center; justify-content: space-between; }
.post-card__date { font-size: 12px; color: var(--text-muted); font-family: var(--font-sans); }
.post-card__read { font-size: 12px; color: var(--green); font-weight: 500; font-family: var(--font-sans); }

/* ============================================================
   SINGLE POST / REVIEW LAYOUT
   ============================================================ */
.single-header {
  padding: 3rem 0 2rem;
  border-bottom: 0.5px solid var(--border);
  margin-bottom: 2.5rem;
}

.single-header__cat { margin-bottom: 1rem; }
.single-header__title { font-size: 38px; margin-bottom: 1rem; line-height: 1.2; }
.single-header__meta { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; font-size: 13px; color: var(--text-muted); font-family: var(--font-sans); }
.single-header__meta a { color: var(--green); }

.single-featured-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 2.5rem;
}

/* Sidebar */
.single-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}

.sidebar { position: sticky; top: 84px; }

.sidebar__widget {
  background: var(--bg-secondary);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
}

.sidebar__widget-title {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* Table of Contents */
.toc { list-style: none; padding: 0; counter-reset: toc; }
.toc li { counter-increment: toc; margin-bottom: 8px; }
.toc a {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  font-family: var(--font-sans);
  transition: color 0.15s;
}

.toc a::before {
  content: counter(toc) ".";
  color: var(--green);
  font-weight: 600;
  min-width: 18px;
}

.toc a:hover { color: var(--green); }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section { padding: 0 0 3rem; }

.newsletter {
  background: var(--bg-secondary);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2rem;
  text-align: center;
}

.newsletter__title { font-size: 28px; margin-bottom: 0.75rem; }
.newsletter__sub { color: var(--text-secondary); margin-bottom: 1.75rem; font-size: 15px; font-family: var(--font-sans); }

.newsletter__form {
  display: flex;
  gap: 8px;
  max-width: 420px;
  margin: 0 auto;
}

.newsletter__form input {
  flex: 1;
  padding: 11px 15px;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 14px;
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-sans);
  outline: none;
  transition: border-color 0.15s;
}

.newsletter__form input:focus { border-color: var(--green); }

.newsletter__form button {
  background: var(--green);
  color: white;
  border: none;
  padding: 11px 20px;
  border-radius: var(--radius-md);
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--font-sans);
  font-weight: 500;
  transition: background 0.15s;
}

.newsletter__form button:hover { background: var(--green-dark); }

/* ============================================================
   DISCLOSURE & FOOTER
   ============================================================ */
.disclosure {
  text-align: center;
  padding: 0 2rem 1.5rem;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.7;
  font-family: var(--font-sans);
}

.site-footer {
  border-top: 0.5px solid var(--border);
  padding: 2rem 0;
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer__copy { font-size: 13px; color: var(--text-secondary); font-family: var(--font-sans); }

.footer-nav { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-nav a { font-size: 13px; color: var(--text-secondary); transition: color 0.15s; font-family: var(--font-sans); }
.footer-nav a:hover { color: var(--green); }

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 3rem 0;
  font-family: var(--font-sans);
}

.pagination a, .pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  font-size: 14px;
  border: 0.5px solid var(--border);
  color: var(--text-secondary);
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.pagination a:hover { border-color: var(--green); color: var(--green); }
.pagination .current { background: var(--green); color: white; border-color: var(--green); }

/* ============================================================
   SEARCH FORM
   ============================================================ */
.search-form {
  display: flex;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.15s;
}

.search-form:focus-within { border-color: var(--green); }

.search-form input {
  flex: 1;
  padding: 10px 14px;
  border: none;
  background: var(--bg);
  color: var(--text-primary);
  font-size: 14px;
  font-family: var(--font-sans);
  outline: none;
}

.search-form button {
  background: var(--green);
  border: none;
  padding: 0 16px;
  color: white;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.15s;
}

.search-form button:hover { background: var(--green-dark); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .single-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
}

@media (max-width: 900px) {
  .featured-grid { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .picks-grid { grid-template-columns: repeat(2, 1fr); }
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
  .site-nav { display: none; }
  .nav-toggle { display: flex; }
  .hero h1 { font-size: 34px; }
  .site-nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 0.5px solid var(--border);
    padding: 1.5rem 2rem;
    gap: 1.25rem;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .stats-bar { grid-template-columns: 1fr; }
  .stats-bar__item { border-right: none; border-bottom: 0.5px solid var(--border); }
  .stats-bar__item:last-child { border-bottom: none; }
  .picks-grid { grid-template-columns: 1fr; }
  .posts-grid { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .pros-cons { grid-template-columns: 1fr; }
  .review-score { grid-template-columns: 1fr; }
  .newsletter__form { flex-direction: column; }
  .site-footer__inner { flex-direction: column; text-align: center; }
  .hero h1 { font-size: 28px; }
  .single-header__title { font-size: 28px; }
  .buy-box { flex-direction: column; }
}
