.sa-header {
	background: linear-gradient(180deg, #0e1830 0%, #16264a 100%);
	padding: 18px 24px;
	font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	box-sizing: border-box;
}

.sa-header__inner {
	max-width: 1180px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
}

.sa-header__logo {
	font-family: 'Baloo 2', 'Poppins', sans-serif;
	font-size: 1.4rem;
	font-weight: 700;
	color: #8bc0a8;
	text-decoration: none;
}

.sa-header__nav {
	display: flex;
	align-items: center;
	gap: 32px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.sa-header__nav a {
	color: #e5e9f0;
	text-decoration: none;
	font-size: 1rem;
	font-weight: 500;
	padding-bottom: 4px;
	border-bottom: 2px solid transparent;
	transition: color 0.15s ease, border-color 0.15s ease;
}

.sa-header__nav a:hover {
	color: #e3ba4d;
}

.sa-header__nav a.sa-header__nav-active {
	color: #e3ba4d;
	border-bottom-color: #e3ba4d;
}

@media (max-width: 640px) {
	.sa-header__nav {
		gap: 18px;
		font-size: 0.9rem;
	}
}
