:root {
	--lp-blue-900: #28156e;
	--lp-blue-800: #000c6e;
	--lp-blue-700: #2961a9;
	--lp-blue-600: #5b7ea6;
	--lp-blue-500: #6691bf;
	--lp-blue-300: #bde3f9;
	--lp-blue-200: #dcecf6;
	--lp-blue-100: #f1f9fd;
	--lp-white: #ffffff;
	--lp-text: #42698f;
	--lp-muted: #6d91b5;
	--lp-border: #c8e8fa;
	--lp-shadow: 0 14px 34px rgba(102, 145, 191, .12);
}

* {
	box-sizing: border-box;
}

html {
	font-size: 16px;
}

body.lp-site {
	margin: 0;
	background: var(--lp-blue-100);
	color: var(--lp-text);
	font-family: "Trebuchet MS", "Helvetica Neue", Arial, sans-serif;
	line-height: 1.55;
}

a {
	color: var(--lp-blue-800);
	text-decoration: none;
}

a:hover {
	color: var(--lp-blue-700);
	text-decoration: underline;
}

.lp-shell {
	width: min(1330px, calc(100% - 40px));
	margin: 0 auto;
}

.lp-header {
	background: var(--lp-white);
	border-bottom: 1px solid var(--lp-border);
}

.lp-header-grid {
	display: grid;
	grid-template-columns: 210px minmax(0, 1fr) auto;
	gap: 14px 34px;
	align-items: center;
	padding: 12px 0 10px;
}

.lp-brand {
	justify-self: center;
	display: inline-block;
	line-height: 0;
	text-decoration: none;
}

.lp-brand:hover {
	text-decoration: none;
}

.lp-brand-logo {
	display: block;
	width: 92px;
	height: auto;
}

.lp-tools a:hover,
.lp-section-nav a:hover {
	text-decoration: none;
}

.lp-tools {
	grid-column: 3;
	justify-self: end;
	display: flex;
	flex-wrap: wrap;
	gap: 3px;
	padding: 5px;
	border: 1px solid var(--lp-border);
	border-radius: 8px;
	background: rgba(255, 255, 255, .82);
	box-shadow: 0 7px 16px rgba(102, 145, 191, .07);
	font-size: .78rem;
	font-style: italic;
}

.lp-tools a {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	border-radius: 6px;
	padding: 5px 10px;
	color: var(--lp-blue-600);
}

.lp-tools a:hover {
	background: var(--lp-blue-100);
	color: var(--lp-blue-800);
}

.lp-lang {
	white-space: nowrap;
}

.lp-flag {
	width: 18px;
	height: 12px;
	border-radius: 2px;
	box-shadow: 0 0 0 1px rgba(91, 143, 194, .28);
	flex: 0 0 auto;
}
.lp-menu-toggle {
	display: none;
	position: relative;
	width: 38px;
	height: 38px;
	border: 1px solid rgba(91, 190, 244, .46);
	border-radius: 9px;
	background: linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(231, 246, 253, .94));
	box-shadow: 0 8px 18px rgba(102, 145, 191, .12), inset 0 1px 0 rgba(255, 255, 255, .88);
	padding: 0;
	cursor: pointer;
	transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}

.lp-menu-toggle span {
	position: absolute;
	left: 10px;
	width: 16px;
	height: 2px;
	border-radius: 999px;
	background: var(--lp-blue-700);
	box-shadow: 0 1px 0 rgba(255, 255, 255, .7);
	transition: transform .16s ease, width .16s ease, opacity .16s ease;
}

.lp-menu-toggle span:nth-child(1) {
	top: 12px;
}

.lp-menu-toggle span:nth-child(2) {
	top: 18px;
	width: 13px;
}

.lp-menu-toggle span:nth-child(3) {
	top: 24px;
}

.lp-menu-toggle:hover,
.lp-menu-toggle:focus-visible {
	border-color: var(--lp-blue-500);
	box-shadow: 0 10px 22px rgba(102, 145, 191, .17), inset 0 1px 0 rgba(255, 255, 255, .9);
	transform: translateY(-1px);
}


.lp-menu-open .lp-menu-toggle span:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
}

