.sve-page,
.sve-page * {
	box-sizing: border-box;
}

.sve-site-area {
	position: relative;
	z-index: 20;
	width: 100%;
}

.sve-site-area .sve-page {
	overflow: visible;
}

.sve-site-area--header {
	position: sticky;
	top: 0;
}

.sve-site-area--header .sve-page .sve-section-inner {
	width: min(1180px, calc(100vw - 32px));
}

.sve-site-menu-wrap {
	display: flex;
	align-items: center;
	gap: 8px;
	justify-content: flex-end;
	width: 100%;
}

.sve-menu-toggle {
	display: none;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.08);
	color: inherit;
	font: inherit;
	font-weight: 800;
	line-height: 1.2;
	cursor: pointer;
}

.sve-menu-toggle__bars {
	position: relative;
	display: inline-block;
	width: 16px;
	height: 12px;
	border-top: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
}

.sve-menu-toggle__bars::before {
	position: absolute;
	top: 3px;
	left: 0;
	width: 100%;
	border-top: 2px solid currentColor;
	content: "";
}

.sve-site-menu {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
	justify-content: flex-end;
	margin: 0;
	padding: 0;
	list-style: none;
}

.sve-site-menu li {
	margin: 0;
}

.sve-site-menu a {
	display: inline-flex;
	align-items: center;
	border: 1px solid transparent;
	border-radius: 4px;
	color: rgba(255, 255, 255, 0.86);
	font-size: 0.88rem;
	font-weight: 760;
	line-height: 1.2;
	padding: 8px 13px;
	text-decoration: none;
	transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.sve-menu .sve-site-menu a {
	color: inherit;
	font-size: inherit;
}

.sve-site-menu a:hover,
.sve-site-menu .current-menu-item a {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.18);
	color: #ffffff;
	transform: translateY(-1px);
}

.sve-page {
	width: 100%;
	overflow: hidden;
}

.sve-page .sve-section {
	position: relative;
	overflow: hidden;
	width: 100%;
}

.sve-page .sve-section--has-bg {
	background-repeat: no-repeat;
}

.sve-page .sve-section-overlay {
	position: absolute;
	z-index: 0;
	inset: 0;
	pointer-events: none;
}

.sve-page .sve-section-inner {
	position: relative;
	z-index: 1;
	width: min(1120px, calc(100vw - 32px));
	margin: 0 auto;
}

.sve-page .sve-columns {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: stretch;
	gap: 24px;
	width: 100%;
}

.sve-page .sve-column {
	min-width: 0;
}

.sve-page .sve-heading {
	letter-spacing: 0;
	line-height: 1.05;
}

.sve-page .sve-text p:first-child {
	margin-top: 0;
}

.sve-page .sve-text p:last-child {
	margin-bottom: 0;
}

.sve-page .sve-text a {
	color: inherit;
}

.sve-page .sve-image {
	display: block;
	margin: 0;
	width: 100%;
	max-width: 100%;
}

.sve-page .sve-image img,
.sve-page .sve-gallery img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: inherit;
	object-fit: inherit;
	object-position: inherit;
}

.sve-page .sve-image[style*="height"] img {
	height: 100%;
}

.sve-page .sve-image-empty {
	min-height: 220px;
	border: 1px dashed #cbd5e1;
	background: #f8fafc;
}

.sve-page .sve-button-wrap {
	display: inline-flex;
	max-width: 100%;
}

.sve-page .sve-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	max-width: 100%;
	text-decoration: none;
	line-height: 1.2;
	transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.sve-page .sve-button:hover {
	opacity: 0.92;
	transform: translateY(-1px);
}

.sve-page .sve-cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	grid-auto-rows: 1fr;
	align-items: stretch;
	gap: 18px;
	width: 100%;
}

.sve-page .sve-card {
	display: grid;
	grid-template-rows: auto auto 1fr;
	align-content: start;
	height: 100%;
	min-width: 0;
	padding: 22px;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	background: #ffffff;
	overflow: hidden;
}

