/* Case Results WPBakery block */
.case-results {
	width: 100vw;
	margin-right: calc(50% - 50vw);
	margin-left: calc(50% - 50vw);
	padding: 100px 0;
	background: var(--color-bg-dark);
	color: var(--color-text-secondary);

	* {
		font-weight: 400;
	}
}

.case-results__inner {
	/* max-width: 1216px; */
	margin: 0 auto;
}

.case-results__head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
	margin-bottom: 40px;
}

.case-results__headline {
	max-width: 860px;
}

.case-results__heading {
	margin: 12px 0 0;
	font-size: 44px;
	line-height: 1.2;
	letter-spacing: -0.01em;
	font-weight: 700;
	color: #fff;
}

.case-results__button {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 24px;
	margin-top: 8px;
	/* min-height: 54px; */
	min-width: 160px;
	border-radius: 10px;
	border: 1px solid #646b7f;
	background: transparent;
	color: #f4f6fb;
	font-size: 18px;
	line-height: 1.3;
	font-weight: 600;
	text-decoration: none;
	transition:
		border-color 0.2s ease,
		background-color 0.2s ease;
}

.case-results__button--mobile {
	display: none !important;
	font-size: 16px;
	padding-block: 9px;
}

.case-results__button::after {
	content: "→";
	font-size: 23px;
	line-height: 1;
	font-weight: 400;
	transform: translateY(-1px);
}

.case-results__button:hover {
	border-color: var(--color-yellow-accent);
	background: rgba(247, 211, 110, 0.08);
	color: #fff;
}

.case-results__list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

.case-results__card {
	display: grid;
	grid-template-columns: minmax(0, 0.37fr) minmax(0, 0.63fr);
	gap: 16px;
	padding: 16px;
	border-radius: 8px;
	background: var(--color-text-secondary-light);
}

.case-results__media {
	position: relative;
	display: block;
	height: 100%;
	min-height: 250px;
	border-radius: 4px;
	overflow: hidden;
	background: #363a4a;
}

.case-results__image,
.case-results__image-fallback {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.case-results__image {
	transition: transform 0.35s ease;
}

.case-results__media:hover .case-results__image {
	transform: scale(1.06);
}

.case-results__image-fallback {
	background: linear-gradient(135deg, #3b4053 0%, #313544 100%);
}

.case-results__content {
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.case-results__meta-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
}

.case-results__case-label {
	margin: 0;
	font-size: 16px;
	line-height: 1.3;
	color: var(--color-bg-light);
	text-transform: uppercase;
	font-weight: 400;
}

.case-results__read-more {
	display: inline-flex !important;
	align-items: center;
	gap: 8px;
	font-size: 18px;
	line-height: 1;
	font-weight: 600;
	color: var(--color-bg-light);
	text-decoration: none;
	white-space: nowrap;
}

.case-results__read-more::after {
	content: "→";
	font-size: 22px;
	line-height: 1;
	font-weight: 400;
	transform: translateY(-1px);
}

.case-results__title {
	margin: 0;
	font-size: 24px;
	line-height: 1.3;
	font-weight: 600;
	color: var(--color-yellow-accent);
}

.case-results__title a {
	color: inherit;
	text-decoration: none;
}

.case-results__summary {
	margin: 0;
	color: var(--color-text-secondary);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.3;
	display: -webkit-box;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.case-results__metrics {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin-top: 16px;
}

.case-results__metric {
	padding: 8px 12px;
	border-radius: 4px;
	background: var(--color-bg-dark);
	min-height: 76px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 3px;
	box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.03);
}

.case-results__metric-value {
	margin: 0;
	font-size: 18px;
	line-height: 1.3;
	font-weight: 600;
	color: var(--color-yellow-accent);
}

.case-results__metric-label {
	margin: 4px 0 0;
	font-size: 16px;
	line-height: 1.3;
	font-weight: 400;
	text-transform: uppercase;
	color: var(--color-bg-light);
}

.case-results__quote {
	margin: 0;
	padding-left: 12px;
	border-left: 3px solid var(--color-yellow-accent);
}

.case-results__quote-text {
	margin: 0;
	font-size: 18px;
	line-height: 1.3;
	color: var(--color-bg-light);
}

.case-results__quote-author {
	display: block;
	margin-top: 4px;
	font-size: 16px;
	line-height: 1.3;
	font-style: normal;
	color: var(--color-text-secondary);
}

.case-results a::after {
	display: none !important;
}

