.shimmer-panel-wrapper {
	font-family:
		system-ui,
		-apple-system,
		sans-serif;
	padding: 40px 20px;
	display: flex;
	justify-content: center;
}

.shimmer-card {
	position: relative;
	background: linear-gradient(135deg,
			#1e1b4b,
			#312e81);
	border-radius: 14px;
	padding: 32px 24px;
	max-width: 350px;
	overflow: hidden;
}

.shimmer-card::after {
	content: "";
	position: absolute;
	top: -50%;
	left: -60%;
	width: 40%;
	height: 200%;
	background: linear-gradient(105deg,
			transparent 40%,
			rgba(255, 255, 255, 0.15) 50%,
			transparent 60%);
	animation: shimmerSweep 3s ease-in-out infinite;
	z-index: 1;
	pointer-events: none;
}

@keyframes shimmerSweep {
	0% {
		left: -60%;
	}

	100% {
		left: 140%;
	}
}

.shimmer-card>* {
	position: relative;
	z-index: 2;
}

.shimmer-tag {
	display: inline-block;
	padding: 4px 10px;
	background: rgba(255, 255, 255, 0.1);
	color: #c7d2fe;
	border-radius: 100px;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 12px;
	letter-spacing: 1px;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.shimmer-card h3 {
	margin: 0 0 8px 0;
	font-size: 18px;
	color: #ffffff;
}

.shimmer-card p {
	margin: 0;
	font-size: 14px;
	color: #a5b4fc;
	line-height: 1.5;
}