.sve-page .sve-card__image {
	margin: -22px -22px 16px;
	background: #f1f5f9;
}

.sve-page .sve-card__image img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	object-position: center;
}

.sve-page .sve-cards--images-wide .sve-card__image img {
	aspect-ratio: 16 / 9;
}

.sve-page .sve-cards--images-square .sve-card__image img {
	aspect-ratio: 1 / 1;
}

.sve-page .sve-cards--images-fixed .sve-card__image img {
	height: var(--sve-card-image-height, 220px);
	aspect-ratio: auto;
}

.sve-page .sve-cards--images-natural .sve-card__image img {
	height: auto;
	aspect-ratio: auto;
	object-fit: contain;
}

.sve-page .sve-card h3 {
	margin: 0 0 10px;
	font-size: 1.15rem;
	line-height: 1.25;
	letter-spacing: 0;
}

.sve-page .sve-card p:first-child {
	margin-top: 0;
}

.sve-page .sve-card p:last-child {
	margin-bottom: 0;
}

.sve-page .sve-card > div {
	min-width: 0;
}

.sve-page .sve-features {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	width: 100%;
}

.sve-page .sve-feature {
	display: grid;
	gap: 12px;
	align-content: start;
	min-width: 0;
	padding: 22px;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	background: #ffffff;
}

.sve-page .sve-feature__icon {
	display: inline-grid;
	width: 44px;
	height: 44px;
	place-items: center;
	border-radius: 8px;
	background: #dbeafe;
	color: #1d4ed8;
	font-size: 0.82rem;
	font-weight: 900;
	line-height: 1;
}

.sve-page .sve-feature__image {
	margin: -22px -22px 4px;
	background: #f1f5f9;
}

.sve-page .sve-feature__image img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.sve-page .sve-feature__body {
	display: grid;
	gap: 7px;
	min-width: 0;
}

.sve-page .sve-feature h3 {
	margin: 0;
	font-size: 1.15rem;
	line-height: 1.25;
	letter-spacing: 0;
}

.sve-page .sve-feature p:first-child {
	margin-top: 0;
}

.sve-page .sve-feature p:last-child {
	margin-bottom: 0;
}

.sve-page .sve-features--list,
.sve-page .sve-features--compact {
	grid-template-columns: 1fr;
}

.sve-page .sve-features--list .sve-feature {
	grid-template-columns: 48px minmax(0, 1fr);
	align-items: start;
}

.sve-page .sve-features--compact .sve-feature {
	grid-template-columns: 38px minmax(0, 1fr);
	gap: 10px;
	padding: 14px;
}

.sve-page .sve-features--compact .sve-feature__icon {
	width: 36px;
	height: 36px;
	font-size: 0.72rem;
}

.sve-page .sve-features--compact .sve-feature h3 {
	font-size: 1rem;
}

.sve-page .sve-gallery {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	width: 100%;
}

.sve-page .sve-gallery figure {
	margin: 0;
	overflow: hidden;
	border-radius: 8px;
	background: #f1f5f9;
}

