.wct-async-comments-stale-notice {
	margin: 0 0 1.5rem;
	padding: 1rem 1.25rem;
	border: 1px solid #000000;
	border-left-width: 6px;
	background: linear-gradient(136deg, #fff7ed 0%, #ffedd5 100%);
	box-shadow: 0 10px 24px rgba(217, 119, 6, 0.12);
	color: #000000;
}

.wct-async-comments-stale-notice p {
	margin: 0;
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.5;
}

.wct-async-comments-stale-refresh {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0.5rem 0 0;
	padding: 0.6rem 1rem;
	border: 1px solid #000000;
	background: #fff;
	color: #000000;
	font: inherit;
	font-weight: 700;
	line-height: 1.2;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.wct-async-comments-stale-refresh:hover,
.wct-async-comments-stale-refresh:focus-visible {
	background: #ffffff;
	color: #fff;
	box-shadow: 0 0 0 3px rgb(1 1 1 / 28%);
	outline: none;
	transform: translateY(-1px);
}

.wct-async-comments-stale-refresh:active {
	transform: translateY(0);
}

@media (prefers-color-scheme: dark) {
	.wct-async-comments-stale-notice {
		border-color: #ff3131;
		background: linear-gradient(135deg, #ffd2d2 0%, #ffa4a4 100%);
		box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
		color: #000000;
	}

	.wct-async-comments-stale-notice::before {
		background: #ffffff;
		color: #431407;
	}

	.wct-async-comments-stale-refresh {
		border-color: #000000;
		background: rgb(255 255 255);
		color: #000000;
	}

	.wct-async-comments-stale-refresh:hover,
	.wct-async-comments-stale-refresh:focus-visible {
		background: #ffffff;
		color: #000000;
		box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.22);
	}
}