/* checklist.css — bulleted capability lists.
   The tick is drawn in CSS. No icon asset, nothing to 404, and it inherits colour
   so it works on both the light and the raised surface. */

.gnt-checklist {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--space-5) var(--space-10);
	margin: 0;
	padding: 0;
	list-style: none;
}

.gnt-checklist li {
	position: relative;
	padding-left: var(--space-8);
	font-size: var(--text-body-lg);
	line-height: var(--text-body-lg-lh);
	color: var(--color-text-muted);
}

.gnt-checklist li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.5rem;
	width: 1rem;
	height: 0.55rem;
	border-left: 2px solid var(--color-accent-rule);
	border-bottom: 2px solid var(--color-accent-rule);
	transform: rotate(-45deg);
}

.gnt-section--dark .gnt-checklist li::before {
	border-color: var(--brass-100);
}

.gnt-section--dark .gnt-checklist li {
	color: var(--color-text-on-dark-muted);
}

/* ------------------------------------------------------------ grouped variant */
/* The exit-readiness list arrived from the client in five named groups (2026-09-15),
   which one flat list cannot express. The heading is a real <h3> in the same text
   field as its list, the way gnt-steps__title is, so the class lands on the element
   itself and Elementor's .elementor-heading-title rules never come into it — no
   bridge rule is needed and none was added. */

.gnt-checklist__group {
	margin: var(--space-10) 0 var(--space-5);
	font-size: var(--text-h3);
	line-height: var(--text-h3-lh);
	font-weight: var(--font-weight-semibold);
	color: var(--color-text-heading);
}

/* elementor-bridge.css zeroes the top margin of a text field's first <p>; the first
   child here is an <h3>, which that rule does not reach. */
.gnt-checklist__group:first-child { margin-top: 0; }

@media (max-width: 767px) {
	.gnt-checklist { grid-template-columns: minmax(0, 1fr); gap: var(--space-4); }
	.gnt-checklist__group { margin-top: var(--space-8); }
}
