/*
 * ASCAR Partenaires — nuage de logos.
 * Jetons repris du thème ASCAR Carquois (autonome, comme les autres vues).
 * Disposition statique en flex-wrap centrée sur le blason du club, sans JS.
 */

.ascar-nuage-wrap {
	margin-bottom: 32px;
}

.ascar-nuage {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 28px;
}

.ascar-nuage__center,
.ascar-nuage__item {
	display: flex;
	align-items: center;
	justify-content: center;
}

.ascar-nuage__center {
	height: 90px;
	margin: 0 12px;
}

.ascar-nuage__item {
	height: 60px;
	padding: 10px;
	border-radius: 8px;
}

.ascar-nuage__center img,
.ascar-nuage__item-inner img {
	display: block;
	height: 100%;
	width: auto;
	max-width: none;
	object-fit: contain;
}

.ascar-nuage__item-inner {
	display: block;
	height: 100%;
	transition: transform 0.2s ease;
}

.ascar-nuage__item:hover .ascar-nuage__item-inner,
.ascar-nuage__item:focus-visible .ascar-nuage__item-inner {
	transform: scale(1.08);
}

.ascar-nuage__fallback {
	font-family: 'Oswald', sans-serif;
	font-size: 0.85rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: rgba(20, 22, 26, 0.6);
	text-align: center;
	white-space: nowrap;
}

@media (max-width: 600px) {
	.ascar-nuage {
		gap: 20px;
	}

	.ascar-nuage__center {
		height: 70px;
	}

	.ascar-nuage__item {
		height: 48px;
	}
}
