:root {
	--yimu-deep-navy: #071b33;
	--yimu-energy-teal: #00a89c;
	--yimu-soft-white: #f6f8fa;
	--yimu-slate: #485563;
	--yimu-border: #dbe3ea;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: #ffffff;
	color: var(--yimu-deep-navy);
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1rem;
	line-height: 1.6;
}

a {
	color: #007c73;
}

a:focus-visible,
button:focus-visible {
	outline: 3px solid var(--yimu-energy-teal);
	outline-offset: 3px;
}

.site-container {
	width: min(1200px, calc(100% - 2rem));
	margin-right: auto;
	margin-left: auto;
}

.site-header {
	border-bottom: 1px solid var(--yimu-border);
	background: #ffffff;
}

.site-header__inner,
.site-footer__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: 4.5rem;
}

.site-title {
	color: var(--yimu-deep-navy);
	font-weight: 700;
	text-decoration: none;
}

.custom-logo-link {
	display: inline-flex;
	align-items: center;
}

.custom-logo {
	max-width: 180px;
	height: auto;
}

.primary-navigation ul,
.footer-navigation ul {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-navigation a,
.footer-navigation a {
	text-decoration: none;
}

.site-content {
	padding-top: 3rem;
	padding-bottom: 3rem;
}

.entry + .entry {
	margin-top: 3rem;
	padding-top: 3rem;
	border-top: 1px solid var(--yimu-border);
}

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

.entry-content > * + * {
	margin-top: 1.25rem;
}

.site-footer {
	background: var(--yimu-deep-navy);
	color: #ffffff;
}

.site-footer a {
	color: #ffffff;
}

.site-footer__copyright {
	margin: 0;
	font-size: 0.875rem;
}

.button {
	display: inline-block;
	padding: 0.75rem 1rem;
	border-radius: 0.25rem;
	background: var(--yimu-energy-teal);
	color: #ffffff;
	font-weight: 700;
	text-decoration: none;
}

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

.screen-reader-text:focus {
	position: fixed;
	top: 1rem;
	left: 1rem;
	z-index: 100000;
	width: auto;
	height: auto;
	margin: 0;
	padding: 0.75rem 1rem;
	overflow: visible;
	clip: auto;
	background: #ffffff;
	color: var(--yimu-deep-navy);
}

@media (max-width: 640px) {
	.site-header__inner,
	.site-footer__inner {
		align-items: flex-start;
		flex-direction: column;
		justify-content: center;
		padding-top: 1rem;
		padding-bottom: 1rem;
	}
}
