/* WRAPPER */
.zx-annc-wrap {
	width: 100%;
	padding: 10px;
	background: transparent;
	box-sizing: border-box;
}

/* CONTAINER */
.zx-annc-container {
	display: flex;
	align-items: center;
	background: linear-gradient(90deg, #fff, #d9d9d9);
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* LEFT LABEL */
.zx-annc-label {
	position: relative;
	background: #22409f;
	color: #fff;
	padding: 14px 20px;
	font-weight: 600;
	border-radius: 14px;
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}

.zx-annc-text {
	font-size: 16px;
}

/* PULSE DOT */
.zx-annc-pulse {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.6);
	position: relative;
}

.zx-annc-pulse::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.4);
	animation: zxPulseAnim 1.8s infinite;
}

@keyframes zxPulseAnim {
	0% {
		transform: scale(1);
		opacity: 0.7;
	}
	70% {
		transform: scale(2.2);
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}

/* MARQUEE AREA */
.zx-annc-marquee {
	overflow: hidden;
	width: 100%;
	padding: 0 15px;
}

/* TRACK */
.zx-annc-track {
	display: flex;
	gap: 60px;
	white-space: nowrap;
	animation: zxScroll 10s linear infinite;
}

/* ITEM */
.zx-annc-item {
	font-size: 15px;
	color: #333;
}

/* LINK */
.zx-annc-link {
	color: #22409f;
	text-decoration: none;
	font-weight: 600;
	margin-left: 8px;
}

.zx-annc-link:hover {
	color: #22409f;
	text-decoration: underline;
}

/* SCROLL ANIMATION */
@keyframes zxScroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

/* PAUSE ON HOVER */
.zx-annc-marquee:hover .zx-annc-track {
	animation-play-state: paused;
}

/* RESPONSIVE */
@media (max-width: 768px) {
	.zx-annc-container {
		flex-direction: column;
		align-items: stretch;
	}

	.zx-annc-label {
		border-radius: 12px 12px 0 0;
		justify-content: space-between;
	}

	.zx-annc-marquee {
		padding: 10px;
	}

	.zx-annc-item {
		font-size: 14px;
	}
}
