/**
 * No Signal Media Header
 * Top app-shell header only.
 */

.nsm-shell-header {
	position: sticky;
	top: 0;
	z-index: 9000;
	width: 100%;
	background: rgba(15, 16, 16, 0.94);
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(14px);
}

.nsm-shell-header-inner {
	width: 100%;
	min-height: 76px;
	padding: 0 24px;
	box-sizing: border-box;
}

.nsm-brand {
	display: inline-flex;
	align-items: center;
	color: #f4f2ea;
	text-decoration: none;
	font-size: 1.05rem;
	font-weight: 800;
	letter-spacing: -0.03em;
}

.nsm-brand:hover,
.nsm-brand:focus {
	color: #dfd37a;
}

.nsm-shell-label {
	display: inline-flex;
	align-items: center;
	color: rgba(244, 242, 234, 0.62);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

@media (max-width: 782px) {
	.nsm-shell-header {
		min-height: 72px;
	}

	.nsm-shell-header-inner {
		min-height: 72px;
		padding: 0 16px;
	}

	.nsm-brand {
		font-size: 1rem;
	}

	.nsm-shell-label {
		display: none;
	}
}