/* Sydney Home Brew — layout over the Organic design system.
   Every colour, radius and shadow comes from ds.css tokens. */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; line-height: 1.55; }
img, svg { max-width: 100%; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; border-radius: 4px; }

.skip { position: absolute; left: -9999px; }
.skip:focus { left: 12px; top: 12px; z-index: 99; background: var(--color-bg);
  padding: 10px 16px; border-radius: 999px; box-shadow: var(--shadow-md); }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 32px; }

/* ── Header ─────────────────────────────────────────────────────────── */
.site-head { position: sticky; top: 0; z-index: 20; background: var(--color-bg);
  border-bottom: 1px solid var(--color-divider); }
.head-row { max-width: 1180px; margin: 0 auto; padding: 12px 32px;
  display: flex; align-items: center; gap: 40px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand span { font-family: var(--font-heading); font-size: 21px; letter-spacing: -0.02em; }
.mainnav { margin-left: auto; }
.mainnav ul { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; }
.mainnav a { display: block; padding: 10px 16px; border-radius: 999px; text-decoration: none;
  font-size: 13.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.mainnav a:hover { background: var(--color-accent-200); }
.mainnav a[aria-current="page"] { background: var(--color-accent-200); }
.navtoggle, .burger, .drawer { display: none; }
.navitem { position: static; }

/* ── Mega dropdown ──────────────────────────────────────────────────────
   Full-width panel under the header. .site-head is position:sticky, which
   makes it the containing block, so left/right:0 spans the whole header. */
.mega { display: none; position: absolute; left: 0; right: 0; top: 100%;
  background: var(--color-neutral-100); border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider); box-shadow: var(--shadow-md); z-index: 30; }
.has-mega:hover > .mega,
.has-mega:focus-within > .mega { display: block; }

/* Invisible bridge across the header's bottom padding. Without it the pointer
   leaves the <li> before reaching the panel and :hover drops mid-travel. */
.mega::before { content: ""; position: absolute; left: 0; right: 0; top: -16px; height: 16px; }

.mega-inner { max-width: 1180px; margin: 0 auto; padding: 26px 32px 30px;
  display: grid; grid-template-columns: minmax(0, 260px) 1fr; gap: 40px; align-items: start; }
/* With a category photograph, the left column becomes image + blurb. */
.mega-inner.has-art { grid-template-columns: minmax(0, 200px) minmax(0, 240px) 1fr; gap: 32px; }
.mega-art { margin: 0; }
.mega-art img { border-radius: var(--radius-md); }
.mega-title { font-family: var(--font-heading); font-size: 20px; margin: 0 0 8px;
  text-transform: none; letter-spacing: 0; }
.mega-blurb { font-size: 13.5px; color: var(--color-neutral-700); margin: 0; line-height: 1.5; }
.mega-pills { display: flex; flex-wrap: wrap; gap: 10px; align-content: start; }
.mega-pills a { padding: 10px 18px; border-radius: 999px; background: var(--color-bg);
  border: 1px solid var(--color-neutral-300); text-decoration: none;
  font-size: 14px; font-weight: 600; letter-spacing: 0; text-transform: none; }
.mega-pills a:hover { background: var(--color-accent-200); border-color: var(--color-accent-300); }

/* ── Mobile drawer ──────────────────────────────────────────────────── */
.drawer { background: var(--color-neutral-100); border-top: 1px solid var(--color-divider);
  max-height: 74vh; overflow-y: auto; padding: 14px 24px 22px; }
.dgroup { padding: 12px 0; border-bottom: 1px solid var(--color-divider); }
.dgroup:last-child { border-bottom: 0; }
.dhead { display: flex; align-items: center; min-height: 44px;
  font-family: var(--font-heading); font-size: 21px; text-decoration: none; }
.dpills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.dpills a { display: flex; align-items: center; min-height: 44px; padding: 8px 16px;
  border-radius: 999px; background: var(--color-bg); border: 1px solid var(--color-neutral-300);
  text-decoration: none; font-size: 14px; font-weight: 600; }
.dpills a:hover { background: var(--color-accent-200); border-color: var(--color-accent-300); }

/* ── Hero ───────────────────────────────────────────────────────────── */
.hero { max-width: 1180px; margin: 0 auto; padding: 84px 32px 96px;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
.pill { display: inline-block; background: var(--color-accent-2-200); color: var(--color-accent-2-800);
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 999px; }
h1 { font-size: clamp(34px, 6vw, 62px); line-height: 1.04; margin: 22px 0; }
.lead { font-size: clamp(16px, 1.8vw, 18px); line-height: 1.6; color: var(--color-neutral-800);
  max-width: 34em; }
.fine { font-size: 13px; color: var(--color-neutral-600); max-width: 36em; }
.btnrow { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 0; }
.btn { display: inline-block; padding: 15px 30px; border-radius: 999px; font-size: 15px;
  font-weight: 700; text-decoration: none; }
.btn-primary { background: var(--color-accent-500); color: #fff; }
.btn-primary:hover { background: var(--color-accent-600); }
.btn-secondary { background: transparent; color: var(--color-accent-700);
  box-shadow: inset 0 0 0 1px var(--color-neutral-300); }
.btn-secondary:hover { background: var(--color-accent-100); }
.hero-art { position: relative; }
.hero-art .blob { position: absolute; width: 190px; height: 190px; border-radius: 50%;
  background: var(--color-accent-2-200); top: -46px; right: -32px; z-index: 0; }
.hero-art .slot { position: relative; z-index: 1; }

/* ── Image slots (awaiting supplied photography) ────────────────────── */
.slot { display: grid; place-items: center; border-radius: var(--radius-lg);
  background: repeating-linear-gradient(45deg,
    var(--color-neutral-200) 0 10px, var(--color-neutral-100) 10px 20px);
  border: 1px solid var(--color-neutral-300); overflow: hidden; }
.slot span { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 11.5px;
  color: var(--color-neutral-600); text-align: center; padding: 10px 14px; line-height: 1.4; }

/* ── Category photography ───────────────────────────────────────────────
   Editorial imagery, so this DOES take the design system's .washed
   treatment — unlike product shots, which stay crisp. */
.cimg { border-radius: var(--radius-lg); overflow: hidden; background: var(--color-neutral-200); }
.cimg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hubcard .cimg, .subcard .cimg { border-radius: var(--radius-md); }

/* Category hub hero */
.hubhero { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px;
  align-items: center; padding-top: 20px; padding-bottom: 8px; }
.hubhero h1 { margin-top: 8px; }

/* ── Product photography ────────────────────────────────────────────────
   Deliberately NOT .washed. The design system washes editorial photography
   so it recedes into the page; product shots are functional — people
   identify a product by its label, and desaturating it defeats that. */
.pimg { display: grid; place-items: center; border-radius: var(--radius-md);
  background: #fff; border: 1px solid var(--color-neutral-200); overflow: hidden; padding: 8px; }
.pimg img { width: 100%; height: 100%; object-fit: contain; display: block; }
.card .pimg { border-radius: var(--radius-md); }
.prod:hover .pimg { border-color: var(--color-accent-300); }

/* ── Bands & sections ───────────────────────────────────────────────── */
.band { background: var(--color-surface); padding: 88px 32px; margin: 0; }
.band > h2, .band > .bandlead, .band > .grid3 { max-width: 1180px; margin-inline: auto; }
h2 { font-size: clamp(27px, 4vw, 40px); margin: 0 0 12px; }
.bandlead { font-size: 16.5px; color: var(--color-neutral-800); max-width: 46em; margin: 0 0 40px; }
section.wrap { padding-top: 72px; padding-bottom: 8px; }

/* ── Grids ──────────────────────────────────────────────────────────── */
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid2x2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; margin-top: 28px; }

/* ── Cards ──────────────────────────────────────────────────────────── */
.card, .subcard, .hubcard { border-radius: var(--radius-lg); padding: 22px; display: block;
  text-decoration: none; }
.card { background: var(--color-bg); box-shadow: var(--shadow-sm); }
.card:hover { box-shadow: var(--shadow-md); }
.subcard, .hubcard { background: var(--color-neutral-100); border: 1px solid var(--color-neutral-200); }
.subcard:hover, .hubcard:hover { background: var(--color-bg);
  border-color: var(--color-accent-300); box-shadow: var(--shadow-md); }
.card h3, .subcard h2, .hubcard h3 { font-size: clamp(20px, 2.3vw, 25px); margin: 16px 0 10px; }
.card p, .subcard p, .hubcard p { font-size: 15px; color: var(--color-neutral-800); margin: 0 0 12px; }
.kicker { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--color-accent-700); margin: 14px 0 0 !important; }
.more, .cardlink { font-size: 14px; font-weight: 700; color: var(--color-accent-700);
  text-decoration: none; }

/* ── Product cards ──────────────────────────────────────────────────── */
.prod { display: block; background: var(--color-neutral-100); border: 1px solid var(--color-neutral-200);
  border-radius: var(--radius-md); padding: 18px; text-decoration: none; }
.prod:hover { background: var(--color-bg); border-color: var(--color-accent-300); }
.prod h3 { font-size: 17px; margin: 14px 0 6px; line-height: 1.25; }
.pnote { font-size: 13.5px; color: var(--color-neutral-700); margin: 0 0 10px; }
.out { font-size: 12.5px; font-weight: 700; color: var(--color-accent-700); }

/* ── Steps ──────────────────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 40px; }
.stepnum { width: 58px; height: 58px; border-radius: 50%; background: var(--color-accent-200);
  color: var(--color-accent-800); font-family: var(--font-heading); font-size: 24px;
  display: grid; place-items: center; }
.step h3 { font-size: 26px; margin: 18px 0 10px; }
.step p { font-size: 15.5px; color: var(--color-neutral-800); margin: 0 0 8px; }
.spec { font-size: 13px !important; color: var(--color-neutral-600) !important; }

/* ── Breadcrumbs, siblings, panel ───────────────────────────────────── */
.crumbs { font-size: 13px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--color-neutral-700); padding-top: 42px; }
.crumbs a { text-decoration: none; }
.crumbs .sep { margin: 0 8px; color: var(--color-neutral-400); }
.crumbs .crumb-cur { color: var(--color-accent-700); }
.subhero { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center;
  padding-top: 24px; padding-bottom: 8px; }
.subhero h1 { margin-top: 0; }
.sibrow { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.sibpill { padding: 10px 18px; border-radius: 999px; background: var(--color-bg);
  border: 1px solid var(--color-neutral-300); text-decoration: none; font-size: 14px; font-weight: 600; }
.sibpill:hover { background: var(--color-accent-200); border-color: var(--color-accent-300); }
.panel { background: var(--color-surface); border-radius: var(--radius-lg); padding: 52px 56px;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center;
  margin: 72px 0 0; }
.panel h2 { font-size: clamp(25px, 3.4vw, 34px); }
.panel p { font-size: 16px; color: var(--color-neutral-800); margin: 0; }
.cta-note { font-size: 13px !important; color: var(--color-neutral-600) !important; margin-top: 14px !important; }

/* ── Footer ─────────────────────────────────────────────────────────── */
.site-foot { background: var(--color-neutral-900); color: var(--color-neutral-300);
  margin-top: 96px; padding: 72px 32px 40px; }
.foot-grid { max-width: 1180px; margin: 0 auto; display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 44px; }
.fb-mark { display: flex; align-items: center; gap: 12px; color: var(--color-neutral-100); }
.fb-mark span { font-family: var(--font-heading); font-size: 20px; }
.site-foot p { font-size: 14px; margin: 16px 0 0; max-width: 32em; }
.site-foot a { color: var(--color-accent-300); }
.site-foot h3 { font-size: 15px; color: var(--color-neutral-100); margin: 0 0 14px;
  font-family: var(--font-body); font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }
.site-foot ul { list-style: none; margin: 0; padding: 0; }
.site-foot li { margin-bottom: 9px; }
.site-foot li a { font-size: 14px; text-decoration: none; color: var(--color-neutral-300); }
.site-foot li a:hover { color: var(--color-accent-300); }
.nap { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 12.5px !important;
  color: var(--color-neutral-500) !important; }
.foot-legal { max-width: 1180px; margin: 44px auto 0; padding-top: 22px;
  border-top: 1px solid var(--color-neutral-800); }
.foot-legal p { font-size: 12.5px; color: var(--color-neutral-500); max-width: none; }

/* ── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 1000px) {
  .grid4 { grid-template-columns: repeat(3, 1fr); }
  .hero, .subhero, .panel, .hubhero { grid-template-columns: 1fr; gap: 36px; }
  .mega-inner.has-art { grid-template-columns: minmax(0, 180px) 1fr; }
  .mega-inner.has-art .mega-pills { grid-column: 1 / -1; }
  .wrap, .head-row, .band { padding-left: 24px; padding-right: 24px; }
  .panel { padding: 34px 28px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .hero-art .blob { display: none; }
}
@media (max-width: 860px) {
  /* Desktop nav and its mega-dropdown are replaced by the drawer below 860px,
     per the handoff's breakpoint table. */
  .mainnav { display: none; }
  .mega { display: none !important; }
  .burger { display: grid; margin-left: auto; width: 48px; height: 48px; border-radius: 999px;
    border: 1px solid var(--color-neutral-300); place-content: center; gap: 5px; cursor: pointer;
    background: transparent; }
  .burger span { display: block; width: 22px; height: 2.75px; border-radius: 2px;
    background: var(--color-text); }
  .navtoggle:checked ~ .drawer { display: block; }
  .head-row { position: relative; gap: 16px; }
}
@media (max-width: 760px) {
  .grid3, .grid4 { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .grid2x2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .foot-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 44px; padding-bottom: 44px; }
  .band { padding-top: 44px; padding-bottom: 44px; }
  section.wrap { padding-top: 44px; }
  .btnrow .btn { flex: 1 1 100%; text-align: center; }
}
/* ── The Brew Log ───────────────────────────────────────────────────── */
.tagk { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--color-accent-700); margin: 0 0 8px; }
.meta { font-size: 13px; color: var(--color-neutral-600); margin: 10px 0 0; }
.meta-row { display: flex; align-items: center; gap: 12px; margin: 0 0 10px; }
.pill-sm { display: inline-block; background: var(--color-accent-2-200); color: var(--color-accent-2-800);
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px; }

