.site-header {
	position: relative;
	z-index: 50;
	color: var(--ec-black);
	background: var(--ec-yellow);
}

.site-header.is-sticky {
	position: sticky;
	top: 0;
}

.ec-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	width: 100%;
	max-width: none;
	min-height: 64px;
	padding-right: clamp(18px, 2.5vw, 40px);
	padding-left: clamp(18px, 2.5vw, 40px);
}

.site-branding { flex: 0 0 auto; }

.ec-logo {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	font-weight: 900;
	font-size: 1.1rem;
	text-decoration: none;
}

.ec-logo img {
	display: block;
	max-height: 44px;
	width: auto;
}

.ec-header-actions {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
	margin-left: auto;
	gap: 6px;
}

.ec-icon-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 4px;
	color: var(--ec-black);
	background: transparent;
	cursor: pointer;
	text-decoration: none;
}

.ec-icon-button:hover,
.ec-icon-button[aria-expanded="true"] {
	color: var(--ec-yellow);
	background: var(--ec-black);
}

.ec-icon-button svg {
	width: 22px;
	height: 22px;
	fill: currentColor;
}

.ec-header-search {
	padding: 12px 0 16px;
	border-top: 1px solid rgba(0, 0, 0, 0.16);
}

.ec-ticker {
	color: var(--ec-white);
	background: var(--ec-black);
	font-size: 0.8125rem;
}

.ec-ticker-inner {
	min-height: 34px;
	display: flex;
	align-items: center;
	overflow-x: auto;
	white-space: nowrap;
}
