div.small-brush-bg {
	--brush-tip-width: 88px;
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	min-height: 75px;
	margin: 20px 0;
	padding: 24px var(--brush-tip-width) 24px 10px;
	height: fit-content;
	border-left: 10px solid rgb(var(--main-green));
	background-color: transparent;
	overflow: visible;
}

/* Полотно мазка — останавливается перед хвостом кисти. */
.small-brush-bg::before {
	content: '';
	position: absolute;
	inset: 0 var(--brush-tip-width) 0 0;
	z-index: 0;
	background-color: rgba(var(--main-green), 0.08);
	pointer-events: none;
}

/* Хвост кисти целиком внутри блока — не режется overflow родителя. */
.small-brush-bg::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	z-index: 0;
	width: var(--brush-tip-width);
	height: 100%;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 97.303 238.59' preserveAspectRatio='xMinYMid meet'%3e%3cg transform='rotate(45 182.35 -226.53)'%3e%3cpath fill='%23EFF4EF' d='m440.5 173.1c5.858-5.857 5.858-15.355 0-21.213l-22.511-22.511c-5.091-5.091-13.084-5.846-19.038-1.8l-47.332 32.17 31.975-47.652c3.993-5.951 3.219-13.897-1.85-18.964l-48.83-48.83c-4.508-4.508-11.372-5.675-17.114-2.908l-8.443 4.065 4.043-8.97c2.563-5.685 1.341-12.361-3.068-16.771l-15.328-15.326c-5.857-5.857-15.355-5.857-21.213 0l-119.06 119.06 168.71 168.71z'/%3e%3c/g%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: left center;
	background-size: auto 100%;
	pointer-events: none;
}

.small-brush-bg a {
	position: relative;
	z-index: 1;
	color: rgb(var(--main-green));
	text-decoration: none;
	font-size: 18px;
}

.small-brush-bg a:hover {
	color: rgba(var(--main-green), 0.6);
	text-decoration: none;
}

@media (max-width: 575px) {
	div.small-brush-bg {
		--brush-tip-width: 64px;
		padding-left: 16px;
	}

	.small-brush-bg a {
		font-size: 16px;
	}
}

@media (min-width: 500px) and (max-width: 700px) {
	.small-brush-bg {
		padding-left: 20px;
	}

	.small-brush-bg a {
		font-size: 20px;
	}
}

@media (min-width: 701px) {
	.small-brush-bg {
		padding-left: 30px;
	}

	.small-brush-bg a {
		font-size: 25px;
	}
}