.feature { background: var(--color-surface); border-radius: var(--radius-lg); padding: 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.feature-copy h2 { font-size: clamp(26px, 3.8vw, 38px); line-height: 1.1; margin: 0 0 14px; }
.feature-copy h2 a, .post h2 a { text-decoration: none; }
.feature-copy h2 a:hover, .post h2 a:hover { color: var(--color-accent-700); }
.feature-copy p { font-size: 16px; color: var(--color-neutral-800); margin: 0; }

.posts { row-gap: 40px; }
.post h2 { font-size: clamp(20px, 2.3vw, 23px); line-height: 1.15; margin: 4px 0 10px; }
.post p { font-size: 15px; color: var(--color-neutral-800); margin: 0; }
.post .slot { margin-bottom: 16px; }

/* ── Article ────────────────────────────────────────────────────────── */
.article { max-width: 760px; padding-top: 20px; }
.article h1 { font-size: clamp(31px, 5vw, 50px); margin: 8px 0 12px; }
.article > .slot { margin: 28px 0 8px; }
.prose { font-size: 17px; line-height: 1.72; color: var(--color-neutral-900); }
.prose h2 { font-size: clamp(23px, 3vw, 30px); margin: 44px 0 14px; }
.prose p { margin: 0 0 20px; }
.prose ul, .prose ol { margin: 0 0 22px; padding-left: 24px; }
.prose li { margin-bottom: 10px; }
.prose strong { font-weight: 700; }
.prose a { color: var(--color-accent-700); }

.postnav { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 64px;
  padding-top: 28px; border-top: 1px solid var(--color-divider); }
.pn { text-decoration: none; font-size: 16px; font-weight: 700; line-height: 1.3; }
.pn span { display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--color-neutral-600); margin-bottom: 6px; }
.pn:hover { color: var(--color-accent-700); }
.pn-next { text-align: right; grid-column: 2; }

