.lre-site-core {
	--lre-accent: #e40011;
	--lre-ink: #151515;
	--lre-muted: #626262;
	--lre-line: #d8d8d8;
	--lre-surface: #f6f4f0;
	color: var(--lre-ink);
	font: inherit;
}

.lre-form-wrap {
	max-width: 880px;
	margin-inline: auto;
}

.lre-lead-form {
	position: relative;
	padding: clamp(1.25rem, 4vw, 2.5rem);
	background: var(--lre-surface);
}

.lre-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.25rem;
}

.lre-field,
.lre-check,
.lre-form-actions {
	margin: 0 0 1.25rem;
}

.lre-field--full {
	grid-column: 1 / -1;
}

.lre-field label,
.lre-faq-search label {
	display: block;
	margin-bottom: 0.45rem;
	font-weight: 600;
}

.lre-field input,
.lre-field select,
.lre-field textarea,
.lre-faq-search input {
	box-sizing: border-box;
	width: 100%;
	min-height: 3rem;
	padding: 0.75rem 0.9rem;
	border: 1px solid var(--lre-line);
	border-radius: 0;
	background: #fff;
	color: var(--lre-ink);
	font: inherit;
}

.lre-field textarea {
	min-height: 8rem;
	resize: vertical;
}

.lre-field input:focus,
.lre-field select:focus,
.lre-field textarea:focus,
.lre-faq-search input:focus {
	outline: 2px solid var(--lre-accent);
	outline-offset: 2px;
}

.lre-check label {
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
	line-height: 1.55;
}

.lre-check input {
	flex: 0 0 auto;
	margin-top: 0.3em;
}

.lre-check a {
	margin-left: 0.25em;
}

.lre-form-note {
	margin: 0.75rem 0 0;
	padding: 0.85rem 1rem;
	border-left: 3px solid var(--lre-accent);
	background: #fff;
	color: var(--lre-muted);
	font-size: 0.925rem;
}

.lre-form-actions button {
	min-height: 3rem;
	padding: 0.8rem 1.5rem;
	border: 1px solid var(--lre-accent);
	border-radius: 0;
	background: var(--lre-accent);
	color: #fff;
	cursor: pointer;
	font: inherit;
	font-weight: 600;
}

.lre-form-actions button:hover,
.lre-form-actions button:focus-visible {
	border-color: var(--lre-accent);
	background: var(--lre-accent);
}

.lre-notice,
.lre-empty-state {
	margin-bottom: 1.5rem;
	padding: 1rem 1.1rem;
	border-left: 4px solid var(--lre-accent);
	background: var(--lre-surface);
}

.lre-notice--success {
	border-left-color: #267a43;
}

.lre-notice--error {
	border-left-color: #b42318;
}

.lre-hp {
	position: absolute !important;
	left: -10000px !important;
	top: auto !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.lre-faq-search {
	margin-bottom: 1.5rem;
}

.lre-faq-list {
	border-top: 1px solid var(--lre-line);
}

.lre-faq-item {
	border-bottom: 1px solid var(--lre-line);
}

.lre-faq-item summary {
	position: relative;
	padding: 1.1rem 3rem 1.1rem 0;
	cursor: pointer;
	font-size: 1.05rem;
	font-weight: 600;
	list-style: none;
}

.lre-faq-item summary::-webkit-details-marker {
	display: none;
}

.lre-faq-item summary::after {
	position: absolute;
	right: 0.5rem;
	top: 50%;
	content: "+";
	transform: translateY(-50%);
	font-size: 1.5rem;
	font-weight: 400;
}

.lre-faq-item[open] summary::after {
	content: "−";
}

.lre-faq-item summary:focus-visible {
	outline: 2px solid var(--lre-accent);
	outline-offset: 2px;
}

.lre-faq-answer {
	padding: 0 3rem 1.25rem 0;
	color: var(--lre-muted);
}

.lre-faq-answer > :first-child {
	margin-top: 0;
}

.lre-faq-answer > :last-child {
	margin-bottom: 0;
}

.lre-faq-no-results {
	margin-top: 1.25rem;
	padding: 1rem;
	background: var(--lre-surface);
}

.lre-insight-filters {
	margin-bottom: 1.5rem;
	padding: 1.25rem;
	background: var(--lre-surface);
}

.lre-insight-filter-grid {
	display: grid;
	grid-template-columns: minmax(0, 2fr) repeat(2, minmax(10rem, 1fr));
	gap: 1rem;
}

.lre-insight-filter-grid .lre-field {
	margin-bottom: 0;
}

.lre-insight-filter-actions {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin: 1rem 0 0;
}

.lre-insight-filter-actions button {
	min-height: 2.75rem;
	padding: 0.65rem 1.15rem;
	border: 1px solid var(--lre-ink);
	background: var(--lre-ink);
	color: #fff;
	cursor: pointer;
	font: inherit;
	font-weight: 600;
}

.lre-insight-filter-actions button:hover,
.lre-insight-filter-actions button:focus-visible {
	border-color: var(--lre-accent);
	background: var(--lre-accent);
}

.lre-result-count {
	margin: 0 0 1rem;
	color: var(--lre-muted);
}

.lre-card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
}

.lre-card {
	box-sizing: border-box;
	min-width: 0;
	margin: 0;
	border: 1px solid var(--lre-line);
	background: #fff;
}

.lre-card-media {
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--lre-surface);
}

.lre-card-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.lre-card-body {
	padding: 1.15rem;
}

.lre-card-body h3 {
	margin: 0.4rem 0 0.65rem;
	font-size: 1.2rem;
}

.lre-card-body h3 a {
	color: inherit;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

.lre-card-meta,
.lre-card-date {
	display: block;
	margin: 0 0 0.35rem;
	color: var(--lre-muted);
	font-size: 0.875rem;
}

.lre-card-body > :last-child,
.lre-team-bio > :last-child,
.lre-testimonial-card blockquote > :last-child {
	margin-bottom: 0;
}

.lre-testimonial-card {
	padding: 1.35rem;
}

.lre-testimonial-card blockquote {
	margin: 0 0 1rem;
	font-size: 1.05rem;
	line-height: 1.65;
}

.lre-testimonial-card figcaption {
	font-weight: 600;
}

.lre-office-status {
	display: grid;
	gap: 0.25rem;
	padding-left: 0.85rem;
	border-left: 4px solid var(--lre-muted);
}

.lre-office-status--open {
	border-left-color: #267a43;
}

.lre-office-status strong {
	font-size: 1.05rem;
}

.lre-office-status small {
	color: var(--lre-muted);
}

.lre-sr-only {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

@media (max-width: 640px) {
	.lre-form-grid {
		grid-template-columns: 1fr;
	}

	.lre-field--full {
		grid-column: auto;
	}

	.lre-faq-answer {
		padding-right: 0;
	}

	.lre-insight-filter-grid,
	.lre-card-grid {
		grid-template-columns: 1fr;
	}
}

@media (min-width: 641px) and (max-width: 960px) {
	.lre-insight-filter-grid,
	.lre-card-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.lre-insight-filter-grid .lre-field:first-child {
		grid-column: 1 / -1;
	}
}
