/* Valet — visual design pass (1960s Mid-Century Modern: "Palm Springs / Space Age" palette).
   Replaces the deliberately-minimal Prompt-14 stylesheet, which named this exact exercise as a
   future replacement. CSS only — no markup was changed, so page content is unaffected.

   Self-hosted only, on purpose: the site's Content-Security-Policy is script-src/style-src/
   font-src 'self' with no external origin at all (Security/SecurityHeadersMiddleware.cs), and
   StaticAssetAuditTests fails on any external <link>/<script>/<img> tag. So typography leans on
   system geometric-sans stacks (Century Gothic / Futura, where installed) rather than a webfont
   CDN — no new external requests, no CSP change, no new test failures. If pixel-exact web fonts
   are wanted later, self-hosting the actual font files under wwwroot/fonts/ is the correct next
   step, not loosening the CSP. */

:root {
  /* The five given colors, at the exact hex values given, in their given roles - except --linen
     itself, lightened toward white at the user's request (was the exact given #f6f0e4; that
     value moved to --linen-2, the zebra/card surface tone, so the site still has an off-white
     step below the near-white body background rather than losing it). */
  --linen: #fbfaf6;    /* Off-White Linen, lightened - body background */
  --navy: #2a3a44;     /* Slate Navy - typography & dark sections */
  --seafoam: #7fc7b6;  /* Atomic Seafoam - primary surface accent */
  --coral: #e06b4a;    /* Coral Red - action buttons & links */
  --maize: #d6b33e;    /* Sunny Maize - focal pop & tags */
  --linen-2: #f6f0e4;  /* The original, exact Off-White Linen - now the zebra/card surface tone */

  /* Coral Red, checked against WCAG 2 contrast math, sits at a middle luminance that clears
     4.5:1 against neither linen nor navy (2.9:1 and 3.6:1 respectively) - too light against
     linen for text, too dark against navy. That's fine for large/bold surfaces (buttons, below,
     are bumped in size specifically so navy-on-coral legitimately clears the 3:1 *large*-text
     threshold), but body-sized link text and the alert banner need a darker derivative of the
     same hue to read reliably: --coral-deep (~5.3:1 on linen). Seafoam and maize both clear
     4.5:1+ against navy text, so they only ever need their one given shade. */
  --coral-deep: #a5462d;

  --display-font: "Century Gothic", "Futura", "Trebuchet MS", "Segoe UI", sans-serif;
  --body-font: "Century Gothic", "Futura", "Segoe UI", Verdana, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  background: var(--navy);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--linen);
  color: var(--navy);
  font-family: var(--body-font);
  font-size: 17px;
  line-height: 1.6;
  /* #approval/#data's full-bleed breakout (margin: calc(50% - 50vw)) computes 100vw including
     the vertical scrollbar's own width, which overshoots the visible viewport by a few px on any
     page tall enough to scroll - this clips that overshoot instead of showing a horizontal
     scrollbar for it. */
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: var(--display-font);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.1rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.4rem, 2.6vw, 2rem); margin-top: 2.2em; }
h3 { font-size: 1.15rem; }
section > h2:first-child { margin-top: 0; }

p { margin: 0 0 1.1em; max-width: 68ch; }

a {
  color: var(--coral-deep);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
a:hover { color: var(--navy); }

a:focus-visible, button:focus-visible, input:focus-visible,
summary:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 2px;
}

::selection { background: var(--maize); color: var(--navy); }

/* ===== Header ===== */
header {
  background: var(--linen);
  border-bottom: 3px solid var(--navy);
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.1rem clamp(1.25rem, 4vw, 3rem);
}

header > a {
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  color: var(--navy);
}
header > a:hover { color: var(--coral-deep); }

header nav ul, footer nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
}

header nav a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 500;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}
header nav a:hover { border-color: var(--navy); color: var(--navy); }

/* Primary CTA treatment for the nav's Download link only (its fixed 4th position in the
   Primary nav's five items) - NOT every link whose href is /download: body copy elsewhere
   (e.g. Help's "Download the installer from the Download page") references the same URL inline,
   mid-sentence, where a pill button would look broken rather than like a call to action.
   font-size is bumped to 1.2rem so this qualifies as WCAG "large text" (>=18.66px bold) - navy
   on the exact Coral Red only reaches 3.6:1, which clears the large-text 3:1 minimum but not
   the 4.5:1 normal-text one. */
