/* ═══════════════════════════════════════════════════════════════
   Ardor Accessibility - secondary pages
   Resources, articles, install guide, legal, scan, 404.
   Built on the tokens in site.css (warm light, charcoal dark bands,
   RED + GOLD brand, Segoe UI). Loads AFTER site.css.
   ═══════════════════════════════════════════════════════════════ */

:root {
  --prose: #423d37;          /* warm body text for long-form */
  --code-bg: #F2EEE8;
}

/* ═══════════ PAGE HEADER (sub-page hero) ═══════════ */
.page-header {
  position: relative;
  overflow: hidden;
  padding: 156px 0 60px;
  background:
    radial-gradient(ellipse 60% 70% at 88% -10%, rgba(224,60,60,0.09), transparent 60%),
    radial-gradient(ellipse 55% 70% at 4% 120%, rgba(212,168,67,0.10), transparent 55%),
    var(--bg);
  border-bottom: 1px solid var(--line);
}
.page-header .grid-bg {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(30,30,30,0.04) 1px, transparent 1px);
  background-size: 28px 28px; pointer-events: none;
}
.page-header h1 { font-size: clamp(2.1rem, 4.4vw, 3.1rem); margin-top: 16px; }
.page-header .ph-sub { color: var(--ink-soft); font-size: 1.16rem; margin-top: 14px; line-height: 1.6; max-width: 640px; }
.page-header.center { text-align: center; }
.page-header.center .eyebrow { justify-content: center; }
.page-header.center .ph-sub { margin-left: auto; margin-right: auto; }
.page-header .back-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13.5px; font-weight: 600; color: var(--ink-soft); margin-bottom: 18px;
}
.page-header .back-link:hover { color: var(--accent); }

/* ═══════════ PAGE CONTENT WRAP ═══════════ */
.page-content { padding: 72px 0 96px; }

/* ═══════════ RESOURCES - ARTICLE GRID ═══════════ */
.article-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.article-card {
  display: flex; flex-direction: column;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 30px 26px; box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s;
}
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #DAD5CC; }
.article-tag {
  align-self: flex-start;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--accent); background: var(--accent-soft);
  padding: 5px 11px; border-radius: 100px; margin-bottom: 16px; white-space: nowrap;
}
.article-card h3 { font-size: 1.22rem; line-height: 1.25; margin-bottom: 11px; }
.article-card p { font-size: 14.8px; color: var(--ink-soft); line-height: 1.62; margin-bottom: 20px; }
.article-card .read-more {
  margin-top: auto; font-weight: 700; font-size: 14.5px; color: var(--accent);
  display: inline-flex; align-items: center; gap: 5px;
}
.article-card .read-more:hover { color: var(--accent-deep); gap: 9px; }

/* ═══════════ ARTICLE BODY (long-form prose) ═══════════ */
.article-body { max-width: 760px; margin: 0 auto; }
.article-body > p:first-child { font-size: 1.24rem; line-height: 1.6; color: var(--ink); font-weight: 500; }
.article-body h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.7rem); margin: 1.9em 0 .55em;
  padding-top: .4em; color: var(--ink);
}
.article-body h3 { font-size: 1.18rem; margin: 1.5em 0 .4em; color: var(--ink); }
.article-body p { font-size: 1.075rem; line-height: 1.78; color: var(--prose); margin: 0 0 1.15em; }
.article-body ul, .article-body ol { margin: 0 0 1.25em; padding-left: 1.35em; }
.article-body li { font-size: 1.06rem; line-height: 1.7; color: var(--prose); margin-bottom: .5em; }
.article-body li::marker { color: var(--accent); }
.article-body strong { color: var(--ink); font-weight: 700; }
.article-body em { font-style: italic; }
.article-body a { color: var(--accent); font-weight: 600; border-bottom: 1px solid color-mix(in srgb, var(--accent) 35%, transparent); }
.article-body a:hover { color: var(--accent-deep); border-bottom-color: var(--accent-deep); }
.article-body code {
  font-family: ui-monospace, "Cascadia Code", Menlo, Consolas, monospace;
  font-size: 0.88em; background: var(--code-bg); color: var(--red-dark);
  padding: 2px 6px; border-radius: 5px; border: 1px solid var(--line);
}