.lp-menu-open .lp-menu-toggle span:nth-child(2) {
	opacity: 0;
}

.lp-menu-open .lp-menu-toggle span:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
}
.lp-mobile-panel[hidden] {
	display: none;
}

.lp-mobile-panel {
	position: fixed;
	inset: 0;
	z-index: 50;
	background: var(--lp-blue-100);
	overflow: auto;
}

.lp-mobile-panel-inner {
	min-height: 100%;
	padding: 18px;
}

.lp-mobile-panel-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 22px;
}

.lp-mobile-panel-head .lp-brand-logo {
	width: 104px;
}
.lp-menu-close {
	width: 42px;
	height: 42px;
	border: 1px solid var(--lp-border);
	border-radius: 7px;
	background: var(--lp-white);
	color: var(--lp-blue-700);
	font-size: 1.8rem;
	line-height: 1;
	cursor: pointer;
}

.lp-mobile-tools {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
	margin-bottom: 24px;
}

.lp-mobile-tools a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border: 1px solid var(--lp-border);
	border-radius: 7px;
	padding: 10px 12px;
	background: var(--lp-white);
	color: var(--lp-blue-600);
	font-size: .9rem;
	font-style: italic;
	text-align: center;
}

.lp-mobile-panel-nav .lp-sidebar-title {
	text-align: left;
}

body.lp-menu-open {
	overflow: hidden;
}
.lp-main {
	background: var(--lp-blue-100);
	border-top: 1px solid var(--lp-border);
}

.lp-layout {
	display: grid;
	grid-template-columns: 210px minmax(0, 760px) minmax(210px, 1fr);
	gap: 30px;
	min-height: 70vh;
	background: transparent;
}

.lp-sidebar {
	padding: 34px 0 78px;
}

.lp-sidebar-title {
	margin-bottom: 20px;
	color: var(--lp-blue-600);
	font-size: 1rem;
	font-weight: 700;
	text-align: center;
}

.lp-section-nav {
	display: grid;
	gap: 8px;
}

.lp-nav-group {
	overflow: hidden;
	border: 1px solid rgba(189, 227, 249, .95);
	border-radius: 6px;
	background: rgba(255, 255, 255, .78);
	box-shadow: 0 10px 24px rgba(102, 145, 191, .055);
	transition: border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
}

.lp-nav-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	width: 100%;
	border: 0;
	padding: 12px 13px 12px 16px;
	background: transparent;
	color: var(--lp-blue-500);
	font: inherit;
	font-weight: 700;
	text-align: left;
	cursor: pointer;
	transition: background-color .18s ease, color .18s ease;
}

.lp-nav-title::after {
	content: "";
	width: 16px;
	height: 16px;
	flex: 0 0 16px;
	background: currentColor;
	color: var(--lp-blue-500);
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6l6 -6'/%3E%3C/svg%3E") center / 16px 16px no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6l6 -6'/%3E%3C/svg%3E") center / 16px 16px no-repeat;
	transition: color .18s ease;
}

.lp-nav-group ul {
	max-height: 0;
	overflow: hidden;
	margin: 0;
	padding: 0;
	list-style: none;
	opacity: 0;
	visibility: hidden;
	transition: max-height .22s ease, opacity .18s ease;
}

.lp-nav-group li + li {
	border-top: 1px solid var(--lp-border);
}

.lp-nav-group li a {
	display: block;
	position: relative;
	padding: 9px 12px 9px 22px;
	background: rgba(255, 255, 255, .72);
	color: var(--lp-blue-500);
	font-size: .88rem;
	text-align: left;
	transition: background-color .16s ease, color .16s ease, padding-left .16s ease;
}

.lp-nav-group li a:hover {
	background: var(--lp-blue-100);
	color: var(--lp-blue-700);
	padding-left: 25px;
}

.lp-nav-group.is-active {
	border-color: var(--lp-blue-300);
	background: var(--lp-white);
	box-shadow: 0 10px 22px rgba(102, 145, 191, .06);
}

.lp-nav-group.is-active .lp-nav-title {
	background: var(--lp-blue-200);
	color: var(--lp-blue-800);
}