header nav ul li:nth-child(4) a {
  display: inline-flex;
  align-items: center;
  padding: 0.5em 1.3em;
  background: var(--coral);
  color: var(--navy);
  border: 2px solid var(--navy);
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
}
header nav ul li:nth-child(4) a:hover { background: var(--linen); color: var(--navy); }

/* ===== Footer ===== */
footer {
  background: var(--navy);
  color: var(--linen);
  padding: 2.5rem clamp(1.25rem, 4vw, 3rem);
  margin-top: 4rem;
}
footer a { color: var(--linen); }
footer a:hover { color: var(--seafoam); }
footer nav a { text-decoration: none; border-bottom: 2px solid transparent; }
footer nav a:hover { border-color: var(--seafoam); color: var(--linen); }
footer p { margin: 0.4em 0 0; opacity: 0.75; max-width: none; }
footer p a { opacity: 1; }

/* ===== Main content column ===== */
main {
  max-width: 44rem;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.25rem, 4vw, 3rem) 5rem;
}

/* Deletion-pending banner (ViewData-driven alert in _Layout.cshtml). --coral-deep, not the exact
   Coral Red - linen-on-coral only reaches ~2.9:1 (see the --coral-deep comment in :root);
   linen-on-coral-deep reaches ~5.3:1. */
main > div[role="alert"] {
  background: var(--coral-deep);
  color: var(--linen);
  border: 2px solid var(--navy);
  border-radius: 12px;
  padding: 1rem 1.4rem;
  margin-bottom: 2rem;
}
main > div[role="alert"] p { margin: 0; max-width: none; }
main > div[role="alert"] a { color: var(--linen); text-decoration: underline; }

/* ===== Content lists (safety list, news list, plugin lists, etc.) ===== */
main ul, main ol {
  list-style: none;
  margin: 0 0 1.4em;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7em;
}
main ul > li, main ol > li {
  position: relative;
  padding-left: 1.7em;
  max-width: 68ch;
}
main ul > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.6em;
  height: 0.6em;
  border-radius: 3px;
  border: 2px solid var(--navy);
  background: var(--maize);
}
main ol { counter-reset: valet-ol; }
main ol > li { counter-increment: valet-ol; padding-left: 2.3em; }
main ol > li::before {
  content: counter(valet-ol);
  position: absolute;
  left: 0;
  top: 0;
  width: 1.6em;
  height: 1.6em;
  border-radius: 50%;
  border: 2px solid var(--navy);
  background: var(--seafoam);
  color: var(--navy);
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 0.85em;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Filter-by-status nav (Plugins index) reads as chips, not a bulleted list. */
main nav[aria-label="Filter by status"] ul {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.6em;
  margin-bottom: 1.6em;
}
main nav[aria-label="Filter by status"] li { padding-left: 0; }
main nav[aria-label="Filter by status"] li::before { content: none; }
main nav[aria-label="Filter by status"] a {
  display: inline-flex;
  padding: 0.4em 1em;
  border: 2px solid var(--navy);
  border-radius: 20px;
  text-decoration: none;
  color: var(--navy);
  font-weight: 500;
}
main nav[aria-label="Filter by status"] a:hover { background: var(--maize); }

/* ===== How it works: full-bleed color blocks on the two load-bearing sections =====
   #approval gets the palette's "primary surface accent" (seafoam); #data gets the "dark
   sections" role (navy) - a genuinely dark full-bleed band for the section that's making the
   privacy claim, with the two sections reading as a deliberate light/dark pair rather than two
   same-weight color blocks. */
#approval, #data {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 3.5rem clamp(1.5rem, 6vw, 5rem);
  border-top: 3px solid var(--navy);
  border-bottom: 3px solid var(--navy);
}
#approval { background: var(--seafoam); color: var(--navy); }
#data { background: var(--navy); color: var(--linen); }
#approval > *, #data > * {
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
}
/* #approval (light seafoam fill): the default link colors are both too dark/mid-toned to read
   as distinct from the navy body text there, so links just match the surrounding text. #data
   (dark navy fill): default link colors are both too dark to read against navy at all - maize
   and seafoam both clear 4.5:1+ against navy and read as clearly-different "link" color. */
