#main-container-contacts.has-hot-news {
	overflow: hidden;
}

#main-container-contacts.has-hot-news > #main-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	max-width: 1200px;
	width: calc(100% - 16px);
	margin: 0 auto;
	padding: 0 8px;
	box-sizing: border-box;
	min-height: 34px;
}

#main-container-contacts.has-hot-news .info-menu {
	margin-left: 0;
	flex: 0 0 auto;
	padding: 6px 0;
	white-space: nowrap;
}

.hot-news {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.hot-news__link {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
	width: 100%;
	text-decoration: none !important;
	color: #fff !important;
}

.hot-news__badge {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 20px;
	padding: 0 8px;
	border-radius: 999px;
	background: #10e4a9;
	color: #020202;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.12em;
	line-height: 1;
	animation: hot-news-pulse 1.4s ease-in-out infinite;
}

.hot-news__viewport {
	flex: 1 1 auto;
	min-width: 0;
	overflow: hidden;
	mask-image: linear-gradient(90deg, #000 85%, transparent);
	-webkit-mask-image: linear-gradient(90deg, #000 85%, transparent);
}

.hot-news__track {
	display: flex;
	width: max-content;
	gap: 48px;
	animation: hot-news-scroll 16s linear infinite;
}

.hot-news__text {
	flex: 0 0 auto;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	white-space: nowrap;
	text-shadow: 0 0 12px rgba(255, 255, 255, 0.35);
}

.hot-news__link:hover .hot-news__text {
	color: #10e4a9;
}

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

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

@keyframes hot-news-pulse {
	0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(16, 228, 169, 0.55); }
	50% { transform: scale(1.06); box-shadow: 0 0 0 6px rgba(16, 228, 169, 0); }
}

@media all and (max-width: 889px) {
	#main-container-contacts.has-hot-news > #main-container {
		flex-wrap: wrap;
		min-height: 0;
		padding-top: 4px;
		padding-bottom: 4px;
	}

	.hot-news {
		width: 100%;
		flex-basis: 100%;
	}

	.hot-news__text {
		font-size: 12px;
	}

	#main-container-contacts.has-hot-news .info-menu {
		width: 100%;
		justify-content: flex-end;
		padding-top: 0;
	}

	.header-spacer {
		height: 132px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hot-news__track,
	.hot-news__badge {
		animation: none;
	}
}