.sve-page .sve-gallery img {
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.sve-page .sve-gallery--images-wide img {
	aspect-ratio: 16 / 9;
}

.sve-page .sve-gallery--images-square img {
	aspect-ratio: 1 / 1;
}

.sve-page .sve-gallery--images-fixed img {
	height: var(--sve-gallery-image-height, 240px);
	aspect-ratio: auto;
}

.sve-page .sve-gallery--images-natural img {
	height: auto;
	aspect-ratio: auto;
	object-fit: contain;
}

.sve-page .sve-gallery--collage {
	grid-template-columns: repeat(6, minmax(0, 1fr));
	grid-auto-rows: 120px;
}

.sve-page .sve-gallery--collage figure:nth-child(6n+1) {
	grid-column: span 3;
	grid-row: span 2;
}

.sve-page .sve-gallery--collage figure:nth-child(6n+2),
.sve-page .sve-gallery--collage figure:nth-child(6n+5) {
	grid-column: span 3;
}

.sve-page .sve-gallery--collage figure:nth-child(6n+3),
.sve-page .sve-gallery--collage figure:nth-child(6n+4),
.sve-page .sve-gallery--collage figure:nth-child(6n+6) {
	grid-column: span 2;
}

.sve-page .sve-gallery--collage img {
	height: 100%;
	aspect-ratio: auto;
}

.sve-page .sve-gallery--collage.sve-gallery--images-natural img {
	object-fit: cover;
}

.sve-page .sve-table-wrap {
	width: 100%;
	max-width: 100%;
	margin: 24px 0;
	overflow-x: auto;
	color: inherit;
}

.sve-page .sve-table-wrap figcaption {
	margin: 0 0 8px;
	color: inherit;
	font-size: 0.85rem;
	font-weight: 800;
	opacity: 0.75;
	text-align: inherit;
}

.sve-page .sve-table {
	width: 100%;
	min-width: 420px;
	border-collapse: collapse;
	background: #ffffff;
	color: inherit;
	font-size: inherit;
	text-align: inherit;
}

.sve-page .sve-table th,
.sve-page .sve-table td {
	padding: 12px 14px;
	border: 1px solid #d8dee8;
	color: inherit;
	line-height: 1.45;
	text-align: inherit;
	vertical-align: top;
}

.sve-page .sve-table th {
	background: #f8fafc;
	color: #172033;
	font-weight: 850;
}

.sve-page .sve-table--valign-middle th,
.sve-page .sve-table--valign-middle td {
	vertical-align: middle;
}

.sve-page .sve-table--valign-bottom th,
.sve-page .sve-table--valign-bottom td {
	vertical-align: bottom;
}

.sve-page .sve-table--halign-left th,
.sve-page .sve-table--halign-left td {
	text-align: left;
}

.sve-page .sve-table--halign-center th,
.sve-page .sve-table--halign-center td {
	text-align: center;
}

.sve-page .sve-table--halign-right th,
.sve-page .sve-table--halign-right td {
	text-align: right;
}

.sve-page .sve-shortcode {
	width: 100%;
}

.sve-page .sve-posts {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	width: 100%;
}

.sve-page .sve-post-card {
	display: grid;
	gap: 10px;
	align-content: start;
	padding: 18px;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	background: #ffffff;
}

.sve-page .sve-post-card__image {
	display: block;
	overflow: hidden;
	margin: -18px -18px 4px;
	border-radius: 8px 8px 0 0;
	background: #f1f5f9;
}

.sve-page .sve-post-card__image img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.sve-page .sve-post-card time {
	color: #64748b;
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
}

.sve-page .sve-post-card h3 {
	margin: 0;
	font-size: 1.15rem;
	line-height: 1.25;
	letter-spacing: 0;
}

.sve-page .sve-post-card p {
	margin: 0;
}

.sve-page .sve-post-card__link {
	font-weight: 700;
}

.sve-page .sve-posts-empty {
	grid-column: 1 / -1;
	margin: 0;
}

.sve-page .sve-spacer {
	height: 40px;
}

.sve-page .sve-divider {
	display: flex;
	align-items: center;
	gap: 10px;
	width: min(100%, 180px);
	margin: 30px auto;
	color: #91851b;
	line-height: 1;
}

.sve-page .sve-divider::before,
.sve-page .sve-divider::after {
	content: "";
	flex: 1 1 auto;
	height: var(--sve-divider-thickness, 2px);
	border-radius: 999px;
	background: currentColor;
}

.sve-page .sve-divider span {
	width: 8px;
	height: 8px;
	border: var(--sve-divider-thickness, 2px) solid currentColor;
	border-radius: 999px;
	background: transparent;
}

.sve-page .sve-divider--line span {
	display: none;
}

.sve-page .sve-divider--double::before,
.sve-page .sve-divider--double::after {
	height: calc(var(--sve-divider-thickness, 2px) * 3);
	border-top: var(--sve-divider-thickness, 2px) solid currentColor;
	border-bottom: var(--sve-divider-thickness, 2px) solid currentColor;
	background: transparent;
}

.sve-page .sve-divider--dashed::before,
.sve-page .sve-divider--dashed::after {
	background: repeating-linear-gradient(90deg, currentColor 0 10px, transparent 10px 17px);
}

.sve-page .sve-section--frame-corner .sve-section-inner,
.sve-page .sve-section--frame-ruled .sve-section-inner {
	position: relative;
}

.sve-page .sve-section--frame-corner .sve-section-inner::before,
.sve-page .sve-section--frame-corner .sve-section-inner::after {
	content: "";
	position: absolute;
	z-index: 1;
	width: 58px;
	height: 58px;
	border-color: rgba(147, 134, 27, 0.55);
	pointer-events: none;
}

.sve-page .sve-section--frame-corner .sve-section-inner::before {
	top: -18px;
	left: -18px;
	border-top: 2px solid;
	border-left: 2px solid;
}

.sve-page .sve-section--frame-corner .sve-section-inner::after {
	right: -18px;
	bottom: -18px;
	border-right: 2px solid;
	border-bottom: 2px solid;
}

.sve-page .sve-section--frame-ruled {
	box-shadow: inset 0 1px 0 rgba(147, 134, 27, 0.36), inset 0 -1px 0 rgba(147, 134, 27, 0.36);
}

@media (max-width: 1024px) {
	.sve-page .sve-cards,
	.sve-page .sve-features,
	.sve-page .sve-gallery,
	.sve-page .sve-posts {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	.sve-page .sve-gallery--collage {
		grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
		grid-auto-rows: 112px;
	}

	.sve-page .sve-gallery--collage figure {
		grid-column: span 2 !important;
		grid-row: span 1 !important;
	}

	.sve-page .sve-gallery--collage figure:nth-child(4n+1) {
		grid-row: span 2 !important;
	}
}

@media (max-width: 800px) {
	.sve-site-area--header {
		position: relative;
		top: auto;
	}

	.sve-site-menu-wrap {
		align-items: stretch;
		flex-direction: column;
		justify-content: flex-start;
	}

	.sve-site-menu {
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		width: 100%;
	}

	.sve-menu--mobile-wrap .sve-site-menu {
		flex-direction: row;
		align-items: center;
	}

	.sve-menu--mobile-wrap .sve-site-menu li,
	.sve-menu--mobile-wrap .sve-site-menu a {
		width: auto;
	}

	.sve-menu--mobile-collapse.sve-menu--js .sve-menu-toggle {
		display: inline-flex;
		align-self: flex-start;
	}

	.sve-menu--mobile-collapse.sve-menu--js:not(.is-open) .sve-site-menu {
		display: none;
	}

	.sve-site-menu li {
		width: 100%;
	}

	.sve-site-menu a {
		width: 100%;
		padding: 7px 10px;
	}

	.sve-page .sve-columns,
	.sve-page .sve-cards,
	.sve-page .sve-features,
	.sve-page .sve-gallery,
	.sve-page .sve-posts {
		grid-template-columns: 1fr !important;
	}

	.sve-page .sve-heading {
		font-size: 2.45rem !important;
	}

	.sve-page .sve-section-inner {
		width: min(100%, calc(100vw - 24px));
	}

	.sve-page .sve-button-wrap {
		display: flex;
		width: 100%;
	}

	.sve-page .sve-button {
		width: 100%;
	}

	.sve-page .sve-section--parallax {
		background-attachment: scroll !important;
	}

	.sve-page .sve-gallery--collage {
		grid-auto-rows: auto;
	}

	.sve-page .sve-gallery--collage figure {
		grid-column: auto !important;
		grid-row: auto !important;
	}

	.sve-page .sve-gallery--collage img {
		height: auto;
		aspect-ratio: 4 / 3;
	}
}