#approval a, #approval a:hover { color: var(--navy); }
#data a { color: var(--maize); }
#data a:hover { color: var(--seafoam); }

/* Gentle zebra rhythm across the rest of How it works' sections, without the full-bleed treatment. */
section:not(#approval):not(#data) {
  background: var(--linen-2);
  border-radius: 16px;
  padding: 1.8rem 2rem;
  margin: 0 0 1.4em;
}
section:not(#approval):not(#data):nth-of-type(odd) { background: var(--linen); }

/* ===== Buttons and form controls (site-wide) =====
   font-size bumped to 1.2rem for the same large-text reason as the nav CTA button above. */
button, input[type="submit"], input[type="button"], .btn {
  font-family: var(--display-font);
  font-weight: 700;
  background: var(--coral);
  color: var(--navy);
  border: 2px solid var(--navy);
  border-radius: 30px;
  padding: 0.6em 1.4em;
  cursor: pointer;
  font-size: 1.2rem;
}
button:hover, input[type="submit"]:hover, input[type="button"]:hover, .btn:hover {
  background: var(--linen);
}

input[type="text"], input[type="email"], input[type="password"], input[type="url"],
input[type="tel"], input[type="search"], input[type="number"], textarea, select {
  font-family: var(--body-font);
  font-size: 1rem;
  border: 2px solid var(--navy);
  border-radius: 8px;
  padding: 0.6em 0.8em;
  background: var(--linen);
  color: var(--navy);
  width: 100%;
  max-width: 30rem;
}
input[type="checkbox"], input[type="radio"] {
  width: auto;
  accent-color: var(--seafoam);
}
label { font-weight: 500; display: block; margin-bottom: 0.3em; }

/* ===== Checkbox/radio groups (.form-check - Bootstrap-era markup still used by Account/Settings
   and its sibling forms) =====
   The bare `label` rule just above sets display:block for ordinary field labels (the text
   sitting above an input) - inside a .form-check that same rule broke the checkbox+label row,
   dropping the label onto its own line below the checkbox instead of beside it. */
.form-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.form-check-label {
  display: inline;
  font-weight: 400;
  margin-bottom: 0;
}

/* ===== Bootstrap-era spacing utilities (.mb-*/.mt-*), used throughout the account/auth/feedback
   forms (class="mb-3" on each field wrapper, class="mt-2"/"mb-2" on buttons and secondary forms)
   ===== Previously inert with no Bootstrap stylesheet ever loaded, so buttons and fields sat
   flush against whatever came before them. Bootstrap's own 0.25rem-step scale, so the existing
   markup's spacing intent (already written into every form on the site) takes effect as-is,
   without touching any .cshtml file. */
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }

/* ===== Download page: "coming soon" callout (Releases, when there are none yet) ===== */
.coming-soon-box {
  display: inline-block;
  background: var(--maize);
  color: var(--navy);
  border: 2px solid var(--navy);
  border-radius: 12px;
  padding: 1em 1.4em;
  font-weight: 700;
  max-width: none;
}

/* ===== FAQ / troubleshooting disclosures (Help page) ===== */
details {
  border: 2px solid var(--navy);
  border-radius: 12px;
  padding: 1em 1.3em;
  margin-bottom: 1em;
  background: var(--linen-2);
}
summary {
  font-family: var(--display-font);
  font-weight: 700;
  cursor: pointer;
}
details[open] summary { margin-bottom: 0.6em; }

/* ===== Legal field lists (About page) ===== */
dl {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0.5em 1.5em;
  align-items: baseline;
}
dt { font-weight: 700; font-family: var(--display-font); }
dd { margin: 0; }

/* ===== Approval-surface placeholder figure (Home page) ===== */
figure { margin: 2.5em 0; }
figure [role="img"] {
  background: var(--linen-2);
  border: 3px dashed var(--navy);
  border-radius: 16px;
  padding: 3rem 1.5rem;
  text-align: center;
  font-style: italic;
  opacity: 0.75;
}
figcaption { font-size: 0.85em; opacity: 0.65; margin-top: 0.5em; }

/* Registration honeypot field (RegisterModel.InputModel.Website) - hidden with CSS, not
   type="hidden", so simple bots that only skip hidden inputs still fall for it. A CSS class
   rather than an inline style= attribute, so the Content-Security-Policy's style-src can stay
   'self' with no 'unsafe-inline'. */