.lp-nav-group.is-active .lp-nav-title::after,
.lp-nav-group.is-open .lp-nav-title::after {
	color: var(--lp-blue-700);
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 15l6 -6l6 6'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 15l6 -6l6 6'/%3E%3C/svg%3E");
}

.lp-nav-group.is-collapsed .lp-nav-title::after {
	color: var(--lp-blue-500);
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6l6 -6'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6l6 -6'/%3E%3C/svg%3E");
}

.lp-nav-group.is-active ul,
.lp-nav-group.is-open ul {
	max-height: 520px;
	opacity: 1;
	visibility: visible;
}

.lp-nav-group.is-collapsed ul {
	max-height: 0;
	opacity: 0;
	visibility: hidden;
}

.lp-nav-group li a.is-current {
	background: var(--lp-blue-100);
	color: var(--lp-blue-800);
	font-weight: 700;
	padding-left: 25px;
}

.lp-nav-group li a.is-current::before {
	content: "";
	position: absolute;
	top: 9px;
	bottom: 9px;
	left: 11px;
	width: 3px;
	border-radius: 3px;
	background: var(--lp-blue-700);
}

.lp-content {
	padding: 34px 0 70px;
}

.lp-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	margin-top: 9px;
	color: var(--lp-muted);
}

.lp-breadcrumb a,
.lp-breadcrumb span,
.lp-breadcrumb-current {
	display: inline-flex;
	align-items: center;
	padding: 0;
	border: 0;
	margin: 0;
	background: transparent;
	color: var(--lp-blue-600);
	font-size: .78rem;
	font-weight: 400;
}

.lp-breadcrumb-current {
	color: var(--lp-blue-800);
	font-weight: 700;
}

.lp-breadcrumb > * + *::before {
	content: "/";
	margin-right: 6px;
	color: var(--lp-blue-500);
	font-weight: 400;
}

.lp-page-heading {
	margin: 0 0 20px;
}

.lp-page-heading p {
	margin: 0 0 6px;
	color: var(--lp-muted);
	font-size: .86rem;
	font-weight: 700;
}

.lp-page-heading h1 {
	margin: 0;
	color: var(--lp-blue-600);
	font-size: 1.4rem;
	line-height: 1.2;
}

.lp-card {
	width: min(760px, 100%);
	padding: 34px 38px 40px;
	border: 1px solid var(--lp-border);
	border-radius: 8px;
	background: var(--lp-white);
	box-shadow: var(--lp-shadow);
}

.lp-richtext .title,
.lp-richtext .tituloindex {
	margin: 0 0 22px;
}

.lp-richtext h2 {
	margin: 0;
	color: var(--lp-blue-600);
	font-size: 1.3rem;
	line-height: 1.32;
}

.lp-richtext p {
	margin: 0 0 24px;
	color: var(--lp-text);
	font-size: .98rem;
	line-height: 1.62;
}

.lp-richtext img {
	display: block;
	width: 100%;
	height: auto;
	margin: 8px 0 26px;
	border-radius: 3px;
}

.lp-richtext a {
	font-weight: 700;
}
.lp-promotion {
	display: grid;
	grid-template-columns: minmax(0, 270px) minmax(0, 1fr);
	width: min(760px, 100%);
	margin-top: 24px;
	overflow: hidden;
	border: 1px solid var(--lp-border);
	border-radius: 8px;
	background: var(--lp-white);
	box-shadow: 0 10px 28px rgba(102, 145, 191, .1);
}

.lp-promotion-media {
	min-height: 230px;
	background: var(--lp-blue-200);
}

.lp-promotion-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.lp-promotion-body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: 28px 30px;
}

.lp-promotion .lp-promotion-eyebrow {
	margin: 0 0 7px;
	color: var(--lp-blue-700);
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: uppercase;
}

.lp-promotion-title {
	margin: 0 0 11px;
	color: var(--lp-blue-800);
	font-size: 1.2rem;
	line-height: 1.32;
}

.lp-promotion-body > p:not(.lp-promotion-eyebrow) {
	margin: 0 0 19px;
	color: var(--lp-text);
	font-size: .91rem;
	line-height: 1.55;
}

