/* ============================================================================
   InsuranceMonster - rootSite design system
   Aesthetic: light, friendly, trustworthy consumer insurtech (Lemonade / Kin lane).
   White + soft green, rounded shapes, Nunito, cartoon monster "protection" art,
   generous whitespace, one strong green accent, honest trust signals.

   Palette pulled from the logo + app icon.
   All visual styling lives here (no inline style attributes per project rules).
   Structure:  1) Tokens  2) Base  3) Layout  4) Components  5) Sections  6) Responsive
   ============================================================================ */

/* 1) TOKENS ---------------------------------------------------------------- */
:root {
	/* Brand green (from app icon + logo) */
	--brand-700: #4a8a22;
	--brand-600: #5ea32e;
	--brand-500: #7cc242;   /* primary */
	--brand-300: #a6d977;
	--brand-100: #e2f2cf;
	--brand-50:  #f0f8e6;

	/* Ink / navy (from the wordmark) */
	--ink:       #17233a;
	--ink-soft:  #2b3a52;

	/* Shield blue (accent, from the artwork) */
	--blue-500:  #2f6fd0;
	--blue-50:   #eaf2fc;

	/* Neutrals */
	--n-0:   #ffffff;
	--n-25:  #fbfcfa;
	--n-50:  #f5f8f3;
	--n-100: #eef2ea;
	--n-200: #e3e9dd;
	--n-300: #cfd8c8;

	/* Semantic */
	--text:              #17233a;
	--text-muted:        #5c6a76;
	--text-invert:       #eef4ea;
	--text-invert-muted: #aebccb;
	--bg:                #ffffff;
	--bg-tint:           #f4f8f0;
	--bg-navy:           #14203a;
	--border:            #e7ede1;
	--border-strong:     #d7e0cd;
	--btn-ink:           #14261a;   /* dark text on green buttons */
	--danger-bg:  #fdecea; --danger-line: #f5c2bd; --danger-ink: #a12a1c;

	/* Soft blobs behind art */
	--blob-green: radial-gradient(closest-side, rgba(124,194,66,.28), rgba(124,194,66,0) 72%);

	/* Radius (friendly / rounded) */
	--r-sm: 10px; --r-md: 16px; --r-lg: 24px; --r-xl: 32px; --r-pill: 999px;

	/* Shadows (soft, slight green tint) */
	--shadow-sm:   0 1px 2px rgba(20,40,20,.05), 0 3px 10px rgba(20,40,20,.05);
	--shadow-md:   0 12px 34px rgba(20,40,20,.09);
	--shadow-lg:   0 28px 64px rgba(20,40,20,.14);
	--shadow-btn:  0 8px 20px rgba(124,194,66,.36);

	/* Spacing */
	--s1: 4px; --s2: 8px; --s3: 12px; --s4: 16px; --s5: 24px;
	--s6: 32px; --s7: 48px; --s8: 64px; --s9: 96px;

	/* Type - Nunito, rounded and friendly, to match the wordmark */
	--font: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--fs-display: clamp(2.5rem, 5.4vw, 4rem);
	--fs-h1: clamp(2rem, 4.2vw, 3rem);
	--fs-h2: clamp(1.6rem, 3.2vw, 2.3rem);
	--fs-h3: 1.28rem;
	--fs-lg: 1.18rem;
	--fs-sm: 0.92rem;
	--fs-xs: 0.8rem;

	--maxw: 1160px;
	--section-y: clamp(56px, 8vw, 104px);
}

/* 2) BASE ------------------------------------------------------------------ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
	margin: 0;
	font-family: var(--font);
	color: var(--text);
	background: var(--bg);
	line-height: 1.62;
	font-size: 1.02rem;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 { margin: 0 0 .5em; color: var(--text); font-weight: 800; line-height: 1.1; letter-spacing: -0.01em; }
h1 { font-size: var(--fs-h1); font-weight: 900; }
h2 { font-size: var(--fs-h2); font-weight: 800; }
h3 { font-size: var(--fs-h3); }
p  { margin: 0 0 1rem; }
a  { color: var(--brand-700); text-underline-offset: 2px; }
img { max-width: 100%; height: auto; display: block; }
strong { font-weight: 800; }

.skip-link { position: absolute; left: -999px; top: 0; background: var(--ink); color: #fff; padding: 10px 16px; z-index: 100; border-radius: 0 0 var(--r-sm) 0; }
.skip-link:focus { left: 8px; top: 8px; }

/* 3) LAYOUT ---------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
section { padding: var(--section-y) 0; }
.bg-tint, .bg-soft { background: var(--bg-tint); }
.bg-navy, .bg-dark { background: var(--bg-navy); color: var(--text-invert); }
.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-dark h1, .bg-dark h2, .bg-dark h3 { color: #fff; }
.bg-navy p, .bg-dark p { color: var(--text-invert-muted); }

.section-head { max-width: 58ch; margin-bottom: var(--s7); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { font-size: var(--fs-lg); color: var(--text-muted); margin: 0; }

.eyebrow { display: inline-block; color: var(--brand-700); font-weight: 800; text-transform: uppercase; letter-spacing: .1em; font-size: var(--fs-xs); margin-bottom: var(--s3); }
.bg-navy .eyebrow, .bg-dark .eyebrow { color: var(--brand-300); }
.grad-text { color: var(--brand-600); }
.lede { font-size: var(--fs-lg); color: var(--text-muted); }
.bg-navy .lede, .bg-dark .lede { color: var(--text-invert-muted); }

/* 4) COMPONENTS ------------------------------------------------------------ */

