.who-we-work-info {
	margin-top: 80px;
	margin-bottom: 140px;
}

@media screen and (max-width: 1024px) {
	.who-we-work-info {
		margin-bottom: 80px;
	}
}

/* Same card shell + background image pattern as `.who-we-work-request`.
   Copy + CTAs sit above the image; optional gradient veil improves contrast on the left. */
.who-we-work-info__row {
	padding: 39px 52px;
	border-radius: 24px;
	border: 1px solid rgba(100, 100, 102, 0.5);
	position: relative;
	z-index: 1;
	overflow: hidden;
	isolation: isolate;
}

.who-we-work-info__row::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	border-radius: inherit;
	/* Radial (first) paints above the linear veil so the corner glow stays visible on the image. */
	background-image:
		radial-gradient(
			ellipse 135% 100% at 0% 100%,
			#73accb40 0%,
			transparent 25%
		),
		linear-gradient(
			90deg,
			rgba(14, 16, 20, 0.88) 0%,
			rgba(14, 16, 20, 0.55) 42%,
			rgba(14, 16, 20, 0.12) 72%,
			transparent 100%
		);
	background-repeat: no-repeat;
}

@media screen and (max-width: 1024px) {
	.who-we-work-info__row {
		padding-inline: 16px;
	}
}

.who-we-work-info__inner {
	position: relative;
	z-index: 2;
	box-sizing: border-box;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: clamp(24px, 3vw, 48px);
}

@media screen and (max-width: 1024px) {
	.who-we-work-info__inner {
		flex-direction: column;
		align-items: flex-start;
	}
}

.who-we-work-info__left-column {
	flex: 1 1 0%;
	min-width: 0;
	max-width: none;
	padding-right: 0;
}

.who-we-work-info__description {
	margin: 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.35;
	background: linear-gradient(96deg, #e6e7eb -6.36%, #bdd3fa 81.94%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

@media screen and (max-width: 1024px) {
	.who-we-work-info__description {
		font-size: 14px;
	}
}

.who-we-work-info__divider {
	margin-block: 22px;
}

.who-we-work-info__divider svg {
	display: block;
	max-width: 100%;
}

.who-we-work-info__right-column {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 494px;
	max-width: 100%;
	min-width: 0;
	flex: 0 0 auto;
	align-self: center;
}

@media screen and (max-width: 1024px) {
	.who-we-work-info__right-column {
		width: 100%;
		max-width: 494px;
		flex: 0 0 auto;
		align-self: stretch;
	}
}

@media screen and (max-width: 767px) {
	.who-we-work-info__right-column {
		gap: 10px;
		width: 100%;
		max-width: none;
		flex: 0 0 auto;
		align-self: stretch;
	}
}

.who-we-work-info__btn,
.who-we-work-info__link {
	box-sizing: border-box;
	width: 100%;
	height: 60px;
	padding: 0 16px;
	border-radius: 4px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	font-size: 16px;
	font-weight: 400;
	line-height: 105.735%;
	border: 1px solid #bdd3fa;
}

@media screen and (max-width: 1024px) {
	.who-we-work-info__btn,
	.who-we-work-info__link {
		height: 60px;
		padding-block: 0;
	}
}

.who-we-work-info__btn {
	color: #000;
	background: #bdd3fa;
}

.who-we-work-info__link {
	color: #bdd3fa;
	text-decoration: none;
	background-color: transparent;
}

.who-we-work-info__btn-icon,
.who-we-work-info__link-icon {
	width: 30px;
	height: 30px;
	padding: 8px;
	border-radius: 2px;
	border: 1px solid #000;
	display: block;
}

.who-we-work-info__btn-icon {
	border: 1px solid #000;
}

.who-we-work-info__link-icon {
	border: 1px solid #bdd3fa;
}

.who-we-work-info__image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	pointer-events: none;
	border-radius: inherit;
}

.who-we-work-info__image img {
	display: block;
	border-radius: inherit;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: right center;
}

@media screen and (max-width: 1024px) {
	.who-we-work-info__image img {
		object-position: left center;
	}
}
