/* Axis Orthotech — base theme styles */

:root {
	--aot-brand: #1a4d7a;
	--aot-brand-dark: #123456;
	--aot-surface: #f5f8fb;
	--aot-foreground: #1a2332;
	--aot-muted: #5a6a7e;
	--aot-white: #ffffff;
	--aot-max-width: 72rem;
}

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

body {
	margin: 0;
	font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	font-size: 1rem;
	line-height: 1.6;
	color: var(--aot-foreground);
	background: var(--aot-surface);
}

a {
	color: var(--aot-brand);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.screen-reader-text:focus {
	position: static;
	width: auto;
	height: auto;
	margin: 0;
	overflow: visible;
	clip: auto;
	white-space: normal;
}

.site-header {
	background: var(--aot-white);
	border-bottom: 1px solid #e2e8f0;
}

.site-header__inner,
.site-footer__inner,
.site-main {
	max-width: var(--aot-max-width);
	margin-inline: auto;
	padding-inline: 1.5rem;
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding-block: 1rem;
}

.site-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--aot-brand);
}

.site-nav__list {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-main {
	padding-block: 2.5rem;
}

.entry-title {
	margin-top: 0;
	line-height: 1.2;
}

.entry-meta {
	color: var(--aot-muted);
	font-size: 0.9rem;
}

.site-footer {
	margin-top: 3rem;
	background: var(--aot-brand-dark);
	color: var(--aot-white);
}

.site-footer a {
	color: var(--aot-white);
}

.site-footer__inner {
	padding-block: 2rem;
}

.site-footer__copy {
	margin: 1.5rem 0 0;
	font-size: 0.875rem;
	opacity: 0.85;
}

.pagination {
	margin-top: 2rem;
}
