.nte-ticker {
	display: flex;
	align-items: stretch;
	width: 100%;
	min-height: 56px;
	overflow: hidden;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 4px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, .10);
	box-sizing: border-box;
}

/* --- Brand box (বিশেষ বার্তা) --- */
.nte-brand {
	position: relative;
	z-index: 2;
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 0 28px;
	min-width: 120px;
	background: #ef4444;
	color: #fff;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.3;
	white-space: nowrap;
}
.nte-brand-icon {
	width: 22px;
	height: 22px;
	object-fit: contain;
	display: block;
}

/* --- Scrolling area --- */
.nte-viewport {
	position: relative;
	flex: 1 1 auto;
	min-width: 0;
	overflow: hidden;
	display: flex;
	align-items: center;
}
.nte-track {
	display: flex;
	align-items: center;
	width: max-content;
	will-change: transform;
	animation: nte-scroll var(--nte-duration, 40s) linear infinite;
}
.nte-ticker[data-direction="right"] .nte-track {
	animation-direction: reverse;
}
.nte-ticker.is-pausable:hover .nte-track,
.nte-ticker.is-pausable:focus-within .nte-track {
	animation-play-state: paused;
}
.nte-group {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
}

@keyframes nte-scroll {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}

/* --- Item --- */
.nte-item {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-inline-end: 48px;
	padding-inline-start: 16px;
	white-space: nowrap;
}
.nte-badge {
	display: inline-block;
	padding: 3px 9px;
	border-radius: 6px;
	background: #ef4444;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: .3px;
	text-transform: uppercase;
}
.nte-text {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
	color: #111827;
}
.nte-text a {
	color: inherit;
	text-decoration: none;
}
.nte-text a:hover {
	text-decoration: underline;
}

/* --- Reduced motion: অ্যানিমেশন বন্ধ, হাতে স্ক্রল করা যাবে --- */
@media (prefers-reduced-motion: reduce) {
	.nte-track { animation: none; }
	.nte-viewport { overflow-x: auto; }
	.nte-group[aria-hidden="true"] { display: none; }
}