.lp-promotion-action {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	min-height: 40px;
	padding: 9px 14px;
	border: 1px solid var(--lp-blue-700);
	border-radius: 4px;
	background: var(--lp-blue-700);
	color: var(--lp-white);
	font-size: .86rem;
	font-weight: 700;
	line-height: 1.2;
}

.lp-promotion-action:hover {
	background: var(--lp-blue-800);
	color: var(--lp-white);
	text-decoration: none;
}

.lp-promotion-action svg {
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: transform .18s ease;
}

.lp-promotion-action:hover svg {
	transform: translateX(3px);
}
.lp-promotion-stack {
	position: sticky;
	top: 84px;
	align-self: start;
	display: grid;
	gap: 20px;
	width: 100%;
	margin: 110px 0 60px;
}


.lp-promotion-rail {
	position: static;
	align-self: auto;
	grid-template-columns: 1fr;
	width: 100%;
	margin: 0;
}

.lp-promotion-rail .lp-promotion-media {
	min-height: 0;
	aspect-ratio: 16 / 9;
}

.lp-promotion-rail .lp-promotion-body {
	padding: 24px 22px 26px;
}

.lp-promotion-rail .lp-promotion-title {
	font-size: 1.08rem;
}

@media (min-width: 1280px) {
	.lp-promotion-stack.is-multiple .lp-promotion-media {
		aspect-ratio: 16 / 7;
	}

	.lp-promotion-stack.is-multiple .lp-promotion-body {
		padding: 18px 20px 20px;
	}

	.lp-promotion-stack.is-multiple .lp-promotion-title {
		font-size: 1rem;
	}

	.lp-promotion-stack.is-multiple .lp-promotion-body > p:not(.lp-promotion-eyebrow) {
		font-size: .84rem;
		line-height: 1.48;
	}
}
.lp-footer {
	border-top: 1px solid var(--lp-border);
	background: #edf7fd;
}

.lp-footer-toggle {
	display: none;
}
.lp-footer-grid {
	display: grid;
	grid-template-columns: 170px repeat(3, 1fr);
	gap: 34px;
	padding: 44px 0;
}

.lp-footer-logo {
	display: block;
	width: 108px;
	height: auto;
	opacity: .72;
}

.lp-footer h2 {
	margin: 0 0 14px;
	padding-bottom: 8px;
	border-bottom: 1px solid var(--lp-blue-500);
	color: var(--lp-blue-600);
	font-size: .95rem;
}

.lp-footer a,
.lp-footer p {
	display: block;
	margin: 0 0 9px;
	color: var(--lp-blue-500);
	font-size: .9rem;
	line-height: 1.35;
}
@media (max-width: 1100px) {
	.lp-footer {
		padding: 14px 0;
	}

	.lp-footer-toggle {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		border: 1px solid var(--lp-border);
		border-radius: 6px;
		padding: 13px 14px;
		background: var(--lp-white);
		color: var(--lp-blue-600);
		font: inherit;
		font-weight: 700;
		cursor: pointer;
		box-shadow: 0 8px 18px rgba(102, 145, 191, .08);
	}

	.lp-footer-toggle svg {
		width: 18px;
		height: 18px;
		fill: none;
		stroke: currentColor;
		stroke-width: 2;
		stroke-linecap: round;
		stroke-linejoin: round;
		transition: transform .18s ease;
	}

	.lp-footer.is-open .lp-footer-toggle svg {
		transform: rotate(180deg);
	}

	.lp-footer-grid {
		grid-template-columns: 1fr;
		gap: 24px;
		max-height: 0;
		overflow: hidden;
		opacity: 0;
		padding: 0;
		transition: max-height .28s ease, opacity .2s ease, padding .2s ease;
	}

	.lp-footer.is-open .lp-footer-grid {
		max-height: 1400px;
		opacity: 1;
		padding: 24px 0 18px;
	}
}