/* Buttons - pill, friendly, dark text on green */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	font-family: inherit; font-weight: 800; text-decoration: none; font-size: 1rem; line-height: 1;
	padding: 15px 28px; border-radius: var(--r-pill); border: 2px solid transparent;
	cursor: pointer; transition: transform .1s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
	white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--brand-500); color: var(--btn-ink); box-shadow: var(--shadow-btn); }
.btn-primary:hover { background: var(--brand-600); transform: translateY(-1px); box-shadow: 0 12px 26px rgba(124,194,66,.44); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--border-strong); }
.btn-ghost:hover { border-color: var(--brand-500); color: var(--brand-700); }
.btn-lg { padding: 18px 34px; font-size: 1.08rem; }
.btn-sm { padding: 11px 18px; font-size: .92rem; }
.bg-navy .btn-ghost, .bg-dark .btn-ghost { color: #fff; border-color: rgba(255,255,255,.3); }
.bg-navy .btn-ghost:hover, .bg-dark .btn-ghost:hover { border-color: var(--brand-300); color: var(--brand-300); }

/* Badges / pills / chips */
.badge { display: inline-flex; align-items: center; gap: 6px; font-size: var(--fs-xs); font-weight: 800; letter-spacing: .02em; padding: 6px 12px; border-radius: var(--r-pill); background: var(--brand-500); color: var(--btn-ink); }
.badge-soft { background: var(--brand-100); color: var(--brand-700); }
.badge-outline { background: transparent; color: var(--text); border: 1px solid var(--border-strong); }
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 8px 15px; border-radius: var(--r-pill); background: var(--n-0); color: var(--text); border: 1px solid var(--border); font-size: var(--fs-sm); font-weight: 700; box-shadow: var(--shadow-sm); }
.chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand-500); }

/* Header */
.site-header { --header-h: 112px; position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.9); backdrop-filter: saturate(140%) blur(12px); border-bottom: 1px solid var(--border); }
.site-header .wrap { display: flex; align-items: center; gap: var(--s5); height: var(--header-h); }
.brand { display: flex; align-items: center; }
.brand img { height: 96px; width: auto; }
.brand span { position: absolute; left: -999px; }
.main-nav { margin-left: auto; }
.main-nav ul { list-style: none; display: flex; gap: var(--s5); margin: 0; padding: 0; align-items: center; }
.main-nav a { text-decoration: none; color: var(--ink); font-weight: 700; font-size: .98rem; }
.main-nav a:hover { color: var(--brand-700); }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.6rem; cursor: pointer; margin-left: auto; color: var(--ink); }

