/* EDU TRADE - Hot News */
.edu-hot-news {
	padding: 8px 0;
	box-sizing: border-box;
}

.edu-hot-news__bar {
	display: flex;
	align-items: center;
	background-color: var(--edu-white);
	border: 1px solid var(--edu-border);
	border-radius: 0;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	height: 42px;
	overflow: hidden;
	box-sizing: border-box;
}

.edu-hot-news__label {
	position: relative;
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	align-self: center;
	gap: 6px;
	height: 28px;
	padding: 0 12px;
	margin-left: 8px;
	margin-right: 8px;
	background: var(--edu-white);
	color: var(--edu-accent);
	white-space: nowrap;
	border: 1px solid var(--edu-accent);
	border-radius: 4px;
	box-sizing: border-box;
}

.edu-hot-news__label-icon {
	flex-shrink: 0;
	fill: currentColor;
	color: inherit;
}


.edu-hot-news__label-title {
	margin: 0;
	margin-block-start: 0;
	margin-block-end: 0 !important;
	padding: 0;
	color: currentColor;
	text-transform: uppercase;
}

.edu-hot-news__viewport {
	flex: 1;
	min-width: 0;
	overflow: hidden;
	height: 100%;
	display: flex;
	align-items: center;
}

.edu-hot-news__track {
	display: flex;
	align-items: center;
	white-space: nowrap;
	animation: eduTicker 145s linear infinite;
	will-change: transform;
}

.edu-hot-news__track:hover {
	animation-play-state: paused;
}

.edu-hot-news__group {
	display: flex;
	align-items: center;
	gap: 28px;
	flex-shrink: 0;
	padding-right: 28px;
}

.edu-hot-news__item {
	color: var(--edu-text);
	text-decoration: none;
	white-space: nowrap;
	display: inline-flex;
	align-items: center;
}

.edu-hot-news__item::before {
	content: "•";
	color: var(--edu-accent);
	margin-right: 12px;
	font-weight: bold;
	font-size: 16px;
}

.edu-hot-news__item:hover {
	color: var(--edu-primary);
}

.edu-hot-news__date {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	margin-left: 12px;
	color: var(--edu-muted);
}

.edu-hot-news__date-icon {
	flex-shrink: 0;
}

.edu-hot-news__empty-message {
	padding-left: 20px;
	color: var(--edu-text);
	font-size: 14px;
	font-style: italic;
	line-height: 42px;
}

@keyframes eduTicker {
	0% {
		transform: translate3d(0, 0, 0);
	}

	100% {
		transform: translate3d(-50%, 0, 0);
	}
}

/* Mobile & Tablet Styles */
@media (max-width: 767px) {
	.edu-hot-news__bar {
		height: 40px;
	}

	.edu-hot-news__label {
		gap: 6px;
		padding: 0 10px;
		margin-left: 6px;
		margin-right: 6px;
		height: 26px;
	}

	.edu-hot-news__label-title {
		font-size: 14px;
	}

	.edu-hot-news__item {
		font-size: 14px;
	}

	.edu-hot-news__group--clone {
		display: none;
	}

	.edu-hot-news__track {
		animation: eduTickerMobile 115s linear infinite;
	}

	.edu-hot-news__empty-message {
		padding-left: 12px;
		font-size: 13px;
	}
}

@keyframes eduTickerMobile {
	0% {
		transform: translate3d(0, 0, 0);
	}

	100% {
		transform: translate3d(-100%, 0, 0);
	}
}