/* Breaking news ticker */
.nrt-ticker-wrap {
	display: flex;
	align-items: center;
	background: #111;
	color: #fff;
	overflow: hidden;
	padding: 8px 0;
}
.nrt-ticker-label {
	flex-shrink: 0;
	background: #c0392b;
	color: #fff;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 12px;
	padding: 6px 14px;
	margin-right: 14px;
	letter-spacing: 0.5px;
}
.nrt-ticker-track {
	flex: 1;
	overflow: hidden;
	white-space: nowrap;
}
.nrt-ticker-list {
	display: inline-flex;
	gap: 40px;
	margin: 0;
	padding: 0;
	list-style: none;
	animation: nrt-scroll 30s linear infinite;
}
.nrt-ticker-list a {
	color: #fff;
	text-decoration: none;
	font-size: 14px;
}
.nrt-ticker-list a:hover {
	text-decoration: underline;
}
@keyframes nrt-scroll {
	0%   { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

/* Category badge */
.nrt-badge {
	display: inline-block;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	padding: 4px 10px;
	border-radius: 3px;
	text-decoration: none;
}

/* Related posts */
.nrt-related-posts {
	margin-top: 40px;
	border-top: 1px solid #e5e5e5;
	padding-top: 24px;
}
.nrt-related-title {
	font-size: 18px;
	margin-bottom: 16px;
}
.nrt-related-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 16px;
}
.nrt-related-card {
	text-decoration: none;
	color: inherit;
	display: block;
}
.nrt-related-thumb img {
	width: 100%;
	height: auto;
	border-radius: 4px;
	display: block;
	margin-bottom: 8px;
}
.nrt-related-cardtitle {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	display: block;
}
