
/* ── Typography: Plus Jakarta Sans ─────────────────────────── */
.aff-single,
.aff-single *:not(code):not(pre) {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}
.aff-content code,
.aff-content pre {
  font-family: 'Courier New', Courier, monospace;
}
/* ============================================================
   AFF — Single Firmware Post  (assets/single.css)
   ============================================================ */

/* ── Layout ────────────────────────────────────────────────── */
.aff-single { background: var(--aff-bg); min-height: 60vh; }
.aff-single__layout {
  max-width: 1280px; margin: 0 auto;
  padding: 0 24px 72px;
  display: grid; grid-template-columns: 1fr 300px;
  gap: 36px; align-items: start;
}
.aff-single__main { min-width: 0; }

/* ── Breadcrumb ────────────────────────────────────────────── */
.aff-breadcrumb { background: var(--aff-dark); padding: 11px 24px; }
.aff-breadcrumb__list {
  max-width: 1280px; margin: 0 auto; list-style: none; padding: 0;
  display: flex; flex-wrap: wrap; gap: 6px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px;
}
.aff-breadcrumb__list li              { color: rgba(255,255,255,.40); }
.aff-breadcrumb__list li + li::before { content:'›'; margin-right:6px; }
.aff-breadcrumb__list a               { color: rgba(255,255,255,.60); text-decoration:none; transition:color .2s; }
.aff-breadcrumb__list a:hover         { color: var(--aff-sky); }
.aff-breadcrumb__list [aria-current]  { color: var(--aff-sky); }

