/* ============================================================
   Widget: Designer Block (stil ELHO)
   poza mare sus + titlu + text
   ============================================================ */

.dblock {
	background: #EAF1E0;
	border-radius: 12px;
	overflow: hidden;
	box-sizing: border-box;
}

.dblock__media {
	width: 100%;
	line-height: 0;
}

.dblock__image {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

.dblock__body {
	position: relative;
	padding: 22px 24px 26px;
	overflow: hidden;
}

/* fundal SVG - doar in zona de text, in spate */
.dblock__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	line-height: 0;
	pointer-events: none;
}
.dblock__bg svg {
	width: 100%;
	height: 100%;
	display: block;
}

/* pensula SVG - colt dreapta-sus al zonei de text */
.dblock__brush {
	position: absolute;
	top: 22px;
	right: 24px;
	z-index: 2;
	line-height: 0;
	pointer-events: none;
}

/* continutul (titlu + text) deasupra fundalului */
.dblock__content {
	position: relative;
	z-index: 1;
}

.dblock__title {
	margin: 0 0 12px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	color: #1E5631;
}

.dblock__prefix {
	font-weight: 400;
	color: inherit;
	opacity: 0.85;
}

.dblock__text {
	font-size: 11px;
	line-height: 1.6;
	color: #2B2B2B;
}

.dblock__text p {
	margin: 0 0 12px;
}
.dblock__text p:last-child {
	margin-bottom: 0;
}

/* empty state */
.dblock--empty {
	padding: 20px;
	text-align: center;
	color: #999;
	background: transparent;
}
