.renewal-alert-wrap {
	position: sticky;
	top: 12px;
	z-index: 9999;
	margin: 0 0 12px;
	padding: 0 20px;
}

.renewal-alert {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	padding: 14px 16px;
	border: 1px solid #dc2626;
	border-left: 6px solid #b91c1c;
	border-radius: 10px;
	background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
	color: #991b1b;
	animation: renewal-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.renewal-alert__content {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.renewal-alert__label {
	display: inline-flex;
	width: fit-content;
	padding: 4px 10px;
	border-radius: 999px;
	background: #dc2626;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.renewal-alert__message {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.5;
}

.renewal-alert__close {
	flex: 0 0 auto;
	width: 32px;
	height: 32px;
	border: 0;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.08);
	color: #991b1b;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
}

.renewal-alert__close:hover {
	background: rgba(0, 0, 0, 0.14);
}

.renewal-sidebar-note {
	margin: 12px 16px 0;
	padding: 10px 12px;
	border: 1px solid #dc2626;
	border-left: 5px solid #b91c1c;
	border-radius: 10px;
	background: #fef2f2;
	color: #991b1b;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.45;
	text-align: center;
	animation: renewal-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@media (max-width: 767px) {
	.renewal-alert-wrap {
		padding: 0 12px;
	}

	.renewal-alert {
		flex-direction: row;
	}

	.renewal-alert__message {
		font-size: 13px;
	}
}

@keyframes renewal-pulse {
	0%, 100% {
		box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.45);
	}
	70% {
		box-shadow: 0 0 0 14px rgba(220, 38, 38, 0);
	}
}