/* ═══════════ LEGAL CONTENT ═══════════ */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { font-size: 1.32rem; margin: 1.8em 0 .5em; color: var(--ink); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { font-size: 1.02rem; line-height: 1.72; color: var(--prose); margin: 0 0 1.1em; }
.legal-content ul { margin: 0 0 1.2em; padding-left: 1.35em; }
.legal-content li { font-size: 1.0rem; line-height: 1.66; color: var(--prose); margin-bottom: .45em; }
.legal-content li::marker { color: var(--accent); }
.legal-content strong { color: var(--ink); font-weight: 700; }
.legal-content a { color: var(--accent); font-weight: 600; }
.legal-content a:hover { color: var(--accent-deep); }

/* ═══════════ CTA BLOCK (reusable, gold-outlined) ═══════════ */
.cta-block {
  text-align: center; margin-top: 56px; padding: 40px 32px;
  border: 1px solid var(--gold); border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #FBF3DD66, transparent);
}
.cta-block h3 { font-size: 1.4rem; margin-bottom: 10px; }
.cta-block p { color: var(--ink-soft); margin-bottom: 22px; max-width: 540px; margin-left: auto; margin-right: auto; }

/* ═══════════ INSTALL GUIDE ═══════════ */
.install-toc {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 26px; margin: 0 0 36px; box-shadow: var(--shadow-sm);
}
.install-toc h2 {
  font-size: 12.5px; color: var(--ink-dim); text-transform: uppercase; letter-spacing: 0.12em;
  margin: 0 0 14px; font-weight: 700;
}
.install-toc ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 8px 22px;
}
.install-toc a { color: var(--ink); font-weight: 600; font-size: 14.5px; padding: 4px 0; display: inline-flex; align-items: center; gap: 7px; border-bottom: none; }
.install-toc a::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.install-toc a:hover { color: var(--accent); }

.cms-section {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); padding: 30px 34px; margin-bottom: 22px;
}
.cms-section h2 { display: flex; align-items: center; gap: 13px; margin: 0 0 8px; font-size: 1.42rem; flex-wrap: wrap; }
.cms-section h3 { font-size: 1.02rem; margin: 20px 0 6px; color: var(--ink); }
.cms-section p { color: var(--prose); line-height: 1.7; margin: 0 0 12px; }
.cms-section ol { padding-left: 22px; line-height: 1.75; color: var(--prose); }
.cms-section ol li { margin-bottom: 8px; }
.cms-section ol li::marker { color: var(--accent); font-weight: 700; }
.cms-section ul { padding-left: 20px; color: var(--prose); line-height: 1.7; margin: 6px 0; }
.cms-section a { color: var(--accent); font-weight: 600; overflow-wrap: anywhere; word-break: break-word; }
.time-est {
  display: inline-block; background: #FBF3DD; color: #B8860B;
  font-size: 11px; font-weight: 700; padding: 4px 11px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: 0.06em; white-space: nowrap;
}

