/* ── UsageTracking Shared Styles ── */
:root {
  --bg: #0f0f0f;
  --surface: #161616;
  --surface2: #1a1a1a;
  --border: #222;
  --border2: #2a2a2a;
  --text: #e8e8e8;
  --muted: #888;
  --muted2: #555;
  --accent: #ff6b35;
  --accent2: #ffd23f;
  --green: #4caf7d;
  --blue: #7eb8f7;
  --purple: #b48ef7;
  --pink: #f778ba;
  --teal: #4ecdc4;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

/* ── Header ── */
header {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  position: sticky;
  top: 0;
  background: rgba(15,15,15,0.95);
  backdrop-filter: blur(8px);
  z-index: 100;
}
.header-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text);
  text-decoration: none;
}
.logo span { color: var(--accent); }
.header-nav { display: flex; gap: 24px; align-items: center; }
.header-nav a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.03em;
}
.header-nav a:hover { color: var(--text); }
.header-nav a.active { color: var(--accent); }

/* ── Footer ── */
footer {
  border-top: 1px solid var(--border);
  padding: 28px 24px;
  text-align: center;
  font-size: 13px;
  color: var(--muted2);
}
footer a { color: var(--muted); text-decoration: none; }
footer a:hover { color: var(--text); }

/* ── Page Title / Hero ── */
.page-hero {
  max-width: 1040px;
  margin: 0 auto;
  padding: 48px 24px 32px;
}
.page-hero h1 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 10px;
}
.page-hero p {
  font-size: 16px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
}

/* ── Hero (homepage) ── */
.hero {
  max-width: 1040px;
  margin: 0 auto;
  padding: 64px 24px 48px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,107,53,0.1);
  border: 1px solid rgba(255,107,53,0.25);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 16px;
  max-width: 680px;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero p {
  font-size: 18px;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.7;
}

/* ── Divider ── */
.divider {
  max-width: 1040px;
  margin: 0 auto 40px;
  padding: 0 24px;
}
.divider hr { border: none; border-top: 1px solid var(--border); }

/* ── Section Headers ── */
.section-header-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.section-header-bar h2 {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
}
.section-header-bar .line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--border) 100%);
}

/* ── Featured Story ── */
.featured-story-card {
  background: linear-gradient(180deg, rgba(255,107,53,0.06), rgba(255,107,53,0.02));
  border: 1px solid rgba(255,107,53,0.35);
  border-radius: 10px;
  padding: 28px;
}
.featured-story-title {
  font-size: clamp(24px, 3.5vw, 34px);
  line-height: 1.18;
  letter-spacing: -0.8px;
  margin-bottom: 12px;
}
.featured-story-title a { color: var(--text); text-decoration: none; }
.featured-story-title a:hover { color: var(--accent); }

/* ── Post Cards ── */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}
.post-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  transition: border-color 0.15s;
  display: flex;
  flex-direction: column;
}
.post-card:hover { border-color: var(--border2); }
.post-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.post-date { font-size: 11px; color: var(--muted2); }
.post-tag {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid var(--border);
  color: var(--muted);
  background: var(--bg);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  text-decoration: none;
}
.post-tag.ubb        { border-color: rgba(76,175,125,0.35); color: var(--green); }
.post-tag.pricing    { border-color: rgba(255,107,53,0.35); color: var(--accent); }
.post-tag.saas       { border-color: rgba(126,184,247,0.35); color: var(--blue); }
.post-tag.ai-pricing { border-color: rgba(255,210,63,0.35); color: var(--accent2); }
.post-tag.freemium   { border-color: rgba(180,142,247,0.35); color: var(--purple); }
.post-tag.enterprise { border-color: rgba(78,205,196,0.35); color: var(--teal); }
.post-tag.hybrid     { border-color: rgba(247,120,186,0.35); color: var(--pink); }
.post-tag.credits    { border-color: rgba(255,210,63,0.35); color: var(--accent2); }
.post-tag.reviews    { border-color: rgba(78,205,196,0.35); color: var(--teal); }

.post-title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1.35;
  margin-bottom: 10px;
}
.post-title a { color: var(--text); text-decoration: none; }
.post-title a:hover { color: var(--accent); }
.post-excerpt {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 12px;
  flex: 1;
}
.post-takeaway {
  font-size: 12px;
  color: var(--green);
  line-height: 1.5;
  padding: 7px 10px;
  background: rgba(76,175,125,0.05);
  border-radius: 5px;
  border-left: 2px solid rgba(76,175,125,0.3);
  margin-bottom: 14px;
}
.post-takeaway::before { content: '💡 '; }
.read-more {
  font-size: 12px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.03em;
  align-self: flex-start;
}
.read-more:hover { text-decoration: underline; }
.post-readtime {
  font-size: 11px;
  color: var(--muted2);
}

