:root {
	--business-bg: #f5f7fb;
	--business-surface: #ffffff;
	--business-surface-soft: #f0f3f8;
	--business-ink: #17191f;
	--business-muted: #626a78;
	--business-line: #d9dee8;
	--business-blue: #0b66d8;
	--business-blue-dark: #084fa8;
	--business-shadow: 0 16px 42px rgba(20, 28, 40, .08);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	border-bottom: 1px solid rgba(217, 222, 232, .9);
	background: rgba(255, 255, 255, .92);
	backdrop-filter: blur(14px);
}

.site-header__inner,
.site-footer__inner,
.site-container,
.app-shell {
	width: min(100% - 32px, 1280px);
	margin-inline: auto;
}

.site-header__inner {
	display: grid;
	min-height: 66px;
	grid-template-columns: auto minmax(0, 1fr) auto;
	/* gap: 24px; */
	align-items: center;
}

.site-brand__logo {
	max-height: 30px;
	display: block;
	width: auto;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	font-weight: 800;
}

.site-brand__mark {
	display: inline-flex;
	width: 38px;
	height: 38px;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
	background: var(--business-ink);
	color: #fff;
	font-size: 13px;
}

.site-brand__text {
	color: var(--business-ink);
	font-size: 16px;
}

.site-nav__list,
.site-footer__nav {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-nav a,
.site-footer a {
	color: var(--business-muted);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
}

.site-nav a:hover,
.site-footer a:hover {
	color: var(--business-ink);
}

.site-header__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: flex-end;
}

.site-button {
	display: inline-flex;
	min-height: 40px;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border: 0;
	border-radius: 999px;
	background: var(--business-blue);
	color: #fff;
	padding: 11px 16px;
	font-size: 13px;
	font-weight: 400;
	line-height: 1;
	text-decoration: none;
}

.site-button .las,
.site-button .lar,
.site-button .lab {
	font-size: 15px;
	line-height: 1;
}

.site-button:hover {
	background: var(--business-blue-dark);
	color: #fff;
}

.site-button--ghost {
	border: 1px solid var(--business-line);
	background: #fff;
	color: var(--business-ink);
}

.site-button--ghost:hover {
	background: var(--business-surface-soft);
	color: var(--business-ink);
}

.site-main {
	padding: 36px 0 56px;
}

.site-main--app {
	padding-top: 0px;
}

.site-container--narrow {
	width: min(100% - 32px, 840px);
}

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

.content-card {
	border: 1px solid var(--business-line);
	border-radius: 4px;
	background: var(--business-surface);
	padding: clamp(22px, 4vw, 42px);
	box-shadow: var(--business-shadow);
}

.content-card--notice {
	max-width: 680px;
	margin: 50px auto;
	text-align: center;
}

.entry-header h1,
.entry-header h2,
.content-card h1 {
	margin: 0 0 16px;
	color: var(--business-ink);
	font-size: clamp(28px, 4vw, 48px);
	line-height: 1.08;
	letter-spacing: 0;
}

.entry-header h2 a {
	text-decoration: none;
}

.entry-content {
	color: var(--business-muted);
	font-size: 16px;
	line-height: 1.75;
}

.entry-content > *:first-child {
	margin-top: 0;
}

.entry-content > *:last-child {
	margin-bottom: 0;
}

.site-footer {
	border-top: 1px solid var(--business-line);
	background: #fff;
}

.site-footer__inner {
	display: flex;
	min-height: 76px;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	color: var(--business-muted);
	font-size: 14px;
}

.site-footer p {
	margin: 0;
}

.app-shell {
	min-height: calc(100vh - 180px);
}

.has-int-exif .app-shell .int-exif-app {
	margin-bottom: 24px;
}

@media (max-width: 860px) {
	.site-header__inner {
		grid-template-columns: 1fr auto;
		gap: 14px;
	}

	.site-nav {
		grid-column: 1 / -1;
		order: 3;
		padding-bottom: 14px;
	}

	.site-footer__inner {
		display: grid;
	}
}

@media (max-width: 560px) {
	.site-header__inner,
	.site-footer__inner,
	.site-container,
	.app-shell {
		width: min(100% - 20px, 1280px);
	}

	.site-main {
		padding-top: 22px;
	}

	.site-brand__text {
		max-width: 160px;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
}
