/* Styling voor de losse blokken: prijscalculator en wervingssectie.
 * Huisstijl Wijnsma (groen/oranje, Montserrat).
 */
.wd-calc,
.wd-werving {
	--wd-primary: #25a283;
	--wd-primary-dark: #368b71;
	--wd-accent: #ffa62b;
	--wd-bg: #ffffff;
	--wd-soft: #f4f4f4;
	--wd-border: #e6e8ea;
	--wd-text: #444444;    /* body-tekst (awb-color7) */
	--wd-muted: #666666;   /* secundaire tekst (awb-color6) */
	--wd-heading: "urw-din", Arial, Helvetica, sans-serif; /* koppen = URW DIN */
	--wd-color8: #222222;
	font-family: "Montserrat", Arial, Helvetica, sans-serif;
	color: var(--wd-text);
	line-height: 1.72;       /* body-regelhoogte als de site */
	letter-spacing: 0.015em; /* body-tracking als de site */
	box-sizing: border-box;
}

/* Alle koppen exact als wijnsmakozijnen.nl: URW DIN, 700, UPPERCASE,
 * letter-spacing -0.01em, regelhoogte 1.3, donker (#222). */
.wd-calc h1, .wd-calc h2, .wd-calc h3, .wd-calc h4, .wd-calc h5, .wd-calc h6,
.wd-werving h1, .wd-werving h2, .wd-werving h3, .wd-werving h4, .wd-werving h5, .wd-werving h6 {
	font-family: var(--wd-heading);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: -0.01em;
	line-height: 1.3;
	color: var(--wd-color8);
}

.wd-calc *,
.wd-werving * {
	box-sizing: border-box;
}

/* Gedeelde knop — exact als wijnsmakozijnen.nl (Avada flat-button) */
.wd-btn {
	display: inline-block;
	padding: 12px 23px;
	border-radius: 6px;
	font-family: "urw-din", "Montserrat", sans-serif;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	border: 1px solid var(--wd-primary);
	transition: background-color .3s ease, border-color .3s ease, color .3s ease;
}

.wd-btn-primary {
	background: var(--wd-primary);
	border-color: var(--wd-primary);
	color: #fff;
}

/* Hover als de site: groen blijft, rand wordt donker (#3c3c3b). */
.wd-btn-primary:hover {
	background: var(--wd-primary);
	border-color: #3c3c3b;
	color: #fff;
}

/* ---------------- Calculator ---------------- */
.wd-calc {
	width: 100%;
	max-width: 100%; /* volgt de breedte van de site-container */
	margin: 0 auto;
	padding: 28px;
	background: var(--wd-bg);
	border: 1px solid var(--wd-border);
	border-radius: 14px;
	box-shadow: 0 12px 34px rgba(37, 162, 131, 0.1);
}

.wd-calc-title {
	margin: 0 0 4px;
	font-family: var(--wd-heading);
	color: var(--wd-primary);
}

.wd-calc-intro {
	margin: 0 0 20px;
	color: var(--wd-muted);
}

.wd-calc-form {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.wd-calc-form label {
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--wd-text);
}

.wd-calc-form select,
.wd-calc-form input {
	padding: 11px 12px;
	border: 1px solid var(--wd-border);
	border-radius: 8px;
	font-size: 0.95rem;
	font-family: inherit;
	background: #fff;
}

.wd-calc-result {
	margin: 24px 0 8px;
	padding: 20px;
	background: var(--wd-soft);
	border-radius: 10px;
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 8px;
}

.wd-calc-label {
	font-weight: 600;
}

.wd-calc-bedrag {
	font-family: var(--wd-heading);
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--wd-primary);
}

.wd-calc-disclaimer {
	font-size: 0.78rem;
	color: var(--wd-muted);
	margin: 0 0 18px;
}

/* ---------------- Wervingssectie ---------------- */
.wd-werving {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 32px;
	width: 100%;
	max-width: 100%; /* volgt de breedte van de site-container */
	margin: 0 auto;
	padding: 36px;
	background: var(--wd-primary);
	border-radius: 16px;
	color: #fff;
}

.wd-werving-pitch h2 {
	margin: 0 0 12px;
	font-family: var(--wd-heading);
	font-size: 1.7rem;
	color: #fff;
}

.wd-werving-pitch p {
	margin: 0 0 18px;
	opacity: 0.95;
	line-height: 1.5;
}

.wd-werving-usps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 10px;
}

