/* Static article pages (/compare/…). These never boot js/app.js — they are plain
   HTML for search engines and for people arriving from a comparison query, so
   they only borrow the design tokens from app.css. */

.article-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  height: calc(var(--nav-h) + var(--safe-top));
  padding: var(--safe-top) 16px 0;
  background: var(--nav-bg);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 0.5px solid var(--separator);
}
.article-nav__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 600;
  color: var(--label);
  text-decoration: none;
  white-space: nowrap;
}
.article-nav__brand img { width: 24px; height: 24px; border-radius: 6px; }
.article-nav__play {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: var(--my-blue);
  padding: 7px 14px;
  border-radius: 16px;
  text-decoration: none;
  white-space: nowrap;
}

.article {
  max-width: 560px;
  margin: 0 auto;
  padding: 28px 16px calc(40px + var(--safe-bottom));
  font-size: 17px;
  line-height: 1.5;
}
.article h1 {
  margin: 0 0 6px;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.article .lede {
  margin: 0 0 22px;
  font-size: 18px;
  color: var(--label-secondary);
}
.article h2 { margin: 30px 0 8px; font-size: 21px; line-height: 1.2; }
.article h3 { margin: 22px 0 6px; font-size: 17px; }
.article p { margin: 0 0 14px; }
.article ul { margin: 0 0 14px; padding-left: 22px; }
.article li { margin-bottom: 4px; }
.article strong { font-weight: 600; }

/* Comparison table: a card, one row per fact. */
.compare {
  width: 100%;
  border-collapse: collapse;
  margin: 8px 0 20px;
  font-size: 15px;
  background: var(--bg-grouped);
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  overflow: hidden;
}
.compare th, .compare td {
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
  border-bottom: 0.5px solid var(--separator);
}
.compare tr:last-child th, .compare tr:last-child td { border-bottom: 0; }
.compare thead th {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--label-secondary);
  background: var(--fill-quaternary);
}
.compare tbody th { font-weight: 600; width: 34%; }
.compare .yes { color: var(--my-green); font-weight: 600; }
.compare .no  { color: var(--label-secondary); }

/* Two-button call to action. */
.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}
.cta a {
  flex: 1 1 200px;
  display: block;
  text-align: center;
  padding: 13px 16px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
}
.cta__primary { color: #fff; background: var(--my-blue); }
.cta__secondary {
  color: var(--my-blue);
  background: var(--bg-grouped);
  box-shadow: var(--card-shadow);
}

.article-related {
  margin-top: 30px;
  padding-top: 16px;
  border-top: 0.5px solid var(--separator);
  font-size: 15px;
}
.article-related h2 { margin-top: 0; font-size: 15px; }
.article-related ul { list-style: none; padding: 0; }

.article-foot {
  margin-top: 26px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--label-tertiary);
}
