/*
Theme Name: Cart or Skip
Theme URI: https://cartorskip.com
Author: Cart or Skip
Description: Performance Editorial, a disclosure-first block theme for fast product buying briefs.
Version: 0.4.5
Requires at least: 6.5
Requires PHP: 8.1
Text Domain: cart-or-skip
*/

:root {
  color-scheme: light;
  --cos-ink: #171916;
  --cos-ink-soft: #292c27;
  --cos-paper: #f3efe4;
  --cos-paper-deep: #e5ddcd;
  --cos-white: #fffdf6;
  --cos-cart: #c8ff34;
  --cos-conditional: #ffb629;
  --cos-skip: #ff574a;
  --cos-action: #6b45f5;
  --cos-muted: #777469;
  --cos-rule: 3px;
  --cos-pad: clamp(20px, 3.25vw, 52px);
  --cos-display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --cos-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --cos-editorial: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--cos-ink);
  background:
    linear-gradient(90deg, rgba(23, 25, 22, .035) 1px, transparent 1px) 0 0 / 80px 80px,
    var(--cos-paper);
  font-family: var(--cos-body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a { text-underline-offset: .18em; }
a:focus-visible,
button:focus-visible { outline: 4px solid var(--cos-conditional); outline-offset: 4px; }
.wp-site-blocks { width: min(100%, 1600px); min-height: 100vh; margin: 0 auto; overflow: hidden; border-inline: 1px solid rgba(23, 25, 22, .16); }
.wp-site-blocks > * { margin-block-start: 0; }
.wp-block-shortcode { margin: 0; }

/* Utility and main navigation */
.cos-utility {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 34px;
  padding: 6px var(--cos-pad);
  color: var(--cos-paper);
  background: var(--cos-ink);
  border-bottom: 1px solid #4a4d46;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.cos-status { display: inline-flex; align-items: center; gap: 9px; }
.cos-status::before { content: ""; width: 8px; height: 8px; background: var(--cos-cart); box-shadow: 0 0 0 3px rgba(200, 255, 52, .18); }
.cos-site-header { min-height: 90px; padding: 0 !important; background: var(--cos-paper); border-bottom: var(--cos-rule) solid var(--cos-ink); }
.cos-site-header > .wp-block-group { min-height: 90px; padding-left: 0; }
.cos-brand {
  align-self: stretch;
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: min(36vw, 480px);
  padding: 18px var(--cos-pad);
  color: var(--cos-ink);
  border-right: var(--cos-rule) solid var(--cos-ink);
  font-family: var(--cos-display);
  font-size: clamp(23px, 2vw, 33px);
  line-height: .9;
  letter-spacing: .025em;
  text-decoration: none;
}
.cos-brand-mark { position: relative; width: 44px; height: 44px; flex: 0 0 auto; background: var(--cos-ink); transform: skew(-8deg); }
.cos-brand-mark::before,
.cos-brand-mark::after { content: ""; position: absolute; left: 8px; right: 8px; height: 8px; }
.cos-brand-mark::before { top: 9px; background: var(--cos-cart); }
.cos-brand-mark::after { bottom: 9px; background: var(--cos-skip); }
.cos-navigation { align-self: stretch; margin-left: auto; padding-right: var(--cos-pad); }
.cos-navigation .wp-block-navigation__container { align-self: stretch; gap: 0; }
.cos-navigation .wp-block-navigation-item { align-self: stretch; border-left: 1px solid rgba(23, 25, 22, .25); }
.cos-navigation .wp-block-navigation-item__content {
  display: flex;
  align-items: center;
  padding: 0 clamp(14px, 1.8vw, 30px);
  color: var(--cos-ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .18s ease, color .18s ease;
}
.cos-navigation .wp-block-navigation-item__content:hover { color: var(--cos-cart); background: var(--cos-ink); }

/* Approved Performance Editorial homepage */
.cos-performance-home { color: var(--cos-ink); }
.cos-performance-hero { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(360px, .75fr); min-height: 410px; border-bottom: var(--cos-rule) solid var(--cos-ink); }
.cos-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px var(--cos-pad) 38px;
  background:
    linear-gradient(128deg, transparent 0 77%, rgba(200, 255, 52, .38) 77% 78%, transparent 78%),
    var(--cos-paper);
}
.cos-eyebrow { display: flex; align-items: center; gap: 11px; margin: 0 0 18px; font-size: 11px; font-weight: 900; letter-spacing: .19em; text-transform: uppercase; }
.cos-eyebrow::before { content: ""; width: 42px; height: 7px; background: var(--cos-cart); }
.cos-hero-copy h1 {
  max-width: 880px;
  margin: 0;
  font-family: var(--cos-display);
  font-size: clamp(72px, 7.4vw, 120px);
  font-weight: 900;
  line-height: .78;
  letter-spacing: -.025em;
  text-transform: uppercase;
}
.cos-hero-copy h1 span { color: transparent; -webkit-text-stroke: 3px var(--cos-ink); }
.cos-subhead { max-width: 710px; margin: 25px 0 0; font-family: var(--cos-editorial); font-size: clamp(18px, 1.5vw, 24px); line-height: 1.35; }
.cos-method-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  color: var(--cos-paper);
  background:
    repeating-linear-gradient(-45deg, transparent 0 18px, rgba(255, 255, 255, .035) 18px 20px),
    var(--cos-ink-soft);
  border-left: var(--cos-rule) solid var(--cos-ink);
}
.cos-issue-label { width: fit-content; margin: 0; padding: 7px 10px; color: var(--cos-ink); background: var(--cos-cart); font-size: 10px; font-weight: 900; letter-spacing: .14em; }
.cos-method-list { display: grid; gap: 11px; margin: 34px 0; }
.cos-method-list > div { display: grid; grid-template-columns: minmax(90px, 1fr) auto; align-items: center; gap: 16px; padding: 10px 0; color: #d8d5ca; border-bottom: 7px solid #444840; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.cos-method-list > div:nth-child(1) { border-color: var(--cos-cart); }
.cos-method-list > div:nth-child(2) { border-color: var(--cos-conditional); }
.cos-method-list > div:nth-child(3) { border-color: var(--cos-skip); }
.cos-method-list b { color: var(--cos-paper); font-size: 9px; }
.cos-analyst-note { margin: 0; padding-top: 20px; color: #d8d5ca; border-top: 1px solid #5f625b; font-size: 12px; font-weight: 750; line-height: 1.55; }

.cos-verdict-key { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: var(--cos-rule) solid var(--cos-ink); }
.cos-verdict-key > div { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 64px; padding: 11px var(--cos-pad); border-right: var(--cos-rule) solid var(--cos-ink); }
.cos-verdict-key > div:last-child { border-right: 0; }
.cos-verdict-key strong { font-family: var(--cos-display); font-size: 24px; letter-spacing: .05em; white-space: nowrap; }
.cos-verdict-key span { display: inline-flex; align-items: center; min-height: 30px; padding: 6px 10px 5px; color: var(--cos-paper); background: var(--cos-ink); font-size: clamp(12px, .75vw, 14px); font-weight: 950; line-height: 1; letter-spacing: .09em; text-transform: uppercase; white-space: nowrap; }
.cos-key-cart { background: var(--cos-cart); }
.cos-key-conditional { background: var(--cos-conditional); }
.cos-verdict-key > .cos-key-conditional { gap: 12px; padding-inline: clamp(14px, 2vw, 26px); }
.cos-key-skip { background: var(--cos-skip); }

.cos-editorial-grid { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(330px, .55fr); border-bottom: var(--cos-rule) solid var(--cos-ink); }
.cos-feature { padding: 32px var(--cos-pad) 38px; border-right: var(--cos-rule) solid var(--cos-ink); }
.cos-section-kicker { display: flex; justify-content: space-between; margin-bottom: 23px; padding-bottom: 9px; border-bottom: 8px solid var(--cos-ink); font-size: 10px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.cos-feature-card { display: grid; grid-template-columns: minmax(250px, .8fr) minmax(340px, 1.2fr); min-height: 255px; background: var(--cos-white); border: var(--cos-rule) solid var(--cos-ink); box-shadow: 10px 10px 0 var(--cos-ink); }
.cos-feature-graphic {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  background:
    radial-gradient(circle at 48% 50%, var(--cos-cart) 0 12%, transparent 12.4%),
    radial-gradient(circle at 48% 50%, transparent 0 26%, rgba(200, 255, 52, .7) 26.4% 28%, transparent 28.4%),
    linear-gradient(132deg, transparent 0 43%, var(--cos-cart) 43% 47%, transparent 47%),
    var(--cos-ink-soft);
  border-right: var(--cos-rule) solid var(--cos-ink);
}
.cos-feature-graphic::before { content: "RESEARCHED FOR THE ROAD"; position: absolute; z-index: 2; left: -47px; top: 112px; width: 245px; padding: 8px; color: var(--cos-ink); background: var(--cos-paper); font-size: 9px; font-weight: 900; letter-spacing: .15em; text-align: center; transform: rotate(-90deg); }
.cos-feature-image { width: 100%; height: 100%; object-fit: cover; filter: saturate(.8) contrast(1.08); }
.cos-dashcam { position: absolute; left: 50%; top: 50%; width: 122px; height: 76px; background: #10120f; border: 3px solid #a8aaa3; box-shadow: 15px 15px 0 rgba(0, 0, 0, .32); transform: translate(-45%, -50%) rotate(-5deg); }
.cos-dashcam::before { content: ""; position: absolute; right: 16px; top: 15px; width: 39px; height: 39px; border: 6px solid #51554e; border-radius: 50%; background: radial-gradient(circle, #899fa0 0 11%, #202824 12% 45%, #060706 46%); }
.cos-dashcam::after { content: ""; position: absolute; left: 17px; top: 20px; width: 24px; height: 15px; background: var(--cos-cart); }
.cos-feature-content { display: flex; flex-direction: column; min-width: 0; padding: 26px 28px 24px; }
.cos-feature-tag { width: fit-content; padding: 6px 8px; color: var(--cos-ink); background: var(--cos-paper-deep); font-size: 10px; font-weight: 900; letter-spacing: .12em; }
.cos-feature-tag--cart { background: var(--cos-cart); }
.cos-feature-tag--conditional { background: var(--cos-conditional); }
.cos-feature-tag--skip { background: var(--cos-skip); }
.cos-feature-content h2 { margin: 14px 0 10px; font-family: var(--cos-display); font-size: clamp(36px, 3.3vw, 55px); line-height: .9; letter-spacing: .005em; text-transform: uppercase; }
.cos-feature-content > p { margin: 0; color: #5b5b53; font-family: var(--cos-editorial); font-size: 15px; line-height: 1.45; }
.cos-feature-meta { display: flex; justify-content: space-between; align-items: end; gap: 12px; margin-top: auto; padding-top: 18px; }
.cos-confidence { display: flex; align-items: baseline; gap: 5px; font-family: var(--cos-display); }
.cos-confidence strong { font-size: 37px; line-height: 1; }
.cos-confidence span { color: var(--cos-muted); font-family: var(--cos-body); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.cos-cta { display: inline-flex; align-items: center; gap: 15px; padding: 11px 14px; color: var(--cos-paper); background: var(--cos-ink); border: 2px solid var(--cos-ink); font-size: 10px; font-weight: 900; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; transition: color .16s ease, background .16s ease; }
.cos-cta::after { content: "→"; font-size: 18px; line-height: .6; }
.cos-cta:hover { color: var(--cos-ink); background: var(--cos-cart); }

.cos-lanes { padding: 32px 30px; background: var(--cos-paper-deep); }
.cos-lanes h2 { margin: 0 0 18px; font-family: var(--cos-display); font-size: 35px; text-transform: uppercase; }
.cos-lane-list { display: grid; border-top: var(--cos-rule) solid var(--cos-ink); }
.cos-lane { display: grid; grid-template-columns: 44px 1fr 20px; align-items: center; min-height: 73px; color: var(--cos-ink); border-bottom: var(--cos-rule) solid var(--cos-ink); text-decoration: none; transition: padding-left .18s ease, background .18s ease; }
.cos-lane:hover { padding-left: 8px; background: var(--cos-paper); }
.cos-lane span { font-size: 10px; font-weight: 900; }
.cos-lane strong { font-family: var(--cos-display); font-size: 23px; letter-spacing: .02em; text-transform: uppercase; }
.cos-lane b { font-size: 20px; }

.cos-latest { padding: 30px var(--cos-pad) 38px; }
.cos-latest-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 21px; }
.cos-latest-head h2 { margin: 0; font-family: var(--cos-display); font-size: clamp(38px, 4vw, 62px); line-height: .85; text-transform: uppercase; }
.cos-latest-note { display: grid; grid-template-columns: 125px minmax(0, 1fr); align-items: stretch; width: min(100%, 560px); color: var(--cos-paper); background: var(--cos-ink); border: var(--cos-rule) solid var(--cos-ink); }
.cos-latest-note-label { display: flex; align-items: center; padding: 12px 13px; color: var(--cos-ink); background: var(--cos-cart); font-size: 10px; font-weight: 950; line-height: 1.15; letter-spacing: .11em; text-transform: uppercase; }
.cos-latest-note-copy { padding: 12px 15px; color: #d8d5ca; font-size: 11px; font-weight: 750; line-height: 1.45; text-align: left; }
.cos-card-grid { display: grid; grid-template-columns: repeat(6, 1fr); border: var(--cos-rule) solid var(--cos-ink); }
.cos-verdict-card { position: relative; display: flex; flex-direction: column; min-width: 0; min-height: 202px; padding: 17px; color: var(--cos-ink); background: var(--cos-white); border-right: var(--cos-rule) solid var(--cos-ink); text-decoration: none; transition: transform .16s ease, box-shadow .16s ease; }
.cos-verdict-card:last-child { border-right: 0; }
a.cos-verdict-card:hover { z-index: 2; transform: translateY(-6px); box-shadow: 0 6px 0 var(--cos-ink); }
.cos-verdict-card--planned { background: color-mix(in srgb, var(--cos-white) 72%, var(--cos-paper-deep)); }
.cos-card-label { width: fit-content; margin-bottom: 28px; padding: 5px 7px; color: var(--cos-ink); font-size: 9px; font-weight: 950; letter-spacing: .12em; }
.cos-card-label--cart { background: var(--cos-cart); }
.cos-card-label--conditional { background: var(--cos-conditional); }
.cos-card-label--skip { background: var(--cos-skip); }
.cos-card-label--pending { background: var(--cos-paper-deep); }
.cos-card-rule { position: absolute; left: 17px; right: 17px; top: 54px; height: 3px; background: var(--cos-ink); }
.cos-verdict-card h3 { margin: 0; font-family: var(--cos-display); font-size: clamp(20px, 1.7vw, 28px); line-height: .95; letter-spacing: .01em; text-transform: uppercase; }
.cos-card-category { margin-top: auto; padding-top: 20px; color: var(--cos-muted); font-size: 9px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }

/* Editorial templates and plugin output */
.cos-article-shell,
.cos-archive-shell,
.cos-page-shell { padding: clamp(3rem, 7vw, 6rem) var(--cos-pad); }
.cos-article-shell > h1,
.cos-archive-shell > h1,
.cos-page-shell h1 { font-size: clamp(3.5rem, 8vw, 7rem); }
.cos-article-shell .wp-block-post-excerpt,
.cos-archive-shell > p { font-family: var(--cos-editorial); }
.cos-brief-summary { margin: 2rem 0; padding: 1.4rem; border: var(--cos-rule) solid var(--cos-ink); background: var(--cos-white); box-shadow: 8px 8px 0 var(--cos-ink); }
.cos-review-type { margin: 0 0 .75rem; font-size: .75rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.cos-verdict { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: stretch; gap: 0; margin: .5rem 0 1rem; padding: 0; color: var(--cos-ink); border: 2px solid var(--cos-ink); background: var(--cos-paper-deep); }
.cos-verdict-decision { display: flex; align-items: center; gap: clamp(.85rem, 2vw, 1.35rem); min-width: 0; padding: 1rem 1.15rem; }
.cos-verdict-decision > span,
.cos-verdict-confidence > span { font-size: .84rem; font-weight: 900; letter-spacing: .12em; line-height: 1; text-transform: uppercase; }
.cos-verdict-decision > strong { font-family: var(--cos-display); font-size: clamp(2.35rem, 5vw, 3.45rem); line-height: .82; letter-spacing: .035em; text-transform: uppercase; }
.cos-verdict-link { color: inherit; text-decoration: none; }
.cos-verdict-link:hover,
.cos-verdict-link:focus-visible { color: var(--cos-action); text-decoration: underline; text-decoration-thickness: 4px; text-underline-offset: 5px; }
.cos-verdict-link > strong { font-family: var(--cos-display); font-size: clamp(2.35rem, 5vw, 3.45rem); line-height: .82; letter-spacing: .035em; text-transform: uppercase; }
.cos-verdict-confidence { display: flex; align-items: center; justify-content: center; gap: .75rem; min-width: 260px; padding: 1rem 1.15rem; border-left: 2px solid var(--cos-ink); background: rgb(255 255 255 / 24%); }
.cos-confidence-score { display: flex; align-items: baseline; gap: .28rem; }
.cos-confidence-score > strong { font-family: var(--cos-display); font-size: clamp(2.35rem, 5vw, 3.45rem); line-height: .82; letter-spacing: .035em; }
.cos-confidence-score > small { font-size: .84rem; font-weight: 850; }
.cos-verdict--cart { background: var(--cos-cart); }
.cos-verdict--conditional { background: var(--cos-conditional); }
.cos-verdict--skip { background: var(--cos-skip); }
.cos-disclosure,
.cos-affiliate-disclosure { margin-top: .85rem; padding-left: .9rem; border-left: 5px solid var(--cos-ink); font-size: .92rem; line-height: 1.55; }
.cos-summary-action { display: flex; align-items: center; gap: .8rem; margin-top: 1rem; }
.cos-summary-action small { color: var(--cos-muted); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.cos-summary-cta { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: .75rem 1.15rem; color: #fff; background: var(--cos-action); border: 2px solid var(--cos-ink); box-shadow: 4px 4px 0 var(--cos-ink); font-size: .9rem; font-weight: 950; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; transition: transform .15s ease, box-shadow .15s ease; }
.cos-summary-cta:hover,
.cos-summary-cta:focus-visible { color: #fff; transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--cos-ink); }
.cos-summary-cta--pending { cursor: not-allowed; opacity: .62; }
.cos-inline-cart-link { color: inherit; font-weight: 850; text-decoration-color: var(--cos-action); text-decoration-thickness: 3px; text-underline-offset: 3px; }
.cos-inline-cart-link:hover,
.cos-inline-cart-link:focus-visible { color: var(--cos-action); }
.cos-research-date { color: var(--cos-muted); font-size: .84rem; }
.cos-buy-box { margin-top: 2.5rem; padding: 1.4rem; color: var(--cos-paper); background: var(--cos-ink); border: var(--cos-rule) solid var(--cos-ink); }
.cos-buy-box .wp-element-button { color: var(--cos-ink); background: var(--cos-cart); }
.cos-archive-shell .wp-block-post-template { gap: 1.5rem; }
.cos-archive-shell .wp-block-post-template > li,
.wp-block-query .wp-block-post-template > li { padding: 1.25rem; border: var(--cos-rule) solid var(--cos-ink); background: var(--cos-white); box-shadow: 7px 7px 0 var(--cos-ink); }
.wp-block-post-title a { text-decoration: none; }

/* Footer */
.cos-site-footer { margin-top: 0; padding: 0 !important; color: var(--cos-paper); background: var(--cos-ink); border-top: var(--cos-rule) solid var(--cos-ink); }
.cos-footer-grid { width: 100%; gap: 0; }
.cos-footer-brand { flex: 1.2; margin: 0; padding: 28px var(--cos-pad); font-family: var(--cos-display); font-size: 28px; letter-spacing: .03em; }
.cos-footer-copy { flex: 1; align-self: stretch; display: flex; justify-content: center; gap: 8px; margin: 0; padding: 22px var(--cos-pad); color: #b9b7ad; border-left: 1px solid #55584f; font-size: 10px; line-height: 1.45; }
.cos-footer-copy p { margin: 0; }
.cos-footer-copy strong { color: var(--cos-paper); }

@media (max-width: 1100px) {
  .cos-performance-hero { grid-template-columns: 1.35fr .65fr; }
  .cos-hero-copy h1 { font-size: clamp(68px, 9vw, 98px); }
  .cos-feature-card { grid-template-columns: .7fr 1.3fr; }
  .cos-card-grid { grid-template-columns: repeat(3, 1fr); }
  .cos-verdict-card:nth-child(3n) { border-right: 0; }
  .cos-verdict-card:nth-child(-n+3) { border-bottom: var(--cos-rule) solid var(--cos-ink); }
}

@media (max-width: 820px) {
  .cos-utility { display: none; }
  .cos-site-header > .wp-block-group { flex-wrap: wrap !important; }
  .cos-brand { width: 100%; min-width: 100%; min-height: 76px; border-right: 0; border-bottom: var(--cos-rule) solid var(--cos-ink); }
  .cos-navigation { width: 100%; min-height: 52px; margin: 0; padding: 0 var(--cos-pad); }
  .cos-performance-hero,
  .cos-editorial-grid { grid-template-columns: 1fr; }
  .cos-method-panel { min-height: 250px; border-left: 0; }
  .cos-feature { border-right: 0; border-bottom: var(--cos-rule) solid var(--cos-ink); }
  .cos-feature-card { grid-template-columns: 1fr; }
  .cos-feature-graphic { min-height: 205px; border-right: 0; border-bottom: var(--cos-rule) solid var(--cos-ink); }
  .cos-verdict-key { grid-template-columns: 1fr; }
  .cos-verdict-key > div { border-right: 0; border-bottom: var(--cos-rule) solid var(--cos-ink); }
  .cos-verdict-key > div:last-child { border-bottom: 0; }
  .cos-latest-head { align-items: start; flex-direction: column; }
  .cos-latest-note { width: 100%; }
  .cos-footer-grid { display: grid !important; grid-template-columns: 1fr; }
  .cos-footer-copy { border-top: 1px solid #55584f; border-left: 0; }
}

@media (max-width: 560px) {
  :root { --cos-pad: 18px; }
  .cos-brand-mark { width: 38px; height: 38px; }
  .cos-hero-copy { padding-block: 38px; }
  .cos-hero-copy h1 { font-size: clamp(58px, 18vw, 82px); line-height: .82; }
  .cos-hero-copy h1 span { -webkit-text-stroke-width: 2px; }
  .cos-method-panel { padding: 24px; }
  .cos-feature { padding-block: 26px 34px; }
  .cos-feature-card { box-shadow: 6px 6px 0 var(--cos-ink); }
  .cos-feature-content { padding: 22px 20px; }
  .cos-feature-meta { align-items: stretch; flex-direction: column; }
  .cos-cta { justify-content: space-between; }
  .cos-lanes { padding-inline: var(--cos-pad); }
  .cos-card-grid { grid-template-columns: 1fr 1fr; }
  .cos-latest-note { grid-template-columns: 1fr; }
  .cos-latest-note-label { padding-block: 9px; }
  .cos-verdict-card,
  .cos-verdict-card:nth-child(3n) { border-right: var(--cos-rule) solid var(--cos-ink); border-bottom: var(--cos-rule) solid var(--cos-ink); }
  .cos-verdict-card:nth-child(even) { border-right: 0; }
  .cos-verdict-card:nth-last-child(-n+2) { border-bottom: 0; }
  .cos-verdict-card { min-height: 184px; }
  .cos-verdict { grid-template-columns: 1fr; }
  .cos-verdict-decision { justify-content: space-between; }
  .cos-verdict-confidence { justify-content: space-between; min-width: 0; border-top: 2px solid var(--cos-ink); border-left: 0; }
  .cos-summary-action { align-items: stretch; flex-direction: column; }
  .cos-summary-cta { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