.wd-werving-usps li {
	position: relative;
	padding-left: 30px;
	line-height: 1.4;
}

.wd-werving-usps li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: -1px;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: #fff;
	color: var(--wd-primary);
	font-weight: 900;
	font-size: 0.8rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.wd-werving-form {
	background: #fff;
	border-radius: 12px;
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.wd-werving-form h3 {
	margin: 0 0 4px;
	color: var(--wd-color8);
}

.wd-werving-form input,
.wd-werving-form textarea {
	width: 100%;
	padding: 11px 12px;
	border: 1px solid var(--wd-border);
	border-radius: 8px;
	font-size: 0.92rem;
	font-family: inherit;
	color: var(--wd-text);
}

.wd-werving-form textarea {
	resize: vertical;
	min-height: 72px;
}

.wd-werving-form .wd-btn {
	margin-top: 4px;
}

.wd-werving-feedback {
	font-size: 0.85rem;
	margin: 4px 0 0;
}

.wd-werving-feedback.is-success { color: #d6ffe9; }
.wd-werving-feedback.is-error { color: #ffe0e0; }

/* Honeypot (anti-spam) — onzichtbaar voor mensen, zichtbaar voor bots */
.wd-hp {
	position: absolute !important;
	left: -9999px !important;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
}

/* Responsive */
@media ( max-width: 720px ) {
	.wd-calc-form { grid-template-columns: 1fr; }
	.wd-werving { grid-template-columns: 1fr; padding: 24px; }
}

/* =====================================================================
 * Rijke wervingssectie (/montagebedrijven/) — [wijnsma_word_dealer]
 * ===================================================================== */
.wd-werving--rich {
	display: block;
	width: 100%;
	max-width: 100%; /* volgt automatisch de breedte van de site-container */
	margin: 0 auto;
	padding: 0;
	background: transparent;
	border-radius: 0;
	color: var(--wd-text);
}

.wd-werving--rich > * + * {
	margin-top: 64px; /* ruime sectie-afstand zoals Avada-rijen */
}

.wd-eyebrow {
	display: inline-block;
	font-family: var(--wd-heading);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-size: 0.8rem;
	color: var(--wd-primary);
	margin-bottom: 8px;
}

/* Hero ----------------------------------------------------------------- */
.wd-werving-hero {
	display: grid;
	grid-template-columns: 1fr 1.15fr; /* meer ruimte voor de demo-kaart */
	gap: 36px;
	align-items: center;
	background: var(--wd-primary);
	border-radius: 16px;
	padding: 40px;
	color: #fff;
}

.wd-werving-hero-text .wd-eyebrow { color: #d6f0e8; }

.wd-werving-hero-text h2 {
	color: #fff !important;
	font-size: clamp(1.9rem, 4.5vw, 2.625rem); /* tot 42px = site-H2 */
	margin: 0 0 14px;
}

.wd-werving-hero-text p {
	margin: 0 0 22px;
	font-size: 1.05rem;
	line-height: 1.5;
	opacity: 0.96;
}

/* Op de groene hero is de primaire knop wit met groene tekst */
.wd-werving-hero .wd-btn-primary {
	background: #fff;
	border-color: #fff;
	color: var(--wd-primary);
}
.wd-werving-hero .wd-btn-primary:hover {
	background: var(--wd-primary-dark);
	border-color: #fff;
	color: #fff;
}

.wd-werving-hero-map { text-align: center; }

.wd-mini-map {
	height: 420px;
	width: 100%;
	border-radius: 12px;
	overflow: hidden;
	background: #dfe6ec;
	box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

.wd-mini-map-label {
	display: block;
	margin-top: 10px;
	font-size: 0.85rem;
	opacity: 0.9;
}

/* Stat-tellers --------------------------------------------------------- */
.wd-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	text-align: center;
}

.wd-stat {
	background: var(--wd-soft);
	border-radius: 12px;
	padding: 24px 14px;
}

.wd-stat-num,
.wd-stat-plus,
.wd-stat-suffix {
	font-family: var(--wd-heading);
	font-weight: 700;
	font-size: 2.4rem;
	color: var(--wd-primary);
	line-height: 1;
}

.wd-stat-plus, .wd-stat-suffix { font-size: 1.6rem; }

.wd-stat-label {
	display: block;
	margin-top: 8px;
	font-size: 0.85rem;
	color: var(--wd-muted);
}

/* Zo kom je op de kaart (stappen) ------------------------------------- */
.wd-steps h3,
.wd-faq h3 { text-align: center; margin: 0 0 24px; }

/* Sectie-koppen op site-grootte (tot 36px = site-H3), responsief. */
.wd-steps h3,
.wd-faq h3,
.wd-usp-section h3,
.wd-regio h3 {
	font-size: clamp(1.5rem, 3.2vw, 2.25rem);
}

.wd-steps-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	counter-reset: none;
}

.wd-step {
	position: relative;
	text-align: center;
	padding: 0 12px;
}

.wd-step-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--wd-primary);
	color: #fff;
	font-family: var(--wd-heading);
	font-weight: 700;
	font-size: 1.3rem;
	margin-bottom: 14px;
}

.wd-step h4 { margin: 0 0 6px; font-size: 1rem; }
.wd-step p { margin: 0; color: var(--wd-muted); font-size: 0.9rem; line-height: 1.45; }

/* USP-kaarten ---------------------------------------------------------- */
.wd-usp-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.wd-usp-card {
	background: var(--wd-bg);
	border: 1px solid var(--wd-border);
	border-radius: 12px;
	padding: 22px 18px;
	transition: box-shadow .2s, transform .05s;
}

.wd-usp-card:hover {
	box-shadow: 0 10px 26px rgba(37,162,131,0.14);
}

.wd-usp-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 12px;
	background: rgba(37,162,131,0.12);
	color: var(--wd-primary);
	margin-bottom: 12px;
}
.wd-usp-icon svg { width: 24px; height: 24px; }