/* ── Start Here Cards ── */
.sh-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 14px;
}
.sh-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s, background 0.15s;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.sh-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--sh-accent, var(--accent));
  opacity: 0;
  transition: opacity 0.15s;
}
.sh-card:hover { border-color: var(--border2); background: var(--surface2); }
.sh-card:hover::before { opacity: 1; }
.sh-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.sh-card-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1.35;
  color: var(--text);
  margin-bottom: 8px;
}
.sh-card:hover .sh-card-title { color: var(--accent); }
.sh-card-takeaway {
  font-size: 12px;
  color: var(--green);
  line-height: 1.5;
  padding: 8px 12px;
  background: rgba(76,175,125,0.06);
  border-radius: 6px;
  border-left: 2px solid var(--green);
}
.sh-card-takeaway::before { content: '💡 '; }

/* ── Series Cards ── */
.series-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 14px;
}
.series-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
  transition: border-color 0.15s, background 0.15s;
}
.series-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--series-color, var(--accent));
  opacity: 0;
  transition: opacity 0.15s;
}
.series-card:hover { border-color: var(--border2); background: var(--surface2); }
.series-card:hover::before { opacity: 1; }
.series-card-icon { font-size: 20px; margin-bottom: 10px; }
.series-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}
.series-card:hover .series-card-title { color: var(--series-color, var(--accent)); }
.series-card-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 10px;
}
.series-card-count {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted2);
}

/* ── Sections Grid ── */
.sections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}
.section-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px 20px;
  transition: border-color 0.15s, background 0.15s;
  text-decoration: none;
  display: block;
}
.section-card:hover {
  background: var(--surface2);
  border-color: var(--border2);
}
.section-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.section-icon { font-size: 20px; line-height: 1; }
.section-count {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted2);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 2px 7px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}
.section-card-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.2px;
  margin-bottom: 4px;
}
.section-card-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

/* ── Filter Bar ── */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.filter-pill {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  transition: all 0.15s;
  letter-spacing: 0.03em;
  text-decoration: none;
}
.filter-pill:hover { border-color: var(--border2); color: var(--text); }
.filter-pill.active {
  background: var(--pill-bg, rgba(255,107,53,0.12));
  border-color: var(--pill-color, var(--accent));
  color: var(--pill-color, var(--accent));
}
.filter-count { opacity: 0.6; margin-left: 4px; font-weight: 400; }

/* ── Search Bar ── */
.search-wrap {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px 20px;
}
.search-bar {
  display: flex;
  gap: 10px;
  align-items: center;
}
.search-input {
  flex: 1;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 14px;
  outline: none;
  transition: border-color 0.15s;
}
.search-input:focus { border-color: var(--accent); }
.search-input::placeholder { color: var(--muted2); }
.search-reset {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s;
  display: none;
}
.search-reset:hover { color: var(--accent); border-color: var(--accent); }
.search-reset.visible { display: inline-block; }

/* ── Pagination ── */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 40px 24px 0;
}
.pagination a, .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  transition: all 0.15s;
}
.pagination a:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.pagination .current {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.pagination .disabled {
  opacity: 0.3;
  pointer-events: none;
}

/* ── Newsletter ── */
.newsletter-wrap {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px 64px;
}
.newsletter-inner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 48px 32px;
  text-align: center;
}
.newsletter-icon { font-size: 32px; margin-bottom: 12px; }
.newsletter-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
.newsletter-desc {
  font-size: 14px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 16px;
  line-height: 1.6;
}
.newsletter-benefits {
  list-style: none;
  padding: 0;
  margin: 0 auto 18px;
  max-width: 560px;
  display: grid;
  gap: 8px;
  text-align: left;
  color: var(--text);
  font-size: 13px;
}
.newsletter-benefits li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}
.newsletter-proof {
  font-size: 12px;
  color: var(--muted2);
  margin: 0 auto 14px;
}
.newsletter-proof strong { color: var(--text); }
.newsletter-form {
  display: flex;
  gap: 8px;
  max-width: 420px;
  margin: 0 auto;
  position: relative;
}
.newsletter-form input[type="email"] {
  flex: 1;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid var(--border2);
  background: var(--bg);
  color: var(--text);
  font-size: 14px;
  outline: none;
  transition: border-color 0.15s;
}
.newsletter-form input[type="email"]:focus { border-color: var(--accent); }
.newsletter-form input[type="email"]::placeholder { color: var(--muted2); }
.newsletter-form button {
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.15s;
  white-space: nowrap;
}
.newsletter-form button:hover { opacity: 0.9; }
.newsletter-form button:disabled { opacity: 0.5; cursor: not-allowed; }
.newsletter-status {
  font-size: 13px;
  margin-top: 12px;
  min-height: 20px;
}
.newsletter-status.success { color: var(--green); }
.newsletter-status.error { color: #e74c3c; }

/* ── Generic Content Wrap ── */
.content-wrap {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px 56px;
}

/* ── Topic Hub ── */
.topic-header {
  max-width: 1040px;
  margin: 0 auto;
  padding: 48px 24px 12px;
}
.topic-header h1 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 8px;
}
.topic-header p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 600px;
}
.topic-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* ── Empty State ── */
.posts-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 0;
  color: var(--muted);
  font-size: 15px;
}