@media (min-width: 1280px) and (max-width: 1399px) {
	.lp-layout {
		gap: 22px;
		grid-template-columns: 210px minmax(0, 760px) minmax(210px, 1fr);
	}

	.lp-promotion-rail .lp-promotion-body {
		padding: 20px 18px 22px;
	}

	.lp-promotion-rail .lp-promotion-title {
		font-size: 1rem;
	}

	.lp-promotion-rail .lp-promotion-body > p:not(.lp-promotion-eyebrow) {
		font-size: .84rem;
	}

	.lp-promotion-rail .lp-promotion-action {
		justify-content: center;
		width: 100%;
		padding-inline: 9px;
		font-size: .78rem;
	}
}
@media (max-width: 1279px) {
	.lp-layout {
		grid-template-columns: 210px minmax(0, 760px);
		justify-content: center;
	}

	.lp-promotion-stack {
		position: static;
		grid-column: 2;
		gap: 18px;
		width: 100%;
		margin: -30px 0 70px;
	}

	.lp-promotion-rail {
		grid-template-columns: minmax(0, 270px) minmax(0, 1fr);
		width: 100%;
		margin: 0;
	}

	.lp-promotion-rail .lp-promotion-media {
		min-height: 230px;
		aspect-ratio: auto;
	}

	.lp-promotion-rail .lp-promotion-body {
		padding: 28px 30px;
	}

	.lp-promotion-rail .lp-promotion-title {
		font-size: 1.2rem;
	}
}
@media (max-width: 820px) {
	.lp-shell {
		width: min(100% - 28px, 680px);
	}

	.lp-header {
		position: sticky;
		top: 0;
		z-index: 45;
		box-shadow: 0 6px 18px rgba(102, 145, 191, .08);
	}

	.lp-header-grid {
		grid-template-columns: auto auto;
		gap: 12px;
		justify-content: space-between;
		min-height: 54px;
		padding: 10px 0;
	}

	.lp-brand {
		justify-self: start;
		padding: 2px 0;
	}

	.lp-brand-logo,
	.lp-mobile-panel-head .lp-brand-logo {
		width: 64px;
	}

	.lp-tools {
		display: none;
	}

	.lp-menu-toggle {
		display: block;
		justify-self: end;
	}

	.lp-menu-toggle,
	.lp-menu-close {
		width: 34px;
		height: 34px;
		border-radius: 8px;
	}

	.lp-menu-toggle span {
		left: 9px;
		width: 14px;
	}

	.lp-menu-toggle span:nth-child(1) {
		top: 10px;
	}

	.lp-menu-toggle span:nth-child(2) {
		top: 16px;
		width: 12px;
	}

	.lp-menu-toggle span:nth-child(3) {
		top: 22px;
	}

	.lp-mobile-panel-inner {
		padding: 10px 16px 20px;
	}

	.lp-mobile-panel-head {
		min-height: 54px;
		margin-bottom: 20px;
	}

	.lp-menu-close {
		font-size: 1.55rem;
	}

	.lp-layout {
		display: block;
	}

	.lp-sidebar {
		display: none;
	}

	.lp-content {
		padding: 14px 0 40px;
	}

	.lp-main .lp-shell {
		width: 100%;
	}

	.lp-page-heading {
		width: calc(100% - 28px);
		margin: 0 auto 16px;
	}

	.lp-breadcrumb {
		margin-top: 8px;
		overflow-x: auto;
		flex-wrap: nowrap;
		scrollbar-width: none;
	}

	.lp-breadcrumb a,
	.lp-breadcrumb span,
	.lp-breadcrumb-current {
		white-space: nowrap;
	}

	.lp-card {
		width: 100%;
		max-width: none;
		border-right: 0;
		border-left: 0;
		border-radius: 0;
		padding: 22px max(16px, calc((100vw - 680px) / 2 + 18px)) 30px;
		box-shadow: none;
	}

	.lp-promotion {
		grid-template-columns: 1fr;
		width: 100%;
		margin-top: 16px;
		border-right: 0;
		border-left: 0;
		border-radius: 0;
		box-shadow: none;
	}

	.lp-promotion-media {
		min-height: 0;
		aspect-ratio: 16 / 6.4;
	}

	.lp-promotion-body {
		padding: 24px max(16px, calc((100vw - 680px) / 2 + 18px)) 28px;
	}
	.lp-promotion-stack {
		grid-column: 1;
		gap: 16px;
		width: 100%;
		margin: 0 0 40px;
	}

	.lp-promotion-rail {
		width: 100%;
		margin: 0;
	}

	.lp-promotion-rail .lp-promotion-media {
		min-height: 0;
		aspect-ratio: 16 / 6.4;
	}

	.lp-promotion-rail .lp-promotion-body {
		padding: 24px max(16px, calc((100vw - 680px) / 2 + 18px)) 28px;
	}
.lp-richtext h2 {
		font-size: 1.13rem;
		line-height: 1.34;
	}

	.lp-richtext p {
		font-size: .96rem;
		line-height: 1.66;
		margin-bottom: 22px;
	}

	.lp-richtext img {
		margin: 10px 0 24px;
		border-radius: 4px;
	}
}

