.action{margin-bottom: 15px;position: relative;background: var(--color-surface);border-radius:10px;box-shadow:0 16px 80px rgba(0,0,0,.07),0 3.2px 13px rgba(0,0,0,.025);overflow: hidden}
.action:hover{box-shadow: 0 16px 80px rgba(0,0,0,.10)}
.action img{width: 100%}
.action>span{display: block;font-size: 20px;padding: 15px 10px}
.hr{display: block;width: 100%;border-bottom: 1px solid var(--color-surface-transparent);margin-bottom: 15px}

.action-empty {
	position: relative;
	overflow: hidden;
	max-width: 780px;
	margin: 30px auto 50px;
	padding: 30px 30px 40px;
	border: 1px solid var(--color-border);
	border-radius: 18px;
	background: linear-gradient(145deg, var(--color-surface) 0%, var(--color-surface-muted) 100%);
	box-shadow: 0 8px 25px rgba(30, 69, 67, .08);
	text-align: center;
}

.action-empty:before,
.action-empty:after {
	position: absolute;
	border-radius: 50%;
	background: var(--color-brand-surface);
	content: '';
	pointer-events: none;
}

.action-empty:before {
	top: -55px;
	left: -55px;
	width: 140px;
	height: 140px;
}

.action-empty:after {
	right: -35px;
	bottom: -45px;
	width: 105px;
	height: 105px;
}

.action-empty-image {
	position: relative;
	z-index: 1;
	display: block;
	width: 320px;
	max-width: 100%;
	height: auto;
	margin: 0 auto 12px;
}

.action-empty-title {
	position: relative;
	z-index: 1;
	margin: 0 0 10px;
	color: var(--color-text);
	font-size: 24px;
	font-weight: 700;
	line-height: 1.3;
}

.action-empty-text {
	position: relative;
	z-index: 1;
	max-width: 540px;
	margin: 0 auto 24px;
	color: var(--color-text-muted);
	line-height: 1.6;
}

.action-empty-button {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 190px;
	min-height: 44px;
	text-decoration: none;
}

@media (max-width: 767px) {
	.action-empty {
		margin-top: 20px;
		margin-bottom: 30px;
		padding: 22px 18px 30px;
		border-radius: 14px;
	}

	.action-empty-image {
		width: 240px;
		margin-bottom: 8px;
	}

	.action-empty-title {
		font-size: 20px;
	}
}
