.cls-showcase {
	background: var(--cls-background-color, #3f3121);
	padding: 32px 18px;
}

.cls-showcase__frame {
	max-width: 1080px;
	margin: 0 auto;
	background: #fff;
	box-shadow: 0 18px 50px rgba(24, 17, 11, 0.22);
}

.cls-showcase__hero {
	min-height: 280px;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	padding: 28px;
}

.cls-showcase__hero--align-left {
	justify-content: flex-start;
}

.cls-showcase__hero--align-center {
	justify-content: center;
}

.cls-showcase__hero--align-right {
	justify-content: flex-end;
}

.cls-showcase__hero-text {
	max-width: 360px;
	color: var(--cls-hero-text-color, #fff);
	font-size: clamp(28px, 3vw, var(--cls-hero-text-size, 42px));
	line-height: 1.12;
	font-weight: 700;
	text-align: inherit;
	text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

.cls-showcase__content {
	padding: 24px;
}

.cls-showcase__intro {
	display: flex;
	gap: 20px;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 24px;
}

.cls-showcase__intro-title {
	margin: 0;
	font-size: clamp(24px, 2vw, 30px);
	color: #2c251f;
	max-width: 66%;
	line-height: 1.25;
}

.cls-showcase__intro-amount {
	font-size: clamp(28px, 3vw, 42px);
	font-weight: 700;
	color: #77b64b;
	white-space: nowrap;
	flex-shrink: 0;
}

.cls-showcase__section-title {
	background: #d9dddf;
	padding: 10px 14px;
	font-weight: 700;
	text-align: center;
	color: #313131;
	margin-bottom: 24px;
}

.cls-showcase__grid {
	display: grid;
	grid-template-columns: repeat(var(--cls-grid-columns, 3), minmax(0, 1fr));
	gap: 22px;
	align-items: stretch;
}

.cls-showcase__card {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 14px 10px 8px;
}

.cls-showcase__logo-wrap {
	height: 92px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 14px;
}

.cls-showcase__logo {
	max-width: 100%;
	max-height: 80px;
	width: auto;
	height: auto;
	object-fit: contain;
}

.cls-showcase__logo-placeholder {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: #ece5d8;
	color: #5b4428;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	font-weight: 700;
}

.cls-showcase__card-title {
	margin: 0 0 8px;
	font-size: 18px;
	line-height: 1.25;
	color: #1f1f1f;
}

.cls-showcase__card-description {
	font-size: 15px;
	line-height: 1.55;
	color: #444;
	flex: 1;
}

.cls-showcase__lead-text {
	margin: 0;
	font-size: 14px;
	line-height: 1.55;
	color: #444;
	flex: 1;
}

.cls-showcase__lead-title {
	font-weight: 800;
	color: #1f1f1f;
}

.cls-showcase__lead-description {
	font-weight: 400;
}

.cls-showcase--logo-style-inline .cls-showcase__card {
	padding-top: 10px;
}

.cls-showcase--logo-style-inline .cls-showcase__card-title {
	text-align: center;
	font-weight: 700;
	width: 100%;
	margin-bottom: 4px;
}

.cls-showcase--logo-style-inline .cls-showcase__card-description {
	line-height: 1.5;
}

.cls-showcase--logo-style-lead .cls-showcase__card {
	padding-top: 8px;
}

.cls-showcase--logo-style-lead .cls-showcase__logo-wrap {
	margin-bottom: 10px;
}

.cls-showcase--logo-style-lead .cls-showcase__lead-text {
	font-size: 14px;
	line-height: 1.48;
}

@media (max-width: 900px) {
	.cls-showcase__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.cls-showcase__hero {
		min-height: 220px;
		justify-content: center;
		align-items: center;
	}

	.cls-showcase__hero-text {
		text-align: center;
	}

	.cls-showcase__intro {
		flex-direction: column;
		align-items: flex-start;
	}

	.cls-showcase__grid {
		grid-template-columns: 1fr;
	}
}
