.ica-key-supporters {
	background: var(--ica-bg);
	padding: 60px 0;
	height: auto;
	min-height: auto;
	max-height: none;
	contain: layout;
}

/* ===== REVEAL ANIMATIONS ===== */
.ica-key-supporters .reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
	            transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.ica-key-supporters .reveal.revealed {
	opacity: 1;
	transform: translateY(0);
}

/* Staggered animation delays */
.ica-key-supporters .key-supporters__intro.reveal {
	transition-delay: 0.1s;
}

.ica-key-supporters .supporter.reveal:nth-child(1) { transition-delay: 0.2s; }
.ica-key-supporters .supporter.reveal:nth-child(2) { transition-delay: 0.3s; }
.ica-key-supporters .supporter.reveal:nth-child(3) { transition-delay: 0.4s; }
.ica-key-supporters .supporter.reveal:nth-child(4) { transition-delay: 0.5s; }
.ica-key-supporters .supporter.reveal:nth-child(5) { transition-delay: 0.6s; }
.ica-key-supporters .supporter.reveal:nth-child(6) { transition-delay: 0.7s; }
.ica-key-supporters .supporter.reveal:nth-child(7) { transition-delay: 0.8s; }
.ica-key-supporters .supporter.reveal:nth-child(8) { transition-delay: 0.9s; }

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
	.ica-key-supporters .reveal {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}
	.ica-key-supporters .reveal.revealed {
		opacity: 1 !important;
		transform: none !important;
	}
}

/* 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-size: clamp(40px, 5vw, 60px);
	line-height: 1.1;
}

.ica-key-supporters .intro__desc {
	margin: 0;
	font-family: var(--font-ui) !important;
	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 {
	background: var(--ica-bg);
	border-radius: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(8px, 1.5vw, 12px);
	box-shadow: none;
	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 {
		padding: 50px 0;
	}
	
	.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, 1fr);
		gap: 0;
		width: 100%;
		max-width: 100%;
		overflow: hidden;
	}
	.ica-key-supporters .supporter__img {
		max-height: 50px;
	}
}

@media (max-width: 480px) {
	.ica-key-supporters {
		padding: 40px 0;
	}
	
	.ica-key-supporters .key-supporters__grid {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: repeat(4, 1fr);
		gap: 0;
		width: 100%;
		max-width: 100%;
		overflow: hidden;
	}
	.ica-key-supporters .supporter__img {
		max-height: 40px;
	}
	.ica-key-supporters .supporter {
		padding: clamp(4px, 1vw, 8px);
		min-height: 70px;
	}
}