.panel.dark { background: var(--color-accent-2-900); }
.panel.dark h2 { color: var(--color-neutral-100); }
.panel.dark p { color: var(--color-accent-2-200); }
.panel.dark .cta-note { color: var(--color-accent-2-300) !important; }

@media (max-width: 1000px) {
  .feature { grid-template-columns: 1fr; gap: 28px; padding: 24px; }
  .postnav { grid-template-columns: 1fr; }
  .pn-next { text-align: left; grid-column: 1; }
}
@media (max-width: 520px) {
  .grid3, .grid4 { grid-template-columns: 1fr; }
  .wrap, .head-row, .band, .site-foot { padding-left: 18px; padding-right: 18px; }
  .prose { font-size: 16px; }
}

/* ── Buying guidance ────────────────────────────────────────────────── */
.buying { padding-top: 64px; }
.buying .prose { max-width: 62ch; font-size: 16.5px; }
.buying .prose p { margin: 0 0 18px; }

/* ══════════════════════════════════════════════════════════════════════
   The Brew Shop branch sites
   ══════════════════════════════════════════════════════════════════════ */
.brand span em { font-style: normal; font-size: 0.72em; color: var(--color-accent-700);
  letter-spacing: 0.04em; }
.brand span { line-height: 1.05; }

.btn-shop { font-size: 16px; padding: 17px 34px; }

