.ica-key-supporters {
	background: var(--ica-bg);
	padding: var(--global-padding-desktop) 0;
	contain: layout;
}

/* Screen reader only content */
.ica-key-supporters .sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.ica-key-supporters .key-supporters__intro {
	display: grid;
	grid-template-columns: 2fr 3fr; /* 40% / 60% approximate */
	gap: clamp(16px, 3vw, 40px);
	align-items: start;
	margin-bottom: clamp(24px, 5vw, 48px);
}

.ica-key-supporters .intro__title {
	margin: 0;
	font-family: var(--font-heading) !important;
	font-weight: 600;
	font-size: 60px;
	line-height: 1.1;
}

/* Vertically center the title within its column */
.ica-key-supporters .intro__col--title {
	display: flex;
	align-items: center;
}

.ica-key-supporters .intro__desc {
	margin: 0;
	font-size: clamp(20px, 2.2vw, 21px);
	line-height: 1.45;
}

.ica-key-supporters .key-supporters__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: repeat(2, 1fr);
	gap: 0;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
}

.ica-key-supporters .supporter {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 90px;
	aspect-ratio: 1.5;
	overflow: hidden;
}

.ica-key-supporters .supporter__img {
	max-width: 100%;
	max-height: 70px;
	width: auto;
	height: auto;
	object-fit: contain;
}

@media (max-width: 768px) {
	.ica-key-supporters .key-supporters__intro {
		grid-template-columns: 1fr;
	}
	.ica-key-supporters .key-supporters__grid {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: repeat(4, auto);
	}
	.ica-key-supporters .intro__title {
		font-size: 50px;
	}
	.ica-key-supporters .supporter__img {
		max-height: 50px;
	}
}

@media (max-width: 480px) {
	.ica-key-supporters {
		padding: var(--global-padding-mobile) 0;
	}
	.ica-key-supporters .supporter__img {
		max-height: 40px;
	}
	.ica-key-supporters .supporter {
		min-height: 70px;
	}
}