.visually-hidden-honeypot {
  position: absolute;
  left: -9999px;
}

/* ===== Home page redesign ("Atomic hero", design 1A) =====
   Scoped entirely under .home (Index.cshtml only). Every band is a <div>, not a <section>, so
   the global "section:not(#approval):not(#data)" zebra rule never applies here - no override
   needed. Each band is two nested elements: the outer div carries the full-bleed background/
   border (same margin: calc(50% - 50vw) breakout as #approval/#data above) and has no padding
   of its own; the inner "-inner"/"-card" div carries the centered max-width content, padding,
   and any grid/flex layout - the two responsibilities can't live on one element, since the
   breakout's explicit left/right margins and a max-width's auto-centering margins can't both
   apply to the same box. */

.home {
  /* Cancels main's own top/bottom padding so the hero touches the header and the news band
     touches the footer's own margin-top gap directly - left/right padding on main is left
     alone, since every band re-centers its own content independently via its "-inner" wrapper. */
  margin-top: calc(clamp(2rem, 5vw, 4rem) * -1);
  margin-bottom: -5rem;
}

.home-hero,
.home-capabilities,
.home-safety,
.home-worked-example,
.home-requirements-band,
.home-news {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* ---------- 1. Hero ---------- */
.home-hero {
  background: var(--navy);
  color: var(--linen);
  border-bottom: 3px solid var(--navy);
  position: relative;
  overflow: hidden;
}
.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 22%, rgba(214, 179, 62, .5) 0 3px, transparent 4px),
    radial-gradient(circle at 62% 8%, rgba(127, 199, 182, .45) 0 2px, transparent 3px),
    radial-gradient(circle at 84% 62%, rgba(224, 107, 74, .4) 0 4px, transparent 5px);
  background-size: 160px 140px;
  opacity: .9;
  pointer-events: none;
}
.home-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 60rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 40px;
  align-items: center;
  padding: 56px clamp(1.25rem, 4vw, 2.5rem);
}
.home-status-pill {
  display: inline-block;
  background: var(--maize);
  color: var(--navy);
  border: 2px solid var(--linen);
  border-radius: 20px;
  padding: .25em 1em;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 20px;
}
.home-hero-content h1 {
  font-size: 3.2rem;
  line-height: 1.05;
  margin-bottom: .5em;
  color: var(--linen);
}
.home-hero-lead {
  font-size: 1.2rem;
  max-width: 34ch;
  color: var(--linen);
}
.home-hero-approval {
  color: var(--seafoam);
  max-width: 40ch;
  margin-bottom: 1.6em;
}
.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  max-width: none;
  margin: 0;
}
.home-btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: 30px;
  padding: .55em 1.4em;
  border: 2px solid var(--linen);
  text-decoration: none;
}
.home-btn-primary { background: var(--coral); color: var(--navy); }
.home-btn-primary:hover { background: var(--linen); color: var(--navy); }
.home-btn-secondary { background: transparent; color: var(--linen); }
.home-btn-secondary:hover { background: var(--linen); color: var(--navy); }
.home-hero-image img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
  border: 3px solid var(--linen);
  border-radius: 16px;
  box-shadow: 14px 14px 0 var(--seafoam);
}

/* ---------- 2. Capabilities strip ---------- */
.home-capabilities {
  background: var(--seafoam);
  border-bottom: 3px solid var(--navy);
}
.home-capabilities-inner {
  max-width: 60rem;
  margin: 0 auto;
  padding: 26px clamp(1.25rem, 4vw, 2.5rem);
}
.home-capabilities-inner p {
  color: var(--navy);
  font-weight: 500;
  max-width: 68ch;
  margin: 0;
}