/* ── Mobile ── */
@media (max-width: 900px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .header-nav {
    width: 100%;
    gap: 8px;
    flex-wrap: wrap;
  }
  .header-nav a {
    font-size: 12px;
    padding: 8px 10px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--surface);
  }
  .hero { padding-top: 42px; padding-bottom: 30px; }
  .hero p { font-size: 16px; }
  .filter-bar {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 2px;
    -webkit-overflow-scrolling: touch;
  }
  .filter-pill {
    white-space: nowrap;
    padding: 8px 14px;
  }
}
@media (max-width: 600px) {
  .header-inner, .hero, .content-wrap, .newsletter-wrap, .divider,
  .search-wrap, .page-hero, .topic-header {
    padding-left: 16px;
    padding-right: 16px;
  }
  .sections-grid { grid-template-columns: 1fr; }
  .posts-grid { grid-template-columns: 1fr; }
  .sh-grid { grid-template-columns: 1fr; }
  .series-grid { grid-template-columns: 1fr; }
  .post-card, .sh-card { padding: 18px; }
  .featured-story-card { padding: 20px; }
  .featured-story-title { font-size: 28px; }
  .newsletter-inner { padding: 32px 20px; }
  .hero h1 { line-height: 1.15; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form button { width: 100%; }
  .pagination { flex-wrap: wrap; }
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2a2a2a; border-radius: 3px; }

/* ── SEO: Breadcrumbs ── */
.breadcrumbs {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 20px 0;
  font-size: 13px;
  color: var(--muted);
}
.breadcrumb-link {
  color: var(--muted);
  text-decoration: none;
}
.breadcrumb-link:hover {
  color: var(--text);
}
.breadcrumb-sep {
  color: var(--border);
  margin: 0 2px;
}
.breadcrumb-current {
  color: var(--text);
}

/* ── SEO: Key Takeaways ── */
.key-takeaways {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  padding: 24px 28px;
  margin-bottom: 28px;
}
.key-takeaways h2 {
  font-size: 18px;
  margin: 0 0 14px;
  color: var(--text);
}
.key-takeaways ul {
  margin: 0;
  padding: 0 0 0 20px;
}
.key-takeaways li {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}
.key-takeaways li a {
  color: var(--link);
  text-decoration: none;
  font-weight: 600;
}
.key-takeaways li a:hover {
  text-decoration: underline;
}

/* ── SEO: FAQ Section ── */
.faq-section {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.faq-heading {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text);
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  color: var(--text);
  list-style: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::before {
  content: '▸ ';
  color: var(--accent);
  font-size: 14px;
}
details[open] .faq-question::before {
  content: '▾ ';
}
.faq-answer {
  padding: 0 20px 16px;
}
.faq-answer p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

/* ── SEO: Related Topics ── */
.related-topics {
  margin-bottom: 24px;
}
.related-topics h3 {
  font-size: 14px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

/* ── Comparison Pages ── */
.comparison-page .page-hero {
  text-align: left;
}
.comparison-table-wrap {
  overflow-x: auto;
  margin: 24px 0;
  -webkit-overflow-scrolling: touch;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 600px;
}
.comparison-table th {
  background: var(--surface);
  color: var(--text);
  font-weight: 700;
  text-align: left;
  padding: 12px 16px;
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
}
.comparison-table td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  vertical-align: top;
}
.comparison-table tr:hover td {
  background: var(--surface);
}
.comparison-table strong {
  color: var(--text);
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 16px 0 24px;
}
.pros, .cons {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
}
.pros h3, .cons h3 {
  font-size: 14px;
  margin: 0 0 12px;
  font-weight: 700;
}
.pros ul, .cons ul {
  margin: 0;
  padding: 0 0 0 18px;
}
.pros li, .cons li {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 6px;
  color: var(--muted);
}

.comparison-links {
  margin-bottom: 24px;
}
.comparison-link {
  display: inline-block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px 16px;
  color: var(--link);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  margin-right: 8px;
  margin-bottom: 8px;
}
.comparison-link:hover {
  border-color: var(--link);
}

.comparison-index-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.comparison-index-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
  text-decoration: none;
  transition: border-color 0.2s;
}
.comparison-index-card:hover {
  border-color: var(--accent);
}
.comparison-index-card h2 {
  font-size: 18px;
  color: var(--text);
  margin: 0 0 8px;
}
.comparison-index-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

/* ── Comparison page content styling ── */
.comparison-page .content-wrap h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 36px 0 14px;
  letter-spacing: -0.3px;
  color: var(--text);
}
.comparison-page .content-wrap h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 28px 0 10px;
  color: var(--accent);
}
.comparison-page .content-wrap p {
  font-size: 16px;
  line-height: 1.75;
  color: #d8d8d8;
  margin-bottom: 16px;
}
.comparison-page .content-wrap ul {
  margin: 0 0 20px 24px;
}
.comparison-page .content-wrap li {
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.65;
  color: #d8d8d8;
}
.comparison-page .content-wrap a {
  color: var(--link);
  text-decoration: none;
}
.comparison-page .content-wrap a:hover {
  text-decoration: underline;
}
.comparison-page .content-wrap em {
  color: var(--muted);
}

@media (max-width: 700px) {
  .pros-cons { grid-template-columns: 1fr; }
  .comparison-table { min-width: 500px; }
}
