/**
 * [bcc_ingredients] -- "Nos ingrédients" (2026-09-20, Fidel's ask to
 * make the site "nutrition and Peruvian superfood forward"). Sits on
 * the light Quinoa background, between the dark Story panel and the
 * gold BP Club band, matching the site's existing light/dark/light
 * rhythm rather than stacking two dark sections back to back.
 */
.bcc-ingredients {
	background: var(--bcc-quinoa);
	padding-block: 100px;
}

@media (width < 860px) {
	.bcc-ingredients {
		padding-block: 64px;
	}
}

.bcc-ingredients__wrap {
	width: min(1280px, 100% - 40px);
	margin-inline: auto;
}

.bcc-ingredients__head {
	max-width: 720px;
	margin-bottom: 40px;
}

.bcc-ingredients__eyebrow {
	font-family: var(--bcc-font-mono);
	font-size: 14px;
	letter-spacing: .03em;
	color: var(--bcc-chicha);
	margin: 0 0 12px;
}

.bcc-ingredients__head h2 {
	font-family: var(--bcc-font-display) !important;
	font-weight: 900;
	text-transform: uppercase;
	line-height: .88;
	font-size: clamp(3.375rem, 7.2vw, 7rem);
	color: var(--bcc-ink) !important;
	margin: 0;
}

.bcc-ingredients__lede {
	max-width: 560px;
	color: var(--bcc-muted);
	margin: 16px 0 0;
	font-size: 19px;
}

.bcc-ingredients__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

@media (width < 1020px) {
	.bcc-ingredients__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (width < 620px) {
	.bcc-ingredients__grid {
		grid-template-columns: 1fr;
	}
}

.bcc-ingredients__card {
	border: var(--bcc-border-width) solid var(--bcc-ink);
	background: var(--bcc-paper);
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	text-decoration: none;
	color: inherit;
	transition: transform .15s, box-shadow .15s;
}

.bcc-ingredients__card:hover {
	box-shadow: 8px 8px 0 var(--bcc-gold-400);
	transform: translate(-4px, -4px);
}

@media (prefers-reduced-motion: reduce) {
	.bcc-ingredients__card {
		transition: none;
	}

	.bcc-ingredients__card:hover {
		transform: none;
	}
}

.bcc-ingredients__dot {
	width: 22px;
	height: 22px;
	border-radius: 50% !important;
	border: 1.5px solid rgb(0 0 0 / .25);
	margin-bottom: 4px;
}

.bcc-ingredients__eyebrow-sm {
	font-family: var(--bcc-font-mono);
	font-size: 12px;
	letter-spacing: .03em;
	text-transform: uppercase;
	color: var(--bcc-muted);
	margin: 0;
}

.bcc-ingredients__card h3 {
	font-family: var(--bcc-font-display) !important;
	font-weight: 900;
	font-size: 30px;
	text-transform: uppercase;
	line-height: .95;
	margin: 0;
	color: var(--bcc-ink) !important;
}

.bcc-ingredients__blurb {
	font-size: 15px;
	line-height: 1.5;
	color: var(--bcc-ink);
	margin: 0;
	flex-grow: 1;
}

.bcc-ingredients__cta {
	font-family: var(--bcc-font-mono);
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .02em;
	color: var(--bcc-chicha);
	margin-top: 8px;
}
