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

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 80px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	font-weight: 600;
}

.brand-logo {
	height: 60px;
	width: auto;
}

.brand-texts {
	display: flex;
	flex-direction: column;
	line-height: 1.1;
}

.brand-title {
	font-size: 1.3rem;
	font-weight: 400;
	color: var(--brand-main);
}

.site-nav {
	display: flex;
	gap: 1.25rem;
	font-size: 0.95rem;
	color: var(--muted);
}

.site-nav a:hover {
	color: var(--fg);
}

.site-nav a {
	position: relative;
	padding: 0.25rem 0;
}

.site-nav a.is-active {
	color: var(--fg);
	font-weight: 500;
}

.site-nav a.is-active::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -6px;
	height: 2px;
	background: var(--brand-main);
	border-radius: 2px;
}
