/*
Shared header styling used across SP2 modules.
*/

.app-header {
	width: 100%;
	background: #f8f9fa;
	border-bottom: 1px solid #ddd;
	margin: 0 0 20px 0;
	box-sizing: border-box;
}

.app-header__inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 12px 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

.app-header__logo img {
	display: block;
	height: 56px;
	width: auto;
}

.app-header__nav {
	display: flex;
	align-items: center;
	gap: 28px;
}

.app-header__link {
	color: #0d47a1;
	text-decoration: none;
	font-weight: 500;
	font-size: 15px;
	line-height: 1;
	position: relative;
	padding: 6px 4px;
}

.app-header__link:hover,
.app-header__link:focus-visible {
	color: #08306b;
	outline: none;
}

.app-header__link img {
	height: 28px;
	width: auto;
	display: block;
}

@media (max-width: 700px) {
	.app-header__inner {
		flex-wrap: wrap;
		padding: 10px 18px;
	}

	.app-header__nav {
		gap: 16px;
	}

	.app-header__logo img {
		height: 48px;
	}
}
