/* Component styles - Buttons, forms, cards, etc. */

/**
 * Header Component Styles
 * Desktop view - compatible for all desktop sizes
 */

/* header - Auto layout */
.site-header {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	padding: 16px 0;
	gap: 10px;
	width: 100%;
	box-sizing: border-box;
	height: 57px;
	background: #ffffff;
	/* M3/Elevation Light/1 */
	box-shadow:
		0px 1px 2px rgba(0, 0, 0, 0.3),
		0px 1px 3px 1px rgba(0, 0, 0, 0.15);
	z-index: 1000;
	position: relative;
	margin: 0;
	padding-left: 0;
	padding-right: 0;
}

.header-container {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	max-width: 1440px;
	padding: 0 170px;
	margin: 0 auto;
	box-sizing: border-box;
}

/* Logo Section */
.header-logo {
	flex: none;
	order: 0;
	flex-grow: 0;
}

.header-logo a {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.header-logo img {
	height: auto;
	width: auto;
	display: block;
	max-height: 40px;
}

/* Navigation Section */
.header-nav {
	flex: none;
	order: 1;
	flex-grow: 0;
}

.header-nav ul {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 32px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.header-nav li {
	margin: 0;
	padding: 0;
}

.header-nav a {
	text-decoration: none;
	color: #333333;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	padding: 8px 0;
	white-space: nowrap;
}
