.who-we-work-choose {
    margin-bottom: 120px;
}

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

.who-we-work-choose__title {
    font-size: 32px;
    font-weight: 400;
    line-height: 110%;
    background: linear-gradient(96deg, #E6E7EB -6.36%, #BDD3FA 81.94%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
}

@media screen and (max-width: 1024px) {
    .who-we-work-choose__title  {
        font-size: 24px;
        margin-bottom: 32px;
    }
}

.who-we-work-choose__row {
	display: grid;
	align-items: start;
	grid-template-columns: 1fr;
	gap: 24px;
}

@media screen and (min-width: 1025px) {
	.who-we-work-choose__row {
		grid-template-columns: 663px minmax(0, 1fr);
		column-gap: 16px;
		row-gap: 0;
		align-items: stretch;
	}
}

.who-we-work-choose__right-column {
	min-width: 0;
}

@media screen and (min-width: 1025px) {
	.who-we-work-choose__right-column {
		width: 663px;
		max-width: 100%;
		flex-shrink: 0;
		display: flex;
		flex-direction: column;
		align-self: start;
	}

	.who-we-work-choose__right-column img {
		display: block;
		width: 663px;
		height: 552px;
		max-width: 100%;
		object-fit: cover;
		flex-shrink: 0;
	}
}

@media screen and (max-width: 1024px) {
	.who-we-work-choose__right-column img {
		display: block;
		width: 100%;
		height: auto;
		aspect-ratio: 663 / 552;
		object-fit: cover;
	}
}

.who-we-work-choose__left-column {
	min-width: 0;
	width: 100%;
}

@media screen and (min-width: 1025px) {
	.who-we-work-choose__left-column {
		align-self: stretch;
		display: flex;
		flex-direction: column;
		min-height: 552px;
	}
}

.who-we-work-choose__list {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
	align-items: stretch;
}

@media screen and (min-width: 1025px) {
	.who-we-work-choose__list {
		flex: 1 1 auto;
		width: 100%;
		min-width: 0;
		min-height: 552px;
		height: 100%;
		display: grid;
		grid-template-columns: 1fr;
		grid-template-rows: repeat(4, 1fr);
		gap: 16px;
		align-content: stretch;
	}
}

@media screen and (max-width: 1024px) {
	.who-we-work-choose__list {
		justify-content: flex-start;
	}
}

.who-we-work-choose__item {
	padding: 16px 24px 18px 24px;
	border-radius: 24px;
	border: 1px solid rgba(100, 100, 102, 0.25);
	position: relative;
	z-index: 1;
	width: 100%;
	box-sizing: border-box;
}

@media screen and (min-width: 1025px) {
	.who-we-work-choose__item {
		padding: 16px 28px 18px 28px;
		min-height: 0;
		height: 100%;
		display: flex;
		flex-direction: column;
	}
}

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

.who-we-work-choose__item-top {
	display: flex;
	align-items: center;
	gap: 5px;
	margin-bottom: 4px;
}

.who-we-work-choose__item-top svg {
    flex: 0 0 24px;
}

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

.who-we-work-choose__item-description {
	color: #646466;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.2;
	max-width: 100%;
	margin: 0;
}

@media screen and (min-width: 1025px) {
	.who-we-work-choose__item-description {
		flex: 1 1 auto;
		min-height: 0;
	}
}

.who-we-work-choose__item-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
    border-radius: inherit;
}