:root {
	--osh-core-page-width: 1200px;
	--osh-core-page-padding: 24px;
	--osh-core-header-height: 64px;
	--osh-core-text-color: #1f2328;
	--osh-core-background-color: #ffffff;
	--osh-core-border-color: #d8dee4;
}

body.osh-context-standard-site,
body.osh-context-landing {
	color: var(--osh-core-text-color);
	background: var(--osh-core-background-color);
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	line-height: 1.5;
}

.osh-site-header,
.osh-site-footer {
	border-color: var(--osh-core-border-color);
	border-style: solid;
}

.osh-site-header {
	min-height: var(--osh-core-header-height);
	border-width: 0 0 1px;
}

.osh-site-footer {
	border-width: 1px 0 0;
}

.osh-site-header__inner,
.osh-site-footer__inner,
.osh-main--standard {
	width: min(100%, calc(var(--osh-core-page-width) + (2 * var(--osh-core-page-padding))));
	margin-inline: auto;
	padding-inline: var(--osh-core-page-padding);
}

.osh-site-header__inner {
	display: flex;
	min-height: var(--osh-core-header-height);
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.osh-site-footer__inner {
	padding-block: 20px;
}

.osh-site-title {
	color: inherit;
	font-weight: 600;
	text-decoration: none;
}

.custom-logo {
	width: auto;
	max-height: calc(var(--osh-core-header-height) - 16px);
}

.osh-primary-navigation__list {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.osh-primary-navigation a {
	color: inherit;
}

.osh-main--standard {
	min-height: 50vh;
	padding-block: 48px;
}

.osh-entry__title {
	margin-block: 0 24px;
}

.osh-landing-main {
	width: 100%;
}

html:has(body.osh-context-app-shell),
html:has(body.osh-context-blank) {
	width: 100%;
	min-height: 100%;
}

body.osh-context-app-shell,
body.osh-context-blank {
	width: 100%;
	min-height: 100vh;
	min-height: 100dvh;
}

body.osh-context-app-shell #app-root {
	width: 100%;
	min-height: 100vh;
	min-height: 100dvh;
}

@media (max-width: 640px) {
	:root {
		--osh-core-page-padding: 16px;
	}

	.osh-site-header__inner {
		align-items: flex-start;
		flex-direction: column;
		padding-block: 12px;
	}
}

