/**
 * Block: Logos — strip light (acf/ll-logos-strip-light)
 *
 * Self-contained, scoped palette declared on .block-ll-logos-strip-light. A
 * LIGHT (white) full-width band: a small CENTERED uppercase label ABOVE a
 * single centered row of brand IMAGE logos, rendered greyscale/muted, wrapping
 * when narrow. 1:1 with the Contact page §03 logos cut. Image logos (the dark
 * ll-logos-strip is the structure quarry).
 */

.block-ll-logos-strip-light {
	--lgl-bg: #ffffff;        /* light section background (cut is white) */
	--lgl-label: #6b7280;     /* muted grey centered label */
	--lgl-word: #1f2733;      /* text-fallback wordmark ink */
	--lgl-logo-opacity: .72;  /* muted resting state */

	background: var(--lgl-bg);
	padding: 40px 0 48px;
	font-family: var(--ll-font, 'Montserrat', -apple-system, sans-serif);
}

.block-ll-logos-strip-light__inner {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
	text-align: center;
}

/* ================================================================== label -- */
.block-ll-logos-strip-light__label {
	margin: 0;
	font: 700 12px/18px var(--ll-font, 'Montserrat', -apple-system, sans-serif);
	letter-spacing: 1.6px;
	text-transform: uppercase;
	color: var(--lgl-label);
}

/* ==================================================================== row -- */
.block-ll-logos-strip-light__row {
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
	display: flex;
	/* Desktop: all logos on a single inline row, spread across the strip.
	   space-between distributes the free space so logos stay full-size; the
	   min-width:0 + img max-width:min() below keep it from ever overflowing on
	   narrower desktops. Tablet/mobile restore wrap + center (media queries). */
	flex-wrap: nowrap;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}
.block-ll-logos-strip-light__item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
}

/* =============================================================== img logos -- */
.block-ll-logos-strip-light__link {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}
.block-ll-logos-strip-light__img {
	display: block;
	width: auto;
	height: 34px;              /* uniform logo cap-height across brands */
	max-width: min(170px, 100%); /* cap width, but shrink within a tight row */
	object-fit: contain;
	filter: grayscale(100%);
	opacity: var(--lgl-logo-opacity);
	transition: opacity .18s ease, filter .18s ease;
}
.block-ll-logos-strip-light__item:hover .block-ll-logos-strip-light__img,
.block-ll-logos-strip-light__link:focus-visible .block-ll-logos-strip-light__img {
	filter: grayscale(0);
	opacity: 1;
}

/* ========================================================= text fallback -- */
.block-ll-logos-strip-light__word {
	font: 700 19px/26px var(--ll-font, 'Montserrat', -apple-system, sans-serif);
	letter-spacing: -0.2px;
	color: var(--lgl-word);
	opacity: var(--lgl-logo-opacity);
}

/* ============================================================= responsive -- */
@media (max-width: 1024px) {
	.block-ll-logos-strip-light__inner { padding: 0 20px; }
	/* Below desktop the strip may wrap onto multiple centered rows again. */
	.block-ll-logos-strip-light__row { flex-wrap: wrap; justify-content: center; gap: 22px 44px; }
}
@media (max-width: 767px) {
	.block-ll-logos-strip-light { padding: 32px 0 36px; }
	.block-ll-logos-strip-light__inner {
		padding: 0 20px;
		gap: 24px;
	}
	.block-ll-logos-strip-light__row { gap: 20px 32px; }
	.block-ll-logos-strip-light__img { height: 28px; max-width: 130px; }
	.block-ll-logos-strip-light__word { font-size: 17px; }
}
