/**
 * Global branded header for non-landing pages.
 * Loaded only on pages that render template-parts/global-header.php, so hiding
 * Astra's default masthead here is safe.
 */

#masthead {
	display: none !important;
}

.t10-global-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: #07070f;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.t10-global-header__inner {
	max-width: 1200px;
	margin-inline: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 14px 24px;
}

/* Brand / logo */
.t10-global-header .custom-logo-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
}
.t10-global-header .custom-logo,
.t10-global-header img {
	height: 34px;
	width: auto;
	display: block;
}
.t10-global-header .brand-text {
	color: #fff;
	font-weight: 700;
	font-size: 18px;
	letter-spacing: -0.01em;
}

/* Optional global menu */
.t10-global-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.t10-global-menu a {
	color: rgba(255, 255, 255, 0.75);
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	transition: color 150ms ease;
}
.t10-global-menu a:hover {
	color: #fff;
}

/* Responsive */
@media ( max-width: 600px ) {
	.t10-global-header__inner {
		padding: 12px 16px;
		gap: 14px;
	}
	.t10-global-header .custom-logo,
	.t10-global-header img {
		height: 28px;
	}
	.t10-global-header .brand-text {
		font-size: 16px;
	}
	.t10-global-menu {
		gap: 14px;
	}
	.t10-global-menu a {
		font-size: 13px;
	}
}