/* Hero (light, Kin-style split) */
.hero { background: linear-gradient(180deg, var(--brand-50), #fff 76%); padding: clamp(48px, 6vw, 84px) 0 clamp(40px, 6vw, 72px); overflow: hidden; }
.hero .wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: var(--s7); align-items: center; }
.hero h1 { font-size: var(--fs-display); }
.hero p.lede { max-width: 42ch; }
.hero-actions { display: flex; gap: var(--s4); flex-wrap: wrap; margin-top: var(--s5); align-items: center; }
.hero-actions .phone { font-weight: 800; text-decoration: none; color: var(--ink); }
.hero-actions .phone:hover { color: var(--brand-700); }
.hero-fineprint { margin-top: var(--s4); font-size: var(--fs-sm); color: var(--text-muted); }
.hero-fineprint strong { color: var(--brand-700); }
.hero-art { position: relative; text-align: center; }
.hero-art::before { content: ""; position: absolute; inset: -6% -4%; background: var(--blob-green); z-index: 0; }
.hero-art img { position: relative; z-index: 1; margin: 0 auto; }

/* Quick-start (hero inline mini form, Kin-style) */
.quickstart { margin-top: var(--s5); background: var(--n-0); border: 1px solid var(--border); border-radius: var(--r-lg); padding: var(--s4); box-shadow: var(--shadow-md); display: grid; grid-template-columns: 1fr 1fr auto; gap: var(--s3); align-items: end; }
.quickstart .field { margin: 0; }
.quickstart .btn { width: 100%; }

/* Trust bar (light, honest signals) */
.trustbar { background: var(--n-0); border-bottom: 1px solid var(--border); }
.trustbar .wrap { display: flex; flex-wrap: wrap; gap: var(--s3) var(--s5); padding: var(--s5) 24px; justify-content: center; align-items: center; }
.trust-item { display: inline-flex; align-items: center; gap: 9px; font-size: var(--fs-sm); font-weight: 700; color: var(--text); }
.trust-item svg, .trust-item .tick { color: var(--brand-600); flex: none; }
.tick { display: inline-grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: var(--brand-100); color: var(--brand-700); font-weight: 900; font-size: .8rem; }
.stars { color: #f5a623; letter-spacing: 2px; font-size: 1rem; }

/* Stat tiles */
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s5); }
.stat { padding: var(--s6); border: 1px solid var(--border); border-radius: var(--r-lg); background: var(--n-0); box-shadow: var(--shadow-sm); text-align: center; }
.stat .num { font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 900; letter-spacing: -0.02em; line-height: 1; color: var(--brand-600); }
.stat .label { color: var(--text-muted); margin-top: var(--s3); font-size: var(--fs-sm); }
.bg-navy .stat, .bg-dark .stat { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); }
.bg-navy .stat .num { color: var(--brand-300); }
.bg-navy .stat .label { color: var(--text-invert-muted); }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s5); }
.card { position: relative; background: var(--n-0); border: 1px solid var(--border); border-radius: var(--r-xl); padding: var(--s6); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--border-strong); }
.card .card-art { height: 150px; display: grid; place-items: center; margin-bottom: var(--s4); border-radius: var(--r-lg); background: var(--brand-50); }
.card .card-art img { max-height: 128px; width: auto; }
.card-fire .card-art { background: #fff3e8; }
.card-auto .card-art { background: var(--blue-50); }
.card h3 { font-size: 1.32rem; }
.card ul { margin: 0 0 var(--s5); padding-left: 18px; color: var(--text-muted); }
.card ul li { margin-bottom: 5px; }
.card .card-link { margin-top: auto; font-weight: 800; text-decoration: none; color: var(--brand-700); }
.card .card-link:hover { color: var(--brand-600); }

/* Feature grid */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s6); }
.feature p { color: var(--text-muted); }
.bg-navy .feature p, .bg-dark .feature p { color: var(--text-invert-muted); }
.feature-icon { display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: var(--r-md); background: var(--brand-100); color: var(--brand-700); font-weight: 900; font-size: 1.3rem; margin-bottom: var(--s3); }

/* Perils strip - small round protection icons */
.perils { display: flex; flex-wrap: wrap; gap: var(--s5); justify-content: center; }
.peril { text-align: center; width: 132px; }
.peril .peril-img { width: 112px; height: 112px; margin: 0 auto var(--s2); border-radius: 50%; background: var(--brand-50); display: grid; place-items: center; overflow: hidden; }
.peril .peril-img img { width: 104px; height: auto; }
.peril span { font-size: var(--fs-sm); font-weight: 700; color: var(--text); }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s6); counter-reset: step; }
.step { padding-left: 62px; position: relative; }
.step::before { counter-increment: step; content: counter(step); position: absolute; left: 0; top: 0; width: 44px; height: 44px; background: var(--brand-500); color: var(--btn-ink); border-radius: var(--r-md); display: grid; place-items: center; font-weight: 900; font-size: 1.15rem; }

/* Surface panel */
.surface { background: var(--n-0); border: 1px solid var(--border); border-radius: var(--r-lg); padding: var(--s6); box-shadow: var(--shadow-sm); }

/* Quick answer (AEO box) */
.quick-answer { background: var(--brand-50); border-left: 4px solid var(--brand-500); border-radius: var(--r-md); padding: var(--s5); margin: 0 0 var(--s5); }
.quick-answer strong { color: var(--brand-700); }