/* ── Hero — no pills/date, just title + buttons ────────────── */
.aff-hero {
  display: grid; grid-template-columns: 260px 1fr;
  background: var(--aff-white); border: 1px solid var(--aff-border);
  border-radius: var(--aff-radius-lg); box-shadow: var(--aff-shadow);
  overflow: hidden; margin: 20px 0 0;
}
.aff-hero__img {
  background: linear-gradient(160deg, #e8f4fd 0%, #dbeafe 100%);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  min-height: 200px; padding: 12px;
  flex-shrink: 0;
}
.aff-hero__img img {
  width: 100%; height: 100%;
  max-height: 260px;
  object-fit: contain;
  object-position: center center;
  display: block;
}
.aff-hero__body {
  padding: 24px; display: flex; flex-direction: column;
  justify-content: center; gap: 14px;
}
.aff-hero__title {
  font-size: clamp(16px, 1.9vw, 24px); font-weight: 800;
  color: var(--aff-slate); line-height: 1.3; margin: 0;
}
.aff-hero__actions { display:flex; flex-wrap:wrap; gap:10px; }
.aff-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 18px; border-radius: var(--aff-radius);
  font-size: 13px; font-weight: 700; text-decoration: none;
  transition: transform .15s, background .2s, box-shadow .15s;
}
.aff-btn:hover                { transform: translateY(-1px); }
.aff-btn--primary             { background:var(--aff-green); color:#fff; box-shadow:0 4px 14px rgba(22,163,74,.28); }
.aff-btn--primary:hover       { background:#15803d; }
.aff-btn--ghost               { background:transparent; color:var(--aff-slate); border:2px solid var(--aff-border); }
.aff-btn--ghost:hover         { border-color:var(--aff-blue-lt); color:var(--aff-blue); }

/* ── Meta bar ──────────────────────────────────────────────── */
.aff-meta-bar {
  display: flex; flex-wrap: wrap; gap: 10px;
  padding: 14px 0; margin-bottom: 16px;
}
.aff-meta-bar__item {
  flex: 1 1 90px; min-width: 80px; max-width: 170px;
  display: flex; flex-direction: column; gap: 3px;
  background: var(--aff-white); border: 1px solid var(--aff-border);
  border-radius: var(--aff-radius); padding: 10px 14px;
  box-shadow: 0 1px 4px rgba(15,23,42,.05); transition: box-shadow .2s;
}
.aff-meta-bar__item:hover { box-shadow: var(--aff-shadow); }
.aff-meta-bar__label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .6px; color: var(--aff-muted);
}
.aff-meta-bar__value                { font-size: 14px; font-weight: 700; color: var(--aff-slate); text-decoration:none; }
.aff-meta-bar__value--brand         { color: var(--aff-blue); }
.aff-meta-bar__value--brand:hover   { text-decoration: underline; }
.aff-meta-bar__value--author        { color: var(--aff-blue); }
.aff-meta-bar__value--author:hover  { text-decoration: underline; }
.aff-meta-bar__value--dl            { color: var(--aff-green); }

/* ── TOC ───────────────────────────────────────────────────── */
.aff-toc {
  background: var(--aff-white); border: 1px solid var(--aff-border);
  border-left: 4px solid var(--aff-blue);
  border-radius: var(--aff-radius); margin-bottom: 20px;
}
.aff-toc__toggle {
  display:flex; align-items:center; gap:10px;
  padding:14px 18px; font-size:15px; font-weight:700; color:var(--aff-slate);
  cursor:pointer; list-style:none; user-select:none;
}
.aff-toc__toggle::-webkit-details-marker { display:none; }
.aff-toc__toggle:hover { background:#f8fafc; }
.aff-toc__icon   { font-size:16px; color:var(--aff-blue); }
.aff-toc__chevron {
  margin-left:auto; width:10px; height:10px;
  border-right:2px solid var(--aff-muted); border-bottom:2px solid var(--aff-muted);
  transform:rotate(45deg); transition:transform .22s; flex-shrink:0;
}
details[open].aff-toc .aff-toc__chevron { transform:rotate(-135deg); }
.aff-toc__body { padding:4px 18px 14px; }
.aff-toc__list { list-style:none; margin:0; padding:0; }
.aff-toc__item { border-top:1px solid var(--aff-border); }
.aff-toc__item:first-child { border-top:none; }
.aff-toc__item a {
  display:block; padding:9px 6px;
  font-size:14px; font-weight:600; color:var(--aff-blue);
  text-decoration:none; transition:color .15s, padding-left .15s;
}
.aff-toc__item a:hover { color:var(--aff-blue-lt); padding-left:8px; }
.aff-toc__item--h3 a { padding-left:18px; font-size:13px; color:var(--aff-muted); font-weight:500; }
.aff-toc__item--h3 a:hover { color:var(--aff-blue); padding-left:24px; }

/* ── Post content wrapper ──────────────────────────────────── */
.aff-content {
  background: var(--aff-white); border: 1px solid var(--aff-border);
  border-radius: var(--aff-radius-lg); padding: 32px 36px; margin-bottom: 18px;
  box-shadow: var(--aff-shadow); font-size: 16.5px; line-height: 1.85; color: var(--aff-slate);
}
.aff-content h2,.aff-content h3,.aff-content h4 {
  font-weight:800; color:var(--aff-slate); line-height:1.35; margin:1.8em 0 .6em;
  scroll-margin-top:calc(var(--aff-header-h) + 16px);
}
.aff-content h2 { font-size:23px; border-bottom:2px solid var(--aff-border); padding-bottom:10px; }
.aff-content h3 { font-size:19px; margin-top:1.4em; }
.aff-content p  { margin:0 0 1em; }
.aff-content a  { color:var(--aff-blue); }
.aff-content a:hover { color:var(--aff-blue-lt); }
.aff-content code {
  font-family:'Courier New',monospace; font-size:12.5px;
  background:#f1f5f9; border:1px solid var(--aff-border); border-radius:4px; padding:2px 6px;
}
.aff-content pre {
  background:#1e293b; color:#e2e8f0;
  border-radius:var(--aff-radius); padding:18px; overflow-x:auto;
  font-size:13px; margin:1em 0; line-height:1.6;
}
.aff-content img { max-width:100%; height:auto; border-radius:var(--aff-radius); margin:.8em 0; }

/* ── Firmware card grid — 2 per row ─────────────────────────── */
/* ── Firmware card grid — 2 columns, vertical card style ────── */
.aff-fw-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 1.4em 0;
}

.aff-fw-card {
  background: var(--aff-white);
  border: 1px solid var(--aff-border);
  border-radius: 12px;
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 1px 4px rgba(15,23,42,.06);
  transition: box-shadow .22s, transform .22s;
}
.aff-fw-card:hover {
  box-shadow: 0 8px 28px rgba(15,23,42,.12);
  transform: translateY(-3px);
}

/* Thin coloured accent stripe at top */
.aff-fw-card__accent {
  height: 4px; width: 100%; flex-shrink: 0;
}

/* Card body */
.aff-fw-card__body {
  padding: 14px 16px 10px;
  flex: 1; display: flex; flex-direction: column; gap: 10px;
}

/* Model headline */
.aff-fw-card__model {
  font-size: 15.5px; font-weight: 800; color: var(--aff-slate);
  line-height: 1.3; word-break: break-word;
}

/* Specs — 2-column tile grid */
.aff-fw-card__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.aff-fw-spec {
  display: flex; flex-direction: column; gap: 2px;
  background: #f8fafc; border: 1px solid var(--aff-border);
  border-radius: 6px; padding: 6px 9px;
}
.aff-fw-spec__k {
  font-size: 10.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .5px; color: var(--aff-muted);
}
.aff-fw-spec__v {
  font-size: 13.5px; font-weight: 600; color: var(--aff-slate);
  word-break: break-word; line-height: 1.35;
}

/* Footer: logo + service name + download button */
.aff-fw-card__footer {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px 12px;
  border-top: 1px solid var(--aff-border);
  margin-top: auto;
}
.aff-fw-card__logo {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 7px;
  font-size: 10px; font-weight: 900; color: #fff; flex-shrink: 0;
  letter-spacing: -.3px;
}
.aff-fw-card__service {
  font-size: 13px; font-weight: 600; color: var(--aff-muted);
  flex: 1; min-width: 0; overflow: hidden;
  text-overflow: ellipsis; white-space: nowrap;
}
.aff-fw-card__btn {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 9px 18px; border-radius: 7px;
  font-size: 13.5px; font-weight: 700; color: #fff !important;
  text-decoration: none !important; flex-shrink: 0;
  transition: opacity .15s, transform .15s;
}
.aff-fw-card__btn:hover { opacity: .88; transform: scale(1.03); }

/* ── Definition List ───────────────────────────────────────── */
.aff-content dl {
  display:grid; grid-template-columns:minmax(150px,200px) 1fr;
  border:1px solid var(--aff-border); border-radius:var(--aff-radius);
  overflow:hidden; font-size:13.5px; margin:1em 0;
}
.aff-content dt {
  background:#f1f5f9; font-weight:700; color:var(--aff-slate);
  padding:10px 14px; border-top:1px solid var(--aff-border);
  font-size:11px; text-transform:uppercase; letter-spacing:.4px;
}
.aff-content dd { padding:10px 14px; border-top:1px solid var(--aff-border); margin:0; color:var(--aff-slate); line-height:1.6; }
.aff-content dt:first-of-type,.aff-content dd:first-of-type { border-top:none; }

/* ── Warning boxes ──────────────────────────────────────────── */
.aff-content div[style*="border-left"] {
  border-radius:var(--aff-radius) !important; margin:1.4em 0 !important; font-size:14px; line-height:1.7;
}

/* ── Preparation details/summary ──────────────────────────── */
.aff-content details {
  border:1px solid var(--aff-border); border-left:4px solid var(--aff-sky);
  border-radius:var(--aff-radius); margin:1.2em 0; background:var(--aff-white);
}
.aff-content summary {
  padding:13px 16px; font-weight:700; font-size:14px; cursor:pointer;
  color:var(--aff-slate); list-style:none; display:flex; align-items:center; gap:8px; user-select:none;
}
.aff-content summary::-webkit-details-marker { display:none; }
.aff-content summary::after { content:'▸'; margin-left:auto; color:var(--aff-muted); font-size:14px; transition:transform .2s; }
.aff-content details[open]>summary::after { transform:rotate(90deg); }
.aff-content summary:hover { background:#f8fafc; }
.aff-content details>*:not(summary) { padding:0 16px 16px; }

/* ── FAQ items ─────────────────────────────────────────────── */
.aff-faq-item { border:1px solid var(--aff-border); border-radius:var(--aff-radius); margin:8px 0; background:var(--aff-white); overflow:hidden; transition:box-shadow .2s; }
.aff-faq-item[open] { box-shadow:0 2px 12px rgba(15,23,42,.08); border-color:#bfdbfe; }
.aff-faq-q { padding:15px 18px; font-weight:700; font-size:15.5px; color:var(--aff-slate); cursor:pointer; list-style:none; display:flex; align-items:flex-start; gap:12px; user-select:none; line-height:1.4; }
.aff-faq-q::-webkit-details-marker { display:none; }
.aff-faq-q::before { content:'Q'; flex-shrink:0; width:24px; height:24px; background:var(--aff-blue); color:#fff; font-size:11px; font-weight:900; border-radius:50%; display:flex; align-items:center; justify-content:center; margin-top:1px; }
.aff-faq-q::after  { content:'+'; margin-left:auto; flex-shrink:0; font-size:22px; font-weight:300; color:var(--aff-muted); transition:transform .22s; line-height:1; }
.aff-faq-item[open] .aff-faq-q::after { transform:rotate(45deg); color:var(--aff-blue); }
.aff-faq-q:hover { background:#f8fafc; }
.aff-faq-a { padding:0 18px 18px 54px; font-size:15px; line-height:1.75; color:var(--aff-slate); border-top:1px solid var(--aff-border); }
.aff-faq-a p { margin:.8em 0; }

/* ── Step list ─────────────────────────────────────────────── */
.aff-content ol.aff-steps { list-style:none; padding:0; margin:1em 0; counter-reset:step-counter; display:flex; flex-direction:column; gap:10px; }
.aff-content ol.aff-steps>li { counter-increment:step-counter; display:flex; gap:14px; align-items:flex-start; background:var(--aff-white); border:1px solid var(--aff-border); border-radius:var(--aff-radius); padding:14px 16px; box-shadow:0 1px 4px rgba(15,23,42,.05); transition:box-shadow .2s; }
.aff-content ol.aff-steps>li:hover { box-shadow:0 3px 12px rgba(15,23,42,.10); }
.aff-content ol.aff-steps>li::before { content:counter(step-counter); flex-shrink:0; width:28px; height:28px; background:var(--aff-blue); color:#fff; font-size:13px; font-weight:800; border-radius:50%; display:flex; align-items:center; justify-content:center; margin-top:1px; }

/* ── Checklist ─────────────────────────────────────────────── */
.aff-content ul.aff-checklist { list-style:none; padding:0; margin:1em 0; display:flex; flex-direction:column; gap:8px; }
.aff-content ul.aff-checklist>li { display:flex; gap:12px; align-items:flex-start; padding:10px 14px; background:#f0fdf4; border:1px solid #bbf7d0; border-radius:var(--aff-radius); font-size:14px; line-height:1.6; }
.aff-content ul.aff-checklist>li::before { content:'✓'; flex-shrink:0; width:22px; height:22px; background:var(--aff-green); color:#fff; font-size:12px; font-weight:800; border-radius:50%; display:flex; align-items:center; justify-content:center; margin-top:1px; }

/* ── Regular lists ─────────────────────────────────────────── */
.aff-content ol:not(.aff-steps) { padding-left:0; margin:.8em 0; list-style:none; counter-reset:ol-counter; }
.aff-content ol:not(.aff-steps)>li { counter-increment:ol-counter; padding:6px 0 6px 32px; position:relative; border-bottom:1px solid #f1f5f9; }
.aff-content ol:not(.aff-steps)>li::before { content:counter(ol-counter)'.'; position:absolute; left:0; font-weight:700; color:var(--aff-blue); font-size:13px; }
.aff-content ul:not(.aff-checklist) { list-style:none; padding:0; margin:.8em 0; }
.aff-content ul:not(.aff-checklist)>li { padding:5px 0 5px 20px; position:relative; border-bottom:1px solid #f1f5f9; }
.aff-content ul:not(.aff-checklist)>li::before { content:'▸'; position:absolute; left:0; color:var(--aff-blue); font-size:12px; top:7px; }

/* ── Post meta footer strip ────────────────────────────────── */
.aff-post-meta { display:flex; flex-wrap:wrap; gap:14px; padding:12px 18px; background:var(--aff-white); border:1px solid var(--aff-border); border-radius:var(--aff-radius); font-size:12px; color:var(--aff-muted); font-weight:600; margin-bottom:20px; }
.aff-post-meta__cat { color:var(--aff-blue); text-decoration:none; font-weight:700; }
.aff-post-meta__cat:hover { text-decoration:underline; }

/* ── Comments collapsible ──────────────────────────────────── */
.aff-comments-wrap { background:var(--aff-white); border:1px solid var(--aff-border); border-radius:var(--aff-radius-lg); margin-bottom:24px; overflow:hidden; }
.aff-comments-toggle { display:flex; align-items:center; gap:10px; padding:16px 22px; font-size:15px; font-weight:700; color:var(--aff-slate); cursor:pointer; list-style:none; user-select:none; }
.aff-comments-toggle::-webkit-details-marker { display:none; }
.aff-comments-toggle:hover { background:#f8fafc; }
.aff-comments-toggle__icon { font-size:18px; }
.aff-comments-count { display:inline-flex; align-items:center; justify-content:center; min-width:22px; height:22px; padding:0 7px; background:var(--aff-blue); color:#fff; font-size:11px; font-weight:800; border-radius:99px; }
.aff-comments-toggle__chevron { margin-left:auto; width:10px; height:10px; border-right:2px solid var(--aff-muted); border-bottom:2px solid var(--aff-muted); transform:rotate(45deg); transition:transform .22s; flex-shrink:0; }
details[open].aff-comments-wrap .aff-comments-toggle__chevron { transform:rotate(-135deg); }
.aff-comments-body { padding:0 22px 24px; border-top:1px solid var(--aff-border); }
.aff-comments-body .comment-respond { padding-top:20px; }
.aff-comments-body input[type="text"],.aff-comments-body input[type="email"],.aff-comments-body input[type="url"],.aff-comments-body textarea { width:100%; padding:9px 12px; font-size:14px; border:1px solid var(--aff-border); border-radius:var(--aff-radius); transition:border-color .2s; font-family:inherit; }
.aff-comments-body input:focus,.aff-comments-body textarea:focus { border-color:var(--aff-blue); outline:none; }
.aff-comments-body input[type="submit"],.aff-comments-body .submit { background:var(--aff-blue); color:#fff; padding:10px 24px; border:none; border-radius:var(--aff-radius); font-size:14px; font-weight:700; cursor:pointer; transition:background .2s; }
.aff-comments-body input[type="submit"]:hover,.aff-comments-body .submit:hover { background:var(--aff-blue-lt); }
.aff-comments-body .comment-list { list-style:none; padding:0; margin:16px 0 0; }
.aff-comments-body .comment { padding:16px 0; border-bottom:1px solid var(--aff-border); }
.aff-comments-body .comment:last-child { border-bottom:none; }
.aff-comments-body .comment-author { font-weight:700; font-size:13px; color:var(--aff-slate); }
.aff-comments-body .comment-meta { font-size:11px; color:var(--aff-muted); margin-bottom:6px; }
.aff-comments-body .comment-content p { font-size:14px; margin:.4em 0; }

/* ── Sidebar ───────────────────────────────────────────────── */
.aff-sidebar { position:sticky; top:calc(var(--aff-header-h) + 20px); display:flex; flex-direction:column; gap:20px; }
.aff-sidebar-box { background:var(--aff-white); border:1px solid var(--aff-border); border-radius:var(--aff-radius-lg); padding:20px; box-shadow:var(--aff-shadow); overflow:hidden; }
.aff-sidebar-box--related { border-top:3px solid var(--aff-blue); }
.aff-sidebar-box--brands  { border-top:3px solid var(--aff-sky); }

/* ── Sidebar warning box — redesigned ──────────────────────── */
.aff-sidebar-box--tip {
  border: none; padding: 0; overflow: hidden;
  background: #0f172a;
  border-radius: var(--aff-radius-lg);
  box-shadow: 0 4px 18px rgba(15,23,42,.22);
}

/* Red alert header strip */
.aff-sidebar-box--tip::before {
  content: '⚠  IMPORTANT WARNING';
  display: block;
  background: #dc2626;
  color: #fff;
  font-size: 10px; font-weight: 900;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 7px 16px;
}

/* Inner content */
.aff-tip-icon {
  font-size: 36px; margin: 18px 16px 0;
  display: block; text-align: center;
}
.aff-tip-title {
  font-size: 14px; font-weight: 800; color: #f1f5f9;
  margin: 10px 16px 6px; line-height: 1.3; text-align: center;
}
.aff-tip-text {
  font-size: 12.5px; line-height: 1.65; color: #94a3b8;
  margin: 0 16px 14px; text-align: center;
}
.aff-tip-link {
  display: block; margin: 0 16px 18px;
  padding: 9px 14px; text-align: center;
  background: #1e293b; border: 1px solid #334155;
  border-radius: 8px;
  font-size: 12px; font-weight: 700; color: #60a5fa;
  text-decoration: none; transition: background .2s, color .2s;
}
.aff-tip-link:hover { background: #334155; color: #93c5fd; }

.aff-sidebar-box__title { font-size:12px; font-weight:800; color:var(--aff-slate); text-transform:uppercase; letter-spacing:.6px; margin:0 0 14px; padding-bottom:10px; border-bottom:1px solid var(--aff-border); display:flex; align-items:center; gap:7px; }
.aff-sidebar-box__title-icon { font-size:15px; }

/* Related list */
.aff-sidebar-list { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:2px; }
.aff-sidebar-link { display:grid; grid-template-columns:10px 1fr 16px; align-items:start; gap:8px; padding:8px 8px; border-radius:7px; text-decoration:none; transition:background .15s; color:var(--aff-slate); }
.aff-sidebar-link:hover { background:#eff6ff; }
.aff-sidebar-link__dot { width:6px; height:6px; background:var(--aff-blue-lt); border-radius:50%; flex-shrink:0; margin-top:5px; }
.aff-sidebar-link__text { font-size:14px; line-height:1.4; font-weight:500; }
.aff-sidebar-link__arrow { color:var(--aff-muted); font-size:13px; margin-top:2px; opacity:0; transition:opacity .15s; }
.aff-sidebar-link:hover .aff-sidebar-link__arrow { opacity:1; color:var(--aff-blue); }
.aff-sidebar-view-all { display:block; margin-top:12px; text-align:center; padding:8px 12px; background:var(--aff-blue); color:#fff; border-radius:var(--aff-radius); font-size:12px; font-weight:700; text-decoration:none; transition:background .2s; }
.aff-sidebar-view-all:hover { background:var(--aff-blue-lt); }

/* Brand chips */
.aff-brand-grid { display:flex; flex-wrap:wrap; gap:8px; }
.aff-brand-chip { display:inline-flex; align-items:center; gap:5px; padding:6px 11px; border-radius:99px; font-size:12px; font-weight:700; text-decoration:none; background:var(--aff-bg); color:var(--aff-slate); border:1px solid var(--aff-border); transition:background .18s, color .18s, border-color .18s; }
.aff-brand-chip:hover { background:var(--aff-blue); color:#fff; border-color:var(--aff-blue); }
.aff-brand-chip__count { font-size:10px; background:rgba(0,0,0,.08); border-radius:99px; padding:1px 6px; font-weight:800; }
.aff-brand-chip:hover .aff-brand-chip__count { background:rgba(255,255,255,.20); }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .aff-single__layout { grid-template-columns: 1fr; }
  .aff-sidebar        { display: none; }
}
@media (max-width: 680px) {
  .aff-single__layout  { padding: 0 14px 48px; }
  .aff-hero            { grid-template-columns: 1fr; }
  .aff-hero__img       { min-height: 180px; max-height: 220px; padding: 10px; }
  .aff-hero__body      { padding: 18px; }
  .aff-hero__title     { font-size: 17px; }
  .aff-content         { padding: 18px 16px; font-size: 15px; }
  .aff-content h2      { font-size: 18px; }
  .aff-content dl      { grid-template-columns: 1fr; }
  .aff-content dt      { border-top: 1px solid var(--aff-border); padding-bottom: 2px; }
  .aff-content dd      { border-top: none; padding-top: 4px; }
  .aff-faq-a           { padding-left: 18px; }
  .aff-meta-bar__item  { min-width: 80px; }
  .aff-fw-grid         { grid-template-columns: 1fr; }
}