@media (max-width: 420px) {
	.lp-shell {
		width: calc(100% - 24px);
	}

	.lp-mobile-tools {
		grid-template-columns: 1fr;
	}

	.lp-page-heading {
		width: calc(100% - 24px);
	}

	.lp-card {
		padding-inline: 14px;
	}

	.lp-breadcrumb a,
	.lp-breadcrumb span,
	.lp-breadcrumb-current {
		font-size: .74rem;
	}
}
.lp-content-section + .lp-content-section {
	margin-top: 34px;
	padding-top: 30px;
	border-top: 1px solid rgba(200, 232, 250, .85);
}

.lp-content-section > h2,
.lp-content-section > .title h2,
.lp-content-section > h2:first-child {
	margin-bottom: 18px;
}

.lp-subtitle {
	margin-top: -10px;
	color: var(--lp-muted);
	font-weight: 700;
}

.lp-data-table {
	display: grid;
	margin: 16px 0 24px;
	border: 1px solid var(--lp-border);
	border-radius: 6px;
	overflow: hidden;
	background: rgba(255, 255, 255, .82);
}

.lp-data-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 16px;
	align-items: center;
	padding: 10px 14px;
	color: var(--lp-text);
}

.lp-data-table-wide .lp-data-row {
	grid-template-columns: minmax(120px, .42fr) minmax(0, 1fr);
}

.lp-data-row + .lp-data-row {
	border-top: 1px solid var(--lp-border);
}

.lp-data-row:nth-child(even) {
	background: var(--lp-blue-100);
}

.lp-data-row.is-highlight {
	background: var(--lp-blue-200);
	color: var(--lp-blue-800);
	font-weight: 700;
}

.lp-table-scroll {
	margin-top: 16px;
	overflow-x: auto;
	border: 1px solid var(--lp-border);
	border-radius: 6px;
	background: var(--lp-white);
}

.lp-climate-table {
	width: 100%;
	min-width: 720px;
	border-collapse: collapse;
	font-size: .88rem;
}

.lp-climate-table th,
.lp-climate-table td {
	padding: 10px 11px;
	border: 1px solid var(--lp-border);
	text-align: center;
}

.lp-climate-table th:first-child {
	text-align: left;
}

.lp-climate-table thead th {
	background: var(--lp-blue-200);
	color: var(--lp-blue-800);
}

.lp-climate-table tbody tr:nth-child(even) {
	background: var(--lp-blue-100);
}

.lp-map-frame {
	position: relative;
	width: 100%;
	aspect-ratio: 11 / 12;
	min-height: 420px;
	overflow: hidden;
	border: 1px solid var(--lp-border);
	border-radius: 6px;
	background: var(--lp-blue-100);
}

.lp-map-frame iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.lp-map-link {
	margin: 18px 0 0;
	text-align: center;
}

.lp-place-list .lp-content-section:first-child {
	padding-top: 0;
	border-top: 0;
}

@media (max-width: 700px) {
	.lp-data-row,
	.lp-data-table-wide .lp-data-row {
		grid-template-columns: 1fr;
		gap: 4px;
	}

	.lp-data-row > div:first-child {
		font-weight: 700;
	}

	.lp-map-frame {
		min-height: 360px;
		aspect-ratio: 4 / 5;
	}
}

.lp-directory-list {
	display: grid;
	gap: 18px;
}

.lp-directory-area {
	margin: 18px 0 0;
	padding: 10px 14px;
	border-radius: 6px;
	background: var(--lp-blue-200);
	color: var(--lp-blue-800);
	font-size: 1rem;
	letter-spacing: 0;
}

.lp-directory-item {
	margin-top: 0;
	padding: 18px 0 0;
}