.code-block {
  background: var(--char); border: 1px solid var(--char-3); border-radius: 9px;
  padding: 16px 18px; font-family: ui-monospace, Menlo, Consolas, monospace;
  font-size: 13px; color: #E6E1D8; overflow-x: auto; white-space: pre;
  margin: 14px 0; position: relative; line-height: 1.6;
}
.copy-btn {
  position: absolute; top: 11px; right: 11px;
  background: rgba(255,255,255,0.08); color: var(--d-soft);
  border: 1px solid rgba(255,255,255,0.16); padding: 4px 11px; font-size: 11px;
  border-radius: 6px; cursor: pointer; font-family: var(--font); transition: color .15s, background .15s;
}
.copy-btn:hover { color: #fff; background: rgba(255,255,255,0.14); }

.callout {
  background: var(--accent-soft); border-left: 3px solid var(--accent);
  padding: 14px 18px; border-radius: 0 8px 8px 0; margin: 16px 0;
  font-size: 14.5px; color: var(--prose); line-height: 1.6;
}
.callout strong { color: var(--ink); }
.callout.warn { background: #FBF3DD66; border-left-color: var(--gold); }
.portal-pill {
  display: inline-block; background: var(--gold); color: #2A2418; font-weight: 700;
  padding: 2px 12px; border-radius: 100px; font-size: 13px; line-height: 1.6;
  border: 1px solid var(--gold); transition: filter .15s ease; white-space: nowrap; border-bottom: 1px solid var(--gold);
}
.portal-pill:hover, .portal-pill:focus { filter: brightness(1.06); }

/* ═══════════ SCAN PAGE ═══════════ */
.scan-container { max-width: 700px; margin: 0 auto; }
.scan-form-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); padding: 40px; margin-top: 8px;
}
.scan-form { display: flex; flex-direction: column; gap: 14px; }
.scan-form label { font-size: 12.5px; font-weight: 600; color: var(--ink-soft); margin-bottom: 5px; display: block; }
.scan-form input {
  padding: 14px 16px; background: var(--bg); border: 1px solid var(--line); border-radius: 9px;
  font-size: 15px; font-family: var(--font); color: var(--ink); transition: border-color .15s, box-shadow .15s;
  width: 100%; box-sizing: border-box;
}
.scan-form input::placeholder { color: var(--ink-dim); }
.scan-form input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.scan-submit { width: 100%; padding: 15px; font-size: 16px; margin-top: 4px; }
.scan-fine { text-align: center; font-size: 11.5px; color: var(--ink-dim); }
.scan-progress { display: none; margin-top: 24px; }
.scan-progress-bar { height: 7px; background: var(--line); border-radius: 4px; overflow: hidden; }
.scan-progress-fill { height: 100%; background: linear-gradient(90deg, var(--red), var(--gold)); border-radius: 4px; transition: width .3s ease; width: 0%; }
.scan-progress-text { text-align: center; font-size: 13px; color: var(--ink-soft); margin-top: 9px; }
.scan-results { display: none; margin-top: 36px; }
.result-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 24px; }
.result-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 14px; text-align: center; box-shadow: var(--shadow-sm); }
.result-card-label { font-size: 11px; color: var(--ink-dim); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; }
.result-card-value { font-size: 1.55rem; font-weight: 800; color: var(--ink); margin-top: 6px; line-height: 1.1; }
.result-card-value.green { color: var(--green); }
.result-card-value.red { color: var(--red-dark); }
.result-card-value.gold { color: #B8860B; }
.violations-table { width: 100%; border-collapse: collapse; margin: 16px 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.violations-table th { background: var(--char); color: #fff; padding: 11px 13px; text-align: left; font-size: 12px; font-weight: 600; }
.violations-table td { padding: 11px 13px; border-bottom: 1px solid var(--line); font-size: 13.5px; color: var(--ink); }
.violations-table tr:last-child td { border-bottom: 0; }
.violations-table tbody tr:hover { background: var(--tint); }
.impact-badge { display: inline-block; padding: 2px 9px; border-radius: 5px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; }
.impact-critical { background: #FCEBEB; color: var(--red-dark); }
.impact-serious { background: #FBF3DD; color: #B8860B; }
.impact-moderate { background: #ECEAE6; color: #4a4540; }
.impact-minor { background: #EFEDE9; color: var(--ink-soft); }
.scan-cta { text-align: center; margin-top: 32px; padding: 30px; border: 1px solid var(--gold); border-radius: var(--radius-lg); background: linear-gradient(180deg, #FBF3DD55, transparent); }
.scan-cta h3 { margin-bottom: 9px; }
.scan-cta p { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 18px; }
.scan-error { display: none; margin-top: 16px; padding: 13px 16px; background: #FCEBEB; border: 1px solid #F2C7C7; border-radius: 8px; color: var(--red-dark); font-size: 14px; }
.lead-overlay { position: fixed; inset: 0; background: rgba(20,18,16,0.6); z-index: 9999; align-items: center; justify-content: center; }
.lead-modal { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; max-width: 420px; width: 90%; box-shadow: var(--shadow-lg); }
.lead-modal h3 { margin: 0 0 4px; font-size: 1.2rem; }
.lead-modal .modal-sub { color: var(--ink-soft); font-size: 13.5px; margin: 0 0 20px; }
.lead-cancel { background: none; border: none; color: var(--ink-soft); font-size: 13px; cursor: pointer; margin-top: 6px; width: 100%; }
.lead-cancel:hover { color: var(--accent); }

/* ═══════════ PRICING PAGE ═══════════ */
/* Single-plan hero: the side-by-side value + price card */
.pricing-band { padding-top: 64px; padding-bottom: 64px; }
.price-note {
  display: inline-flex; align-items: center; gap: 8px; align-self: flex-start;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.04em; color: var(--ink-soft);
  background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  padding: 6px 13px; border-radius: 100px; margin-bottom: 18px;
}
.price-note .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.price-highlights { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-top: 24px; }
.price-highlights li { display: flex; gap: 13px; align-items: flex-start; }
.price-highlights .ph-ico {
  flex-shrink: 0; width: 34px; height: 34px; border-radius: 9px; display: flex; align-items: center; justify-content: center;
  background: var(--accent-soft); color: var(--accent);
}
.price-highlights .ph-ico svg { width: 18px; height: 18px; }
.price-highlights .ph-t { font-size: 15px; font-weight: 700; color: var(--ink); line-height: 1.3; }
.price-highlights .ph-d { font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; margin-top: 2px; }
.price-card .price-divider { height: 1px; background: rgba(255,255,255,0.1); margin: 22px 0; }

/* "Everything included" - categorized feature grid */
.feature-cats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 52px; }
.feature-cat {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s;
}
.feature-cat:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #DAD5CC; }
.feature-cat .fc-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.feature-cat .fc-icon svg { width: 23px; height: 23px; }
.fc-icon.red { background: var(--accent-soft); color: var(--accent); }
.fc-icon.gold { background: rgba(212,168,67,0.16); color: #B8860B; }
.fc-icon.green { background: #E6F6EC; color: var(--green); }
.fc-icon.dark { background: #ECEAE6; color: var(--char); }
.feature-cat h4 { font-size: 1.08rem; margin-bottom: 14px; }
.feature-cat ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.feature-cat li { display: flex; gap: 9px; align-items: flex-start; font-size: 14px; color: var(--ink-soft); line-height: 1.45; }
.feature-cat li svg { width: 15px; height: 15px; color: var(--green); flex-shrink: 0; margin-top: 3px; }

/* Comparison: Ardor vs widget-only vendors */
.compare-table {
  width: 100%; border-collapse: collapse; margin-top: 44px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
}
.compare-table th, .compare-table td { padding: 16px 22px; text-align: left; border-bottom: 1px solid var(--line); }
.compare-table tr:last-child td { border-bottom: 0; }
.compare-table thead th { background: var(--char); color: #fff; font-size: 13px; font-weight: 600; letter-spacing: 0.02em; }
.compare-table thead th.col-ardor { color: var(--gold-light); }
.compare-table tbody th { font-weight: 600; font-size: 14.5px; color: var(--ink); }
.compare-table td { font-size: 14.5px; color: var(--ink-soft); }
.compare-table .col-ardor { background: rgba(212,168,67,0.07); color: var(--ink); font-weight: 600; }
.compare-table .ci { display: inline-flex; align-items: center; gap: 8px; }
.compare-table .ci svg { width: 18px; height: 18px; flex-shrink: 0; }
.compare-table .yes svg { color: var(--green); }
.compare-table .no svg { color: var(--ink-dim); }

/* FAQ accordion */
.faq-list { max-width: 840px; margin: 44px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-item summary {
  cursor: pointer; padding: 20px 24px; font-weight: 700; font-size: 1.06rem; color: var(--ink);
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 18px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.6rem; line-height: 1; color: var(--accent); font-weight: 300; transition: transform .2s var(--ease); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 24px 22px; color: var(--ink-soft); font-size: 15px; line-height: 1.68; }
.faq-item .faq-a a { color: var(--accent); font-weight: 600; }

/* Dark mode - pricing page */
[data-mode="dark"] .price-note { background: var(--char-2); border-color: var(--char-3); color: var(--d-soft); }
[data-mode="dark"] .price-highlights .ph-t { color: #fff; }
[data-mode="dark"] .price-highlights .ph-d, [data-mode="dark"] .feature-cat li { color: var(--d-soft); }
[data-mode="dark"] .price-highlights .ph-ico { background: rgba(224,60,60,0.14); }
[data-mode="dark"] .feature-cat, [data-mode="dark"] .compare-table, [data-mode="dark"] .faq-item { background: var(--char-2); border-color: var(--char-3); box-shadow: none; }
[data-mode="dark"] .feature-cat h4, [data-mode="dark"] .compare-table tbody th, [data-mode="dark"] .faq-item summary { color: #fff; }
[data-mode="dark"] .feature-cat .fc-icon.dark { background: var(--char-3); color: var(--d-text); }
[data-mode="dark"] .compare-table th, [data-mode="dark"] .compare-table td { border-color: var(--char-3); }
[data-mode="dark"] .compare-table td, [data-mode="dark"] .faq-item .faq-a { color: var(--d-soft); }
[data-mode="dark"] .compare-table .col-ardor { background: rgba(212,168,67,0.10); color: #fff; }

/* ═══════════ 404 ═══════════ */
.error-num { font-size: clamp(4.5rem, 14vw, 8rem); font-weight: 800; line-height: 1; letter-spacing: -0.03em;
  background: linear-gradient(120deg, var(--red), var(--gold)); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ═══════════ DARK MODE ═══════════ */
[data-mode="dark"] .page-header {
  background:
    radial-gradient(ellipse 60% 70% at 88% -10%, rgba(224,60,60,0.16), transparent 60%),
    radial-gradient(ellipse 55% 70% at 4% 120%, rgba(212,168,67,0.12), transparent 55%),
    var(--char);
  border-color: var(--d-line);
}
[data-mode="dark"] .page-header .grid-bg { background-image: radial-gradient(rgba(255,255,255,0.045) 1px, transparent 1px); }
[data-mode="dark"] .page-content { background: var(--char); }
[data-mode="dark"] .page-header h1 { color: #fff; }
[data-mode="dark"] .page-header .ph-sub, [data-mode="dark"] .page-header .back-link { color: var(--d-soft); }
[data-mode="dark"] .article-card, [data-mode="dark"] .cms-section, [data-mode="dark"] .install-toc,
[data-mode="dark"] .scan-form-card, [data-mode="dark"] .result-card { background: var(--char-2); border-color: var(--char-3); box-shadow: none; }
[data-mode="dark"] .article-card p, [data-mode="dark"] .article-body p, [data-mode="dark"] .article-body li,
[data-mode="dark"] .legal-content p, [data-mode="dark"] .legal-content li, [data-mode="dark"] .cms-section p,
[data-mode="dark"] .cms-section ol, [data-mode="dark"] .cms-section ul, [data-mode="dark"] .callout { color: var(--d-soft); }
[data-mode="dark"] .article-body h2, [data-mode="dark"] .article-body h3, [data-mode="dark"] .article-body strong,
[data-mode="dark"] .article-body > p:first-child, [data-mode="dark"] .legal-content h2, [data-mode="dark"] .legal-content strong,
[data-mode="dark"] .cms-section h2, [data-mode="dark"] .cms-section h3, [data-mode="dark"] .callout strong,
[data-mode="dark"] .article-card h3 { color: #fff; }
[data-mode="dark"] .article-body code, [data-mode="dark"] .cms-section code, [data-mode="dark"] .legal-content code {
  background: var(--char-3); border-color: var(--char-3); color: var(--gold-light);
}
[data-mode="dark"] .install-toc a, [data-mode="dark"] .violations-table td { color: var(--d-text); }
[data-mode="dark"] .scan-form input { background: var(--char); border-color: var(--char-3); color: #fff; }
[data-mode="dark"] .violations-table { border-color: var(--char-3); }
[data-mode="dark"] .violations-table td { border-color: var(--char-3); }
[data-mode="dark"] .violations-table tbody tr:hover { background: var(--char-3); }
[data-mode="dark"] .lead-modal { background: var(--char-2); border-color: var(--char-3); }
[data-mode="dark"] .callout { background: rgba(224,60,60,0.10); }
[data-mode="dark"] .callout.warn { background: rgba(212,168,67,0.10); }
[data-mode="dark"] .cta-block, [data-mode="dark"] .scan-cta { background: rgba(212,168,67,0.07); }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 980px) {
  .feature-cats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .article-grid { grid-template-columns: 1fr; }
  .result-cards { grid-template-columns: 1fr 1fr; }
  .compare-table { display: block; overflow-x: auto; white-space: nowrap; }
}
@media (max-width: 640px) {
  .page-header { padding: 120px 0 48px; }
  .page-content { padding: 52px 0 68px; }
  .scan-form-card, .cms-section { padding: 26px 22px; }
  .result-cards { grid-template-columns: 1fr; }
  .feature-cats { grid-template-columns: 1fr; }
}