/* Store details card */
.storecard { background: var(--color-neutral-100); border: 1px solid var(--color-neutral-200);
  border-radius: var(--radius-lg); padding: 28px 30px; }
.storecard h2 { font-size: clamp(21px, 2.4vw, 26px); margin: 0 0 14px; }
.storecard .addr { font-size: 16px; line-height: 1.5; margin: 0 0 10px; }
.storecard .tel { font-size: 15px; margin: 0 0 4px; }
.storecard .tel a { color: var(--color-accent-700); font-weight: 700; text-decoration: none; }
.storecard .btn { margin-top: 16px; }

.hours { width: 100%; border-collapse: collapse; margin: 16px 0 4px; font-size: 14.5px; }
.hours th, .hours td { text-align: left; padding: 7px 0; border-bottom: 1px solid var(--color-divider); }
.hours th { font-weight: 600; color: var(--color-neutral-800); }
.hours td { text-align: right; font-variant-numeric: tabular-nums; }
.hours tr:last-child th, .hours tr:last-child td { border-bottom: 0; }
.hours tr.shut th, .hours tr.shut td { color: var(--color-neutral-500); }

/* Stock cards */
.stockcard { display: block; background: var(--color-bg); border-radius: var(--radius-lg);
  padding: 24px 26px; text-decoration: none; box-shadow: var(--shadow-sm); }