/* ---------- 3. Safety band ---------- */
.home-safety {
  background: var(--linen);
  position: relative;
}
.home-safety::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, transparent 0 13px, rgba(42, 58, 68, .07) 14px 15.5px, transparent 16.5px);
  background-size: 52px 52px;
  -webkit-mask-image: linear-gradient(90deg, #000 0, rgba(0, 0, 0, .35) 18%, rgba(0, 0, 0, .35) 82%, #000 100%);
  mask-image: linear-gradient(90deg, #000 0, rgba(0, 0, 0, .35) 18%, rgba(0, 0, 0, .35) 82%, #000 100%);
  pointer-events: none;
}
.home-safety-inner {
  position: relative;
  z-index: 1;
  max-width: 60rem;
  margin: 0 auto;
  padding: 48px clamp(1.25rem, 4vw, 2.5rem);
}
.home-safety-inner h2 {
  display: inline-block;
  background: var(--linen);
  padding: .1em .3em;
  margin-left: -.3em;
  border-radius: 8px;
  margin-top: 0;
  margin-bottom: 1.2em;
  font-size: 2rem;
}
.home-safety-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.home-safety-card {
  background: var(--linen-2);
  border: 2px solid var(--navy);
  border-radius: 16px;
  padding: 20px 22px;
}
.home-safety-marker {
  display: block;
  width: 14px;
  height: 14px;
  border: 2px solid var(--navy);
  border-radius: 3px;
  margin-bottom: 12px;
}
.home-safety-marker-maize { background: var(--maize); }
.home-safety-marker-seafoam { background: var(--seafoam); }
.home-safety-marker-coral { background: var(--coral); }
.home-safety-marker-navy { background: var(--navy); }
.home-safety-title {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--navy);
  text-decoration: none;
}
.home-safety-title:hover { color: var(--coral-deep); }
.home-safety-body { color: var(--navy); }
.home-safety-closing {
  margin-top: 1.4em;
  max-width: 68ch;
  background: var(--linen);
  border-radius: 12px;
  padding: 14px 18px;
  margin-left: -18px;
}

/* ---------- 4. Worked example band ---------- */
.home-worked-example {
  background: var(--linen-2);
  border-top: 3px solid var(--navy);
  border-bottom: 3px solid var(--navy);
}
.home-worked-example-inner {
  max-width: 60rem;
  margin: 0 auto;
  padding: 48px clamp(1.25rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: 400px minmax(0, 1fr);
  gap: 36px;
  align-items: center;
}
.home-worked-example-image img {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: cover;
  border: 3px solid var(--navy);
  border-radius: 16px;
  box-shadow: 12px 12px 0 var(--maize);
}
.home-worked-example-content h2 {
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: .6em;
}

/* ---------- 5. Placeholder + requirements band ---------- */
.home-requirements-band {
  background: var(--linen);
}
.home-requirements-inner {
  max-width: 64rem;
  margin: 0 auto;
  padding: 48px clamp(1.25rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 36px;
  align-items: start;
}
.home-requirements-inner figure { margin: 0; }
.home-requirements-card {
  background: var(--navy);
  color: var(--linen);
  border-radius: 16px;
  padding: 22px 24px;
}
.home-requirements-card h2 {
  font-size: 1.3rem;
  margin: 0 0 .6em;
  color: var(--linen);
}
.home-requirements-card p {
  font-size: 15px;
  margin: 0;
  max-width: none;
  color: var(--linen);
}

/* ---------- 6. News band ---------- */
.home-news {
  background: var(--maize);
  border-top: 3px solid var(--navy);
  position: relative;
  overflow: hidden;
}
.home-news::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(42, 58, 68, .09) 0 14px, transparent 14px 28px);
  pointer-events: none;
}
.home-news-inner {
  position: relative;
  z-index: 1;
  max-width: 60rem;
  margin: 0 auto;
  padding: 44px clamp(1.25rem, 4vw, 2.5rem);
}
.home-news-inner h2 {
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 1em;
  color: var(--navy);
}
.home-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.home-news-card {
  background: var(--linen);
  border: 2px solid var(--navy);
  border-radius: 14px;
  padding: 18px;
}
.home-news-date {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  opacity: .7;
  margin-bottom: 8px;
  color: var(--navy);
}
.home-news-title {
  font-weight: 700;
  color: var(--coral-deep);
  text-decoration: none;
}
.home-news-title:hover { text-decoration: underline; }
.home-news-see-all { margin-top: 1.2em; }
.home-news-see-all a { color: var(--navy); }

/* ---------- Responsive (<= 52rem / ~830px) ---------- */
@media (max-width: 52rem) {
  .home-hero-inner,
  .home-worked-example-inner,
  .home-requirements-inner,
  .home-safety-grid,
  .home-news-grid {
    grid-template-columns: 1fr;
  }
  .home-hero-image img {
    box-shadow: 8px 8px 0 var(--seafoam);
  }
}