.lp-directory-item + .lp-directory-item {
	border-top: 1px solid rgba(200, 232, 250, .72);
}
.lp-embed {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	margin: 18px 0;
	overflow: hidden;
	border: 1px solid var(--lp-border);
	border-radius: 6px;
	background: var(--lp-blue-100);
}

.lp-embed iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.lp-link-list {
	display: grid;
	gap: 8px;
	margin: 16px 0 0;
	padding: 0;
	list-style: none;
}

.lp-link-list a {
	display: block;
	padding: 10px 12px;
	border: 1px solid var(--lp-border);
	border-radius: 6px;
	background: rgba(255, 255, 255, .76);
	font-weight: 700;
}

.lp-notice-success {
	padding: 14px 16px;
	border: 1px solid rgba(60, 161, 87, .35);
	border-radius: 6px;
	background: rgba(223, 248, 226, .95);
	color: #245d31;
	font-weight: 700;
}
.lp-image-gallery {
	display: grid;
	gap: 18px;
}


/* Category landing pages */
.lp-category-landing {
	width: min(760px, 100%);
}

.lp-category-intro {
	max-width: 690px;
	margin: 0 0 28px;
	color: var(--lp-text);
	font-size: 1.02rem;
	line-height: 1.65;
}

.lp-category-section + .lp-category-section {
	margin-top: 40px;
	padding-top: 34px;
	border-top: 1px solid var(--lp-border);
}

.lp-category-section > h2 {
	margin: 0 0 18px;
	color: var(--lp-blue-600);
	font-size: 1.18rem;
	line-height: 1.3;
}

.lp-category-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.lp-category-card {
	min-width: 0;
	overflow: hidden;
	border: 1px solid var(--lp-border);
	border-radius: 6px;
	background: var(--lp-white);
	box-shadow: 0 10px 24px rgba(102, 145, 191, .09);
	transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.lp-category-card:hover {
	border-color: var(--lp-blue-300);
	box-shadow: 0 14px 30px rgba(58, 112, 163, .14);
	transform: translateY(-2px);
}

.lp-category-card > a {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.lp-category-card-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: flex-start;
	min-height: 190px;
	padding: 19px 20px 18px;
}


.lp-category-card h3 {
	margin: 0;
	color: var(--lp-blue-800);
	font-size: 1.02rem;
	line-height: 1.35;
}

.lp-category-card p {
	margin: 11px 0 17px;
	color: var(--lp-text);
	font-size: .88rem;
	line-height: 1.52;
}

.lp-category-card-action {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-top: auto;
	color: var(--lp-blue-700);
	font-size: .82rem;
	font-weight: 700;
}

.lp-category-card-action svg,
.lp-category-link-list svg {
	width: 16px;
	height: 16px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.lp-category-link-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px 18px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.lp-category-link-list a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	min-height: 46px;
	padding: 9px 4px;
	border-bottom: 1px solid rgba(189, 227, 249, .82);
	color: var(--lp-blue-700);
	font-size: .88rem;
	font-weight: 700;
	text-decoration: none;
}

.lp-category-link-list a:hover {
	color: var(--lp-blue-800);
}

.lp-category-link-list svg {
	flex: 0 0 16px;
}

@media (max-width: 820px) {
	.lp-category-landing {
		width: 100%;
		padding: 0 max(16px, calc((100vw - 680px) / 2 + 18px)) 10px;
	}
}

@media (max-width: 620px) {
	.lp-category-intro {
		margin-bottom: 22px;
		font-size: .96rem;
	}

	.lp-category-grid,
	.lp-category-link-list {
		grid-template-columns: 1fr;
	}

	.lp-category-grid {
		gap: 14px;
	}

	.lp-category-card-body {
		min-height: 0;
		padding: 17px 17px 16px;
	}

	.lp-category-section + .lp-category-section {
		margin-top: 32px;
		padding-top: 28px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.lp-category-card {
		transition: none;
	}

	.lp-category-card:hover {
		transform: none;
	}
}
.lp-nav-group li.lp-nav-overview a {
	background: rgba(241, 249, 253, .78);
	color: var(--lp-blue-700);
	font-size: .82rem;
	font-weight: 700;
}