.llpa,
.llpa *,
.llpa *::before,
.llpa *::after {
	box-sizing: border-box;
}

.llpa {
	--llpa-ink: #18212b;
	--llpa-muted: #5d6874;
	--llpa-paper: #fbfaf6;
	--llpa-white: #ffffff;
	--llpa-line: #dfe3e5;
	--llpa-navy: #13283a;
	--llpa-navy-soft: #1d3a50;
	--llpa-copper: #b97443;
	--llpa-copper-dark: #8f4f27;
	--llpa-focus: #286f9e;
	width: min(100% - 32px, 1180px);
	margin: 48px auto 72px;
	color: var(--llpa-ink);
	font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.6;
}

.llpa a {
	color: inherit;
}

.llpa__hero {
	position: relative;
	isolation: isolate;
	display: grid;
	grid-template-columns: minmax(0, 1.65fr) minmax(260px, .75fr);
	gap: clamp(36px, 7vw, 96px);
	align-items: end;
	overflow: hidden;
	padding: clamp(40px, 7vw, 84px);
	border-radius: 4px 4px 0 0;
	background:
		radial-gradient(circle at 88% 18%, rgba(185, 116, 67, .21), transparent 28%),
		linear-gradient(132deg, var(--llpa-navy), #0f202e 72%);
	color: #f7f4ed;
}

.llpa__hero::after {
	position: absolute;
	z-index: -1;
	right: -88px;
	bottom: -160px;
	width: 420px;
	height: 420px;
	border: 1px solid rgba(255, 255, 255, .11);
	border-radius: 50%;
	box-shadow: 0 0 0 46px rgba(255, 255, 255, .025), 0 0 0 92px rgba(255, 255, 255, .02);
	content: "";
}

.llpa__eyebrow {
	margin: 0 0 18px;
	color: #e1a477;
	font-size: .75rem;
	font-weight: 750;
	letter-spacing: .17em;
	text-transform: uppercase;
}

.llpa__hero h1 {
	max-width: 780px;
	margin: 0;
	color: #fff;
	font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
	font-size: clamp(2.65rem, 6.7vw, 5.75rem);
	font-weight: 500;
	letter-spacing: -.045em;
	line-height: .96;
}

.llpa__intro {
	max-width: 710px;
	margin: 28px 0 0;
	color: #c7d0d6;
	font-size: clamp(1rem, 1.7vw, 1.17rem);
	line-height: 1.75;
}

.llpa__stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin: 0;
	border-top: 1px solid rgba(255, 255, 255, .2);
}

.llpa__stats div {
	display: flex;
	flex-direction: column-reverse;
	gap: 8px;
	padding: 20px 10px 0;
	border-right: 1px solid rgba(255, 255, 255, .15);
}

.llpa__stats div:first-child {
	padding-left: 0;
}

.llpa__stats div:last-child {
	border-right: 0;
}

.llpa__stats dt {
	color: #aebcc5;
	font-size: .66rem;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.llpa__stats dd {
	margin: 0;
	color: #fff;
	font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
	font-size: clamp(1.65rem, 3vw, 2.25rem);
	line-height: 1;
}

.llpa__filters {
	display: grid;
	grid-template-columns: minmax(250px, 1.8fr) repeat(3, minmax(140px, 1fr)) auto;
	gap: 18px;
	align-items: end;
	padding: 28px clamp(22px, 4vw, 46px);
	border: 1px solid var(--llpa-line);
	border-top: 0;
	background: var(--llpa-paper);
}

.llpa__field label {
	display: block;
	margin: 0 0 7px;
	color: #4f5d69;
	font-size: .69rem;
	font-weight: 750;
	letter-spacing: .095em;
	line-height: 1.25;
	text-transform: uppercase;
}

.llpa__field input,
.llpa__field select {
	width: 100%;
	min-height: 48px;
	margin: 0;
	padding: 10px 38px 10px 13px;
	border: 1px solid #cbd1d4;
	border-radius: 2px;
	background-color: #fff;
	box-shadow: none;
	color: var(--llpa-ink);
	font: inherit;
	font-size: .91rem;
}

.llpa__field input {
	padding-right: 13px;
}

.llpa__field input::placeholder {
	color: #8a949c;
	opacity: 1;
}

.llpa__field input:hover,
.llpa__field select:hover {
	border-color: #9fa8ae;
}

.llpa__actions {
	display: flex;
	align-items: center;
	gap: 13px;
	min-height: 48px;
}

.llpa__actions button,
.llpa__empty a,
.llpa__load-more {
	min-height: 48px;
	margin: 0;
	padding: 11px 19px;
	border: 1px solid var(--llpa-navy);
	border-radius: 2px;
	background: var(--llpa-navy);
	box-shadow: none;
	color: #fff;
	cursor: pointer;
	font: inherit;
	font-size: .78rem;
	font-weight: 750;
	letter-spacing: .055em;
	line-height: 1.2;
	text-decoration: none;
	text-transform: uppercase;
	transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.llpa__actions button:hover,
.llpa__empty a:hover,
.llpa__load-more:hover {
	border-color: var(--llpa-navy-soft);
	background: var(--llpa-navy-soft);
	transform: translateY(-1px);
}

.llpa__actions a {
	color: var(--llpa-copper-dark);
	font-size: .82rem;
	font-weight: 700;
	text-underline-offset: 4px;
}

.llpa__results-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	min-height: 72px;
	padding: 18px 2px;
	border-bottom: 1px solid var(--llpa-line);
}

.llpa__results-bar p {
	margin: 0;
	color: var(--llpa-muted);
	font-size: .79rem;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.llpa__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	border-left: 1px solid var(--llpa-line);
}

.llpa-card {
	position: relative;
	display: flex;
	min-width: 0;
	min-height: 390px;
	flex-direction: column;
	padding: clamp(28px, 4.3vw, 48px);
	border-right: 1px solid var(--llpa-line);
	border-bottom: 1px solid var(--llpa-line);
	background: var(--llpa-white);
	transition: background-color 180ms ease;
	content-visibility: auto;
	contain-intrinsic-size: 390px;
}

.llpa-card::before {
	position: absolute;
	top: 0;
	left: clamp(28px, 4.3vw, 48px);
	width: 48px;
	height: 3px;
	background: var(--llpa-copper);
	content: "";
	transition: width 180ms ease;
}

.llpa-card:hover {
	background: #fdfcf8;
}

.llpa-card:hover::before {
	width: 76px;
}

.llpa-card__meta {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	margin: 0 0 27px;
	color: var(--llpa-copper-dark);
	font-size: .68rem;
	font-weight: 780;
	letter-spacing: .1em;
	line-height: 1.45;
	text-transform: uppercase;
}

.llpa-card__meta span:first-child {
	max-width: 78%;
}

.llpa-card h2 {
	margin: 0;
	color: var(--llpa-ink);
	font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
	font-size: clamp(1.48rem, 2.6vw, 2rem);
	font-weight: 600;
	letter-spacing: -.025em;
	line-height: 1.17;
}

.llpa-card h2 a {
	color: inherit;
	text-decoration: none;
}

.llpa-card h2 a:hover {
	color: var(--llpa-copper-dark);
}

.llpa-card__author {
	margin: 15px 0 0;
	color: #45515d;
	font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
	font-size: 1.02rem;
	font-style: italic;
	line-height: 1.45;
}

.llpa-card__author span {
	color: #7a858d;
	font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: .65rem;
	font-style: normal;
	font-weight: 750;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.llpa-card__summary {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	margin: 23px 0 30px;
	color: var(--llpa-muted);
	font-size: .91rem;
	line-height: 1.7;
}

.llpa-card__link {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	align-self: flex-start;
	margin-top: auto;
	color: var(--llpa-navy) !important;
	font-size: .74rem;
	font-weight: 800;
	letter-spacing: .075em;
	text-decoration: none !important;
	text-transform: uppercase;
}

.llpa-card__link span {
	color: var(--llpa-copper-dark);
	font-size: 1.1rem;
	transition: transform 160ms ease;
}

.llpa-card__link:hover span {
	transform: translateX(4px);
}

.llpa__pagination {
	margin: 34px 0 0;
}

.llpa__pagination ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.llpa__pagination a,
.llpa__pagination span {
	display: grid;
	min-width: 42px;
	min-height: 42px;
	place-items: center;
	padding: 8px 12px;
	border: 1px solid var(--llpa-line);
	background: #fff;
	color: var(--llpa-ink);
	font-size: .82rem;
	font-weight: 700;
	text-decoration: none;
}

.llpa__pagination a:hover,
.llpa__pagination .current {
	border-color: var(--llpa-navy);
	background: var(--llpa-navy);
	color: #fff;
}

.llpa__pagination .prev,
.llpa__pagination .next {
	padding-inline: 16px;
}

.llpa__empty {
	padding: clamp(48px, 8vw, 90px) 24px;
	border: 1px solid var(--llpa-line);
	border-top: 0;
	background: var(--llpa-paper);
	text-align: center;
}

.llpa__empty-mark {
	margin: 0;
	color: #d8d3c9;
	font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
	font-size: 4rem;
	line-height: 1;
}

.llpa__empty h2 {
	margin: 10px 0 6px;
	font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
	font-size: 2rem;
}

.llpa__empty p:not(.llpa__empty-mark) {
	margin: 0 0 26px;
	color: var(--llpa-muted);
}

.llpa__empty a {
	display: inline-flex;
	align-items: center;
}

.llpa [hidden] {
	display: none !important;
}

.llpa :where(a, button, input, select):focus-visible {
	outline: 3px solid var(--llpa-focus);
	outline-offset: 3px;
}

.llpa__load-wrap {
	display: flex;
	justify-content: center;
	margin: 32px 0 0;
}

@media (max-width: 1020px) {
	.llpa__hero {
		grid-template-columns: 1fr;
	}

	.llpa__stats {
		max-width: 460px;
	}

	.llpa__filters {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.llpa__field--search,
	.llpa__actions {
		grid-column: 1 / -1;
	}
}

@media (max-width: 720px) {
	.llpa {
		width: min(100% - 20px, 1180px);
		margin-top: 20px;
	}

	.llpa__hero {
		padding: 40px 25px;
	}

	.llpa__hero h1 {
		font-size: clamp(2.45rem, 14vw, 4rem);
	}

	.llpa__stats {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.llpa__stats div {
		padding-right: 6px;
		padding-left: 6px;
	}

	.llpa__filters {
		grid-template-columns: 1fr;
		padding: 24px 20px;
	}

	.llpa__field--search,
	.llpa__actions {
		grid-column: auto;
	}

	.llpa__actions {
		align-items: stretch;
		flex-direction: column;
	}

	.llpa__actions button {
		width: 100%;
	}

	.llpa__grid {
		grid-template-columns: 1fr;
	}

	.llpa-card {
		min-height: 0;
		padding: 34px 25px;
		contain-intrinsic-size: 430px;
	}

	.llpa-card::before {
		left: 25px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.llpa *,
	.llpa *::before,
	.llpa *::after {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
	}
}

@media print {
	.llpa {
		width: 100%;
		margin: 0;
	}

	.llpa__hero {
		background: #fff;
		color: #000;
		padding: 0 0 24px;
	}

	.llpa__hero h1,
	.llpa__stats dd {
		color: #000;
	}

	.llpa__eyebrow,
	.llpa__intro,
	.llpa__stats dt {
		color: #333;
	}

	.llpa__filters,
	.llpa__pagination,
	.llpa__load-wrap {
		display: none;
	}

	.llpa__grid {
		display: block;
		border: 0;
	}

	.llpa-card {
		min-height: 0;
		break-inside: avoid;
		border: 0;
		border-bottom: 1px solid #bbb;
		padding: 24px 0;
	}
}