/* Lead form */
.quote { background: linear-gradient(180deg, #fff, var(--brand-50)); }
.quote .wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: var(--s8); align-items: center; }
.lead-form { background: var(--n-0); border: 1px solid var(--border); border-radius: var(--r-xl); padding: var(--s6); box-shadow: var(--shadow-md); }
.lead-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s4); }
.field { margin-bottom: var(--s4); }
.field label { display: block; font-weight: 700; font-size: var(--fs-sm); margin-bottom: 6px; }
.field input, .field select, .field textarea { width: 100%; padding: 14px 16px; border: 1px solid var(--border-strong); border-radius: var(--r-md); font-size: 1rem; font-family: inherit; background: var(--n-0); color: var(--text); transition: border-color .15s ease, box-shadow .15s ease; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand-500); box-shadow: 0 0 0 3px rgba(124,194,66,.22); }
.field textarea { min-height: 96px; resize: vertical; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: var(--fs-xs); color: var(--text-muted); margin-top: var(--s3); }
.form-error { background: var(--danger-bg); border: 1px solid var(--danger-line); color: var(--danger-ink); padding: 12px 14px; border-radius: var(--r-md); margin-bottom: var(--s4); }

/* FAQ */
.faq details { border: 1px solid var(--border); border-radius: var(--r-md); margin-bottom: var(--s3); background: var(--n-0); overflow: hidden; }
.faq summary { cursor: pointer; font-weight: 800; padding: 18px 20px; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--brand-700); font-weight: 900; font-size: 1.2em; line-height: 1; }
.faq details[open] summary::after { content: "-"; }
.faq details > p { padding: 0 20px 18px; margin: 0; color: var(--text-muted); }

