.wsr-announcement-shell {
	position: relative;
	overflow: hidden;
	min-height: 38px;
	border-bottom: 1px solid rgba(17, 17, 17, 0.28);
	background: #d6ae4f;
	box-shadow: 0 2px 8px rgba(17, 17, 17, 0.12);
	color: #111111;
}

.wsr-announcement-shell::before,
.wsr-announcement-shell::after {
	position: absolute;
	z-index: 2;
	top: 0;
	bottom: 0;
	width: 42px;
	pointer-events: none;
	content: "";
}

.wsr-announcement-shell::before {
	left: 0;
	background: linear-gradient(90deg, #d6ae4f, rgba(214, 174, 79, 0));
}

.wsr-announcement-shell::after {
	right: 0;
	background: linear-gradient(270deg, #d6ae4f, rgba(214, 174, 79, 0));
}

.wsr-announcement-ticker {
	display: flex;
	width: max-content;
	max-width: none;
	margin: 0;
	padding: 0;
	animation: wsr-announcement-ticker 34s linear infinite;
	will-change: transform;
}

.wsr-announcement-group {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: space-around;
	min-width: 100vw;
	padding: 7px 28px;
	white-space: nowrap;
}

.wsr-announcement-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	font-size: 0.8125rem;
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: 0.01em;
}

.wsr-announcement-item::after {
	display: inline-block;
	width: 5px;
	height: 5px;
	margin-inline: 24px;
	transform: rotate(45deg);
	background: #6b4a16;
	content: "";
}

.wsr-announcement-label {
	display: inline-flex;
	align-items: center;
	min-height: 22px;
	padding: 3px 7px;
	border: 1px solid rgba(17, 17, 17, 0.55);
	border-radius: 999px;
	font-size: 0.625rem;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.11em;
}

.wsr-announcement-message {
	margin: 0;
	font: inherit;
}

.wsr-announcement-link {
	display: inline-flex;
	align-items: center;
	min-height: 24px;
	color: #111111;
	font-size: 0.75rem;
	font-weight: 800;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.wsr-announcement-shell:hover .wsr-announcement-ticker,
.wsr-announcement-shell:focus-within .wsr-announcement-ticker {
	animation-play-state: paused;
}

@keyframes wsr-announcement-ticker {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

@media (max-width: 600px) {
	.wsr-announcement-shell {
		min-height: 36px;
	}

	.wsr-announcement-shell::before,
	.wsr-announcement-shell::after {
		width: 24px;
	}

	.wsr-announcement-ticker {
		animation-duration: 30s;
	}

	.wsr-announcement-group {
		padding: 6px 16px;
	}

	.wsr-announcement-item {
		gap: 7px;
		font-size: 0.75rem;
	}

	.wsr-announcement-item::after {
		margin-inline: 18px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.wsr-announcement-ticker {
		width: 100%;
		animation: none;
		transform: none;
		will-change: auto;
	}

	.wsr-announcement-group {
		display: none;
	}

	.wsr-announcement-group:first-child {
		display: flex;
		justify-content: center;
		width: 100%;
		min-width: 100%;
	}

	.wsr-announcement-group:first-child .wsr-announcement-item:not(:first-child) {
		display: none;
	}

	.wsr-announcement-group:first-child .wsr-announcement-item:first-child::after {
		display: none;
	}
}

@media print {
	.wsr-announcement-shell {
		display: none !important;
	}
}
