.news-ticker-container-640178c4 {
	display: flex;
	align-items: center;
	gap: 15px;
	background: #f9f9f9;
	padding: 10px 20px;
	border-radius: 4px;
	overflow: hidden;
	border: 1px solid transparent;
}

.news-ticker-items {
	flex-grow: 1;
	position: relative;
	min-height: 24px;
	width: 100%;
	display: flex;
	align-items: center;
}

.news-ticker-item {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	width: 100%;
	animation: fadeTickerIn 0.3s ease-in-out;
}

.news-ticker-date {
	font-size: 0.85em;
	color: #666;
	display: flex;
	align-items: center;
	gap: 5px;
	white-space: nowrap;
	line-height: 1;
}

.news-ticker-title {
	font-weight: bold;
	color: #333;
	text-decoration: none;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: color 0.2s ease;
	line-height: 1;
	display: inline-block;
}

.news-ticker-title:hover {
	text-decoration: underline;
}

.news-ticker-nav {
	display: flex;
	align-items: center;
	gap: 5px;
	flex-shrink: 0;
}

.news-ticker-nav button {
	background: none;
	border: none;
	cursor: pointer;
	font-size: 1.2em;
	color: #333;
	padding: 0 5px;
	transition: color 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

@keyframes fadeTickerIn {
	from { opacity: 0; transform: translateY(5px); }
	to { opacity: 1; transform: translateY(0); }
}