/* Footer */
.site-footer { background: var(--bg-navy); color: var(--text-invert-muted); padding: var(--s8) 0 var(--s6); }
.site-footer a { color: #d6e6c7; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--s6); }
.footer-grid img { margin-bottom: var(--s4); }
.footer-logo { display: inline-block; background: #fff; padding: 10px 16px; border-radius: var(--r-md); margin-bottom: var(--s4); }
.footer-logo img { margin: 0; display: block; }
.footer-grid h4 { color: #fff; font-size: .95rem; margin: 0 0 var(--s3); }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 8px; font-size: .93rem; }
.footer-legal { border-top: 1px solid rgba(255,255,255,.12); margin-top: var(--s7); padding-top: var(--s5); font-size: var(--fs-xs); color: #8397a6; }
.footer-legal p { margin: 0 0 8px; }

/* Content pages */
.page-hero { background: linear-gradient(180deg, var(--brand-50), #fff); padding: clamp(44px, 6vw, 80px) 0; border-bottom: 1px solid var(--border); }
.page-hero.has-art { overflow: hidden; }
.page-hero.has-art .wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: var(--s7); align-items: center; }
.page-hero-copy .lede { max-width: 48ch; }
.page-hero-art { position: relative; text-align: center; }
.page-hero-art::before { content: ""; position: absolute; inset: -8% -6%; background: var(--blob-green); z-index: 0; }
.page-hero-art img { position: relative; z-index: 1; margin: 0 auto; width: auto; max-width: 100%; max-height: 320px; }
.prose { max-width: 72ch; }
.prose h2 { margin-top: 1.9em; }
.prose ul { color: var(--text-muted); }

/* Utilities */
.mt { margin-top: var(--s6); }
.mt-lg { margin-top: var(--s7); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s6); }

/* 5) STYLE-GUIDE HELPERS --------------------------------------------------- */
.type-display { font-size: var(--fs-display); font-weight: 900; letter-spacing: -0.02em; line-height: 1.04; margin-bottom: var(--s5); }
.swatch-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: var(--s4); }
.swatch { border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; background: var(--n-0); }
.swatch .chip-color { height: 74px; }
.swatch .meta { padding: 10px 12px; font-size: var(--fs-xs); }
.swatch .meta code { color: var(--text-muted); }
.specimen { display: flex; flex-wrap: wrap; gap: var(--s4); align-items: center; }
.chip-color[data-c="brand-500"] { background: var(--brand-500); }
.chip-color[data-c="brand-600"] { background: var(--brand-600); }
.chip-color[data-c="brand-700"] { background: var(--brand-700); }
.chip-color[data-c="brand-100"] { background: var(--brand-100); }
.chip-color[data-c="brand-50"]  { background: var(--brand-50); }
.chip-color[data-c="ink"]       { background: var(--ink); }
.chip-color[data-c="blue-500"]  { background: var(--blue-500); }
.chip-color[data-c="n-200"]     { background: var(--n-200); }
.chip-color[data-c="n-50"]      { background: var(--n-50); }

/* 6) RESPONSIVE ------------------------------------------------------------ */
@media (max-width: 900px) {
	.main-nav { display: none; }
	.main-nav.open { display: block; position: absolute; top: var(--header-h); left: 0; right: 0; background: var(--n-0); border-bottom: 1px solid var(--border); padding: var(--s4) 24px; box-shadow: var(--shadow-md); }
	.main-nav.open ul { flex-direction: column; align-items: flex-start; gap: var(--s4); }
	.nav-toggle { display: block; }
	.site-header { --header-h: 76px; }
	.brand img { height: 56px; }
	.hero .wrap, .quote .wrap, .page-hero.has-art .wrap { grid-template-columns: 1fr; }
	.hero-art { order: -1; max-width: 460px; margin: 0 auto; }
	.page-hero-art { order: -1; max-width: 300px; margin: 0 auto; }
	.quickstart { grid-template-columns: 1fr; }
	.cards, .feature-grid, .steps, .stat-grid, .footer-grid, .grid-2 { grid-template-columns: 1fr; }
	.lead-form .row { grid-template-columns: 1fr; }
}
@media (min-width: 901px) and (max-width: 1080px) {
	.footer-grid { grid-template-columns: 1fr 1fr; }
}

/* 7) GENERATED CONTENT COMPONENTS ------------------------------------------
   Used by siteGen/build.js output: breadcrumbs, location hub, glossary,
   related-link blocks, chip rows. All tokens, no inline styles. */

/* Breadcrumbs */
.breadcrumbs { background: var(--n-25); border-bottom: 1px solid var(--border); font-size: var(--fs-sm); }
.breadcrumbs .wrap { padding-top: var(--s3); padding-bottom: var(--s3); }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px 8px; margin: 0; padding: 0; align-items: center; }
.breadcrumbs li { display: inline-flex; align-items: center; gap: 8px; color: var(--text-muted); }
.breadcrumbs li:not(:last-child)::after { content: "/"; color: var(--border-strong); margin-left: 8px; }
.breadcrumbs a { color: var(--brand-700); text-decoration: none; font-weight: 700; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs li[aria-current="page"] { color: var(--text); font-weight: 700; }

/* Link lists (footer-style lists inside prose/hubs) */
.link-list { list-style: none; margin: 0 0 var(--s4); padding: 0; }
.link-list li { margin-bottom: 8px; }
.link-list a { color: var(--brand-700); font-weight: 700; text-decoration: none; }
.link-list a:hover { text-decoration: underline; }

/* Chip rows (city chips, community lists) */
.chip-row { display: flex; flex-wrap: wrap; gap: var(--s3); margin: 0 0 var(--s4); }
.chip-row .chip { text-decoration: none; transition: border-color .15s ease, transform .1s ease, box-shadow .18s ease; }
.chip-row .chip:hover { border-color: var(--brand-500); color: var(--brand-700); transform: translateY(-1px); box-shadow: var(--shadow-md); }

/* California hub - region grid of county links */
.region-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s6); }
.region { background: var(--n-0); border: 1px solid var(--border); border-radius: var(--r-lg); padding: var(--s5); box-shadow: var(--shadow-sm); }
.region h3 { font-size: 1.08rem; color: var(--brand-700); margin-bottom: var(--s3); }
.region .link-list { margin: 0; }

/* Related block (end of content pages) */
.related { margin-top: var(--s7); padding-top: var(--s5); border-top: 1px solid var(--border); }
.related h2 { font-size: 1.2rem; margin-top: 0; }

/* Muted inline note (e.g. county seat next to a link) */
.muted { color: var(--text-muted); font-weight: 400; font-size: var(--fs-sm); }

/* Glossary */
.glossary { margin: 0; }
.glossary .term { padding: var(--s4) 0; border-bottom: 1px solid var(--border); }
.glossary dt { font-weight: 800; color: var(--ink); margin-bottom: 4px; }
.glossary dd { margin: 0; color: var(--text-muted); }

/* Guides hub cards - link the card heading, not just an image */
.cards .card h3 { margin-bottom: var(--s2); }
.cards .card h3 a { text-decoration: none; color: var(--ink); }
.cards .card h3 a:hover { color: var(--brand-700); }

@media (max-width: 900px) {
	.region-grid { grid-template-columns: 1fr; }
}
@media (min-width: 901px) and (max-width: 1080px) {
	.region-grid { grid-template-columns: 1fr 1fr; }
}