.wd-usp-card h4 { margin: 0 0 6px; font-size: 0.98rem; }
.wd-usp-card p { margin: 0; color: var(--wd-muted); font-size: 0.88rem; line-height: 1.45; }

/* Regio-exclusiviteit -------------------------------------------------- */
.wd-regio {
	background: var(--wd-soft);
	border-left: 4px solid var(--wd-primary);
	border-radius: 12px;
	padding: 26px 28px;
}
.wd-regio h3 { margin: 0 0 8px; }
.wd-regio p { margin: 0 0 6px; line-height: 1.5; }
.wd-regio a { color: var(--wd-primary); font-weight: 600; }

/* Testimonials --------------------------------------------------------- */
.wd-testimonials {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.wd-testimonial {
	margin: 0;
	background: var(--wd-bg);
	border: 1px solid var(--wd-border);
	border-radius: 12px;
	padding: 24px 26px;
	position: relative;
}
.wd-testimonial p { font-size: 1rem; line-height: 1.55; margin: 0 0 14px; }
.wd-testimonial cite { font-style: normal; font-size: 0.86rem; color: var(--wd-muted); }
.wd-testimonial cite strong { color: var(--wd-text); }

/* FAQ (native details/summary) ---------------------------------------- */
.wd-faq-item {
	border: 1px solid var(--wd-border);
	border-radius: 10px;
	margin-bottom: 10px;
	background: var(--wd-bg);
	overflow: hidden;
}
.wd-faq-item summary {
	cursor: pointer;
	padding: 16px 20px;
	font-weight: 600;
	color: var(--wd-text);
	list-style: none;
	position: relative;
	padding-right: 44px;
}
.wd-faq-item summary::-webkit-details-marker { display: none; }
.wd-faq-item summary::after {
	content: "+";
	position: absolute;
	right: 18px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.3rem;
	color: var(--wd-primary);
	line-height: 1;
}
.wd-faq-item[open] summary::after { content: "–"; }
.wd-faq-antwoord {
	padding: 0 20px 18px;
	color: var(--wd-muted);
	line-height: 1.55;
	font-size: 0.92rem;
}

/* Aanmelden + CTA ------------------------------------------------------ */
.wd-aanmeld {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	align-items: center;
	background: var(--wd-primary);
	border-radius: 16px;
	padding: 40px;
	color: #fff;
	scroll-margin-top: 90px;
}
.wd-aanmeld-pitch h3 { color: #fff !important; font-size: 1.6rem; margin: 0 0 10px; }
.wd-aanmeld-pitch p { margin: 0; font-size: 1.05rem; opacity: 0.96; }

/* Responsive (rich werving) ------------------------------------------- */
@media ( max-width: 880px ) {
	.wd-werving-hero,
	.wd-aanmeld { grid-template-columns: 1fr; }
	.wd-stats { grid-template-columns: repeat(2, 1fr); }
	.wd-steps-list { grid-template-columns: 1fr; }
	.wd-usp-grid { grid-template-columns: repeat(2, 1fr); }
	.wd-testimonials { grid-template-columns: 1fr; }
	.wd-werving--rich > * + * { margin-top: 44px; }
	.wd-werving-hero,
	.wd-aanmeld { padding: 28px; }
}
@media ( max-width: 480px ) {
	.wd-usp-grid { grid-template-columns: 1fr; }
}

/* =====================================================================
 * Particulieren-landingspagina — [wijnsma_particulieren]
 * ===================================================================== */

/* Particulierenpagina heeft 3 stats → 3 kolommen (vult de volle breedte). */
.wd-consument .wd-stats {
	grid-template-columns: repeat(3, 1fr);
}

/* Hero gecentreerd (één kolom) */
.wd-hero-consument {
	grid-template-columns: 1fr;
	text-align: center;
}
.wd-hero-consument .wd-werving-hero-text {
	max-width: 700px;
	margin: 0 auto;
}
.wd-hero-consument .wd-werving-hero-text h2 { font-size: clamp(2rem, 5vw, 2.625rem); }

/* Knoppen op een groene band (hero + CTA) zijn wit met groene tekst */
.wd-werving-hero .wd-btn-primary,
.wd-aanmeld .wd-btn-primary {
	background: #fff;
	border-color: #fff;
	color: var(--wd-primary);
}
.wd-werving-hero .wd-btn-primary:hover,
.wd-aanmeld .wd-btn-primary:hover {
	background: var(--wd-primary-dark);
	border-color: #fff;
	color: #fff;
}

/* Waarom-sectie */
.wd-usp-section h3 { text-align: center; margin: 0 0 24px; }

/* CTA-band voor particulieren */
.wd-cta-consument .wd-cta-knop { text-align: right; }

@media ( max-width: 880px ) {
	.wd-cta-consument .wd-cta-knop { text-align: left; }
}

/* =====================================================================
 * Interactieve demo + voorbeeld-vermelding (montagebedrijven)
 * ===================================================================== */
.wd-werving-hero-map { position: relative; }

/* Pulserende "hier kom jij te staan"-pin (oranje accent valt op tussen groen) */
.wd-jouw-pin {
	display: block;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: var(--wd-accent, #ffa62b);
	border: 3px solid #fff;
	box-shadow: 0 0 0 0 rgba(255, 166, 43, 0.55);
	animation: wd-pulse 1.8s infinite;
}
@keyframes wd-pulse {
	0%   { box-shadow: 0 0 0 0 rgba(255, 166, 43, 0.55); }
	70%  { box-shadow: 0 0 0 16px rgba(255, 166, 43, 0); }
	100% { box-shadow: 0 0 0 0 rgba(255, 166, 43, 0); }
}
.wd-jouw-tooltip {
	background: var(--wd-accent, #ffa62b);
	color: #fff;
	border: none;
	font-family: var(--wd-heading);
	font-weight: 700;
	text-transform: uppercase;
	font-size: 0.68rem;
	letter-spacing: 0.03em;
	padding: 4px 9px;
	border-radius: 6px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.wd-jouw-tooltip.leaflet-tooltip-top::before { border-top-color: var(--wd-accent, #ffa62b); }

/* Live-ticker-balk ONDER de kaart (geen overlay, geen overlap) */
.wd-demo-ticker {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 12px;
	background: #fff;
	border-radius: 10px;
	padding: 9px 14px;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
	text-align: left;
}
.wd-ticker-live {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	flex: 0 0 auto;
	font-family: var(--wd-heading);
	font-weight: 700;
	text-transform: uppercase;
	font-size: 0.68rem;
	letter-spacing: 0.04em;
	color: var(--wd-primary);
}
.wd-ticker-dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--wd-primary);
	box-shadow: 0 0 0 0 rgba(37, 162, 131, 0.5);
	animation: wd-pulse-dot 1.6s infinite;
}
@keyframes wd-pulse-dot {
	0%   { box-shadow: 0 0 0 0 rgba(37, 162, 131, 0.5); }
	70%  { box-shadow: 0 0 0 8px rgba(37, 162, 131, 0); }
	100% { box-shadow: 0 0 0 0 rgba(37, 162, 131, 0); }
}
.wd-ticker-tekst {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--wd-text);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	opacity: 0;
	transform: translateY(4px);
	transition: opacity .3s ease, transform .3s ease;
}
.wd-ticker-tekst.is-in { opacity: 1; transform: translateY(0); }

.wd-mini-map-hint {
	display: block;
	margin-top: 12px;
	font-size: 0.82rem;
	line-height: 1.4;
	color: #eaf6f1;
	opacity: 0.95;
}

/* Voorbeeld-popup in de demo-kaart */
.wd-demo-popup { min-width: 200px; text-align: left; font-family: "Montserrat", sans-serif; }
.wd-demo-popup strong {
	display: block;
	font-family: var(--wd-heading);
	text-transform: uppercase;
	color: var(--wd-color8);
	font-size: 0.95rem;
	margin: 6px 0 4px;
}
.wd-demo-stars { color: var(--wd-accent, #ffa62b); font-size: 0.9rem; margin-bottom: 6px; }
.wd-demo-stars span { color: var(--wd-muted); font-size: 0.8rem; }
.wd-demo-popup p { font-size: 0.8rem; color: var(--wd-muted); margin: 0 0 10px; }
.wd-demo-popup .wd-btn { padding: 9px 16px; font-size: 13px; }

/* Knop in de demo-popup: groen met witte letters (niet de witte hero-knop). */
.wd-demo-popup .wd-btn-primary {
	background: var(--wd-primary);
	border-color: var(--wd-primary);
	color: #fff;
}
.wd-demo-popup .wd-btn-primary:hover {
	background: var(--wd-primary);
	border-color: #3c3c3b;
	color: #fff;
}

/* Badge (ook nodig hier; map.css wordt op deze pagina niet geladen) */
.wd-badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 0.68rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	padding: 3px 8px;
	border-radius: 999px;
	background: rgba(37, 162, 131, 0.14);
	color: #1d7d65;
}
.wd-badge::before { content: "✓"; font-weight: 900; }

/* Voorbeeld-vermeldingskaart */
.wd-vermelding {
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 32px;
	align-items: center;
	background: var(--wd-soft);
	border-radius: 16px;
	padding: 36px;
}
.wd-vermelding-tekst h3 { margin: 0 0 12px; }
.wd-vermelding-tekst p { margin: 0 0 16px; }
.wd-vermelding-punten { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.wd-vermelding-punten li { position: relative; padding-left: 26px; }
.wd-vermelding-punten li::before { content: "✓"; position: absolute; left: 0; color: var(--wd-primary); font-weight: 900; }

.wd-vermelding-kaart {
	position: relative;
	background: #fff;
	border: 1px solid var(--wd-border);
	border-radius: 12px;
	padding: 20px;
	box-shadow: 0 16px 36px rgba(37, 162, 131, 0.16);
}
.wd-vermelding-ribbon {
	position: absolute;
	top: 14px;
	right: -6px;
	background: var(--wd-accent, #ffa62b);
	color: #fff;
	font-family: var(--wd-heading);
	font-weight: 700;
	text-transform: uppercase;
	font-size: 0.62rem;
	letter-spacing: 0.05em;
	padding: 4px 12px;
	border-radius: 4px;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}
.wd-vermelding-head { display: flex; gap: 14px; align-items: flex-start; }
.wd-vermelding-logo {
	flex: 0 0 auto;
	width: 54px;
	height: 54px;
	border-radius: 10px;
	background: var(--wd-primary);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--wd-heading);
	font-weight: 700;
	font-size: 1.2rem;
}
.wd-vermelding-body h4 { margin: 2px 0 0; color: var(--wd-primary); font-size: 1.05rem; }
.wd-vermelding-stars { color: var(--wd-accent, #ffa62b); font-size: 0.95rem; margin-top: 4px; }
.wd-vermelding-stars span { color: var(--wd-muted); font-size: 0.8rem; }
.wd-vermelding-adres { margin: 14px 0 2px; color: var(--wd-muted); font-size: 0.88rem; }
.wd-vermelding-werkgebied { margin: 0 0 12px; color: var(--wd-muted); font-size: 0.88rem; }
.wd-vermelding-werkgebied strong { color: var(--wd-text); }
.wd-vermelding-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.wd-vermelding-tags span {
	font-size: 0.72rem;
	padding: 3px 9px;
	border-radius: 999px;
	background: var(--wd-soft);
	border: 1px solid var(--wd-border);
	color: var(--wd-text);
}
.wd-vermelding-kaart .wd-btn { width: 100%; text-align: center; box-sizing: border-box; }

@media ( max-width: 880px ) {
	.wd-vermelding { grid-template-columns: 1fr; padding: 24px; }
}