.stockcard:hover { box-shadow: var(--shadow-md); }
.stockcard h3 { font-size: clamp(20px, 2.2vw, 24px); margin: 0 0 10px; }
.stockcard p { font-size: 15px; color: var(--color-neutral-800); margin: 0 0 14px; }

.stockrows { display: grid; gap: 26px; }
.stockrow { background: var(--color-neutral-100); border: 1px solid var(--color-neutral-200);
  border-radius: var(--radius-lg); padding: 28px 30px; }
.stockrow h2 { font-size: clamp(22px, 2.6vw, 28px); margin: 0 0 10px; }
.stockrow p { font-size: 16px; color: var(--color-neutral-800); max-width: 58ch; }

/* Other stores */
.othergrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 20px; }
.othercard { display: block; background: var(--color-neutral-100);
  border: 1px solid var(--color-neutral-200); border-radius: var(--radius-md);
  padding: 22px 24px; text-decoration: none; }
.othercard:hover { background: var(--color-bg); border-color: var(--color-accent-300);
  box-shadow: var(--shadow-md); }
.othercard h3 { font-size: 20px; margin: 0 0 8px; }
.othercard p { font-size: 14.5px; color: var(--color-neutral-800); margin: 0; }
.othercard .tel { color: var(--color-accent-700); font-weight: 700; margin-top: 4px; }

.visitgrid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px;
  align-items: start; padding-top: 20px; }
.visitgrid .prose h2 { margin-top: 0; }
.visitgrid .prose h2 + p { margin-top: 0; }

@media (max-width: 1000px) {
  .visitgrid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 760px) {
  .othergrid { grid-template-columns: 1fr; }
}

/* ── Guide hero images ──────────────────────────────────────────────── */
.gimg { border-radius: var(--radius-lg); overflow: hidden; background: var(--color-neutral-200); }
.gimg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.post .gimg, .feature .gimg { border-radius: var(--radius-md); }

/* <picture> wrappers must fill their aspect-ratio box */
.gimg picture, .cimg picture, .pimg picture { display: block; width: 100%; height: 100%; }

/* ── Mega menu pill thumbnails ──────────────────────────────────────── */
.mega-pills a { display: inline-flex; align-items: center; gap: 10px; padding: 6px 16px 6px 6px; }
.mp-thumb { flex: 0 0 auto; width: 34px; height: 34px; border-radius: 999px;
  overflow: hidden; background: #fff; border: 1px solid var(--color-neutral-200);
  display: grid; place-items: center; }
.mp-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 3px; display: block; }
.mega-pills a:hover .mp-thumb { border-color: var(--color-accent-300); }

/* ── Product card CTA ───────────────────────────────────────────────────
   A span, not a <button> or <a>: the whole card is already an anchor and
   nesting interactive elements inside one is invalid HTML. */
.prod { display: flex; flex-direction: column; }
.prod .pnote { flex: 1 1 auto; }
.prod-btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  align-self: stretch; margin-top: auto; padding: 10px 16px; border-radius: 999px;
  background: var(--color-accent-500); color: #fff; font-size: 13.5px; font-weight: 700;
  text-align: center; }
.prod:hover .prod-btn { background: var(--color-accent-600); }

/* Contextual outbound keyword links */
.kwlink { color: var(--color-accent-700); text-decoration: underline;
  text-decoration-thickness: 1px; text-underline-offset: 2px; font-weight: 600; }
.kwlink:hover { color: var(--color-accent-600); }
.legal-strong { margin-top: 8px !important; color: var(--color-neutral-400) !important; }

