/* PINAX long-form pages, Kafeneio: Field notes, Kitchen, The record, legal and info pages.
   Owner: content agent. Tokens only (00-tokens.css); components from 10-base.css (eyebrow, record, ticket, code, status, prose).
   Flat colour only. Paper pages, condensed uppercase signs, 18px reading text, hairlines not boxes.
   Contrast used here: ink/paper 14.89, grey/paper 6.06, green/paper 7.77, red/paper 5.00, ink/pale 11.56,
   green/pale 6.03, grey/pale 4.70, red/pale 3.88 (22px display 800 eyebrow only), ink/mustard 8.33. */

/* ------------------------------------------------------------ reading text */

/* 18px body on every long-form page (not cart, checkout or account, which use --wide) */
.px-longform .px-page__content.px-prose,
.px-cms .px-prose {
	max-width: 44rem;
	font-size: 1.125rem;
	line-height: 1.65;
}

.px-cms-empty { padding-block: var(--px-space-5); }

/* Headings inside section wrappers (.px-block, .px-sources) are not direct prose children,
   so they would inherit the huge element size. Give them the prose sign size. */
.px-prose .px-block > h2,
.px-prose .px-harvest > h2,
.px-prose .px-sources > h2 {
	margin: 0 0 0.6em;
	font-family: var(--px-font-display);
	font-weight: 800;
	font-size: clamp(2.25rem, 1.8rem + 1.8vw, 3.25rem);
	line-height: 0.92;
	text-transform: uppercase;
	color: var(--px-ink);
}

.px-prose .px-block > h3 {
	margin: 1.6em 0 0.4em;
	font-family: var(--px-font-display);
	font-weight: 800;
	font-size: clamp(1.625rem, 1.4rem + 0.8vw, 2rem);
	line-height: 1;
	text-transform: uppercase;
}

.px-prose .px-block > * { margin-block: 0; }
.px-prose .px-block > * + * { margin-top: 1em; }
.px-prose .px-block > h2 + * { margin-top: 0; }
.px-prose .px-block > :where(ul, ol) > li + li { margin-top: 0.4em; }

/* Greek numerals for section counters: Α' Β' Γ' (upper-greek is not a predefined counter style) */
@counter-style px-greek {
	system: fixed;
	symbols: "Α" "Β" "Γ" "Δ" "Ε" "ΣΤ" "Ζ" "Η" "Θ" "Ι" "ΙΑ" "ΙΒ" "ΙΓ" "ΙΔ" "ΙΕ" "ΙΣΤ" "ΙΖ" "ΙΗ" "ΙΘ" "Κ";
	fallback: decimal;
}

/* One idea per section: a 2px ink rule opens each section, a red Greek numeral (Α', Β', Γ') sits above its sign */
.px-prose { counter-reset: px-sec; }

.px-prose > .px-block {
	counter-increment: px-sec;
	margin-top: var(--px-space-6);
	padding-top: var(--px-space-4);
	border-top: var(--px-rule);
}

.px-prose > .px-block:first-child { margin-top: 0; }

.px-prose > .px-block > h2::before {
	content: counter(px-sec, px-greek) "\02B9";
	content: counter(px-sec, px-greek) "\02B9" / "";
	display: block;
	margin-bottom: 0.35em;
	color: var(--px-red);
	font-size: 1.375rem;
	letter-spacing: 0.08em;
}

/* Lede paragraph kept inside a note body */
.px-prose > .px-lede {
	max-width: none;
	color: var(--px-ink);
	font-size: clamp(1.25rem, 1.15rem + 0.4vw, 1.4375rem);
	line-height: 1.45;
	font-weight: 500;
}

/* Small grey note line */
.px-prose .px-note {
	color: var(--px-grey);
	font-size: var(--px-text-sm);
}

/* Links in running text: green, red on hover (from base). Shortcode email link keeps the text face. */
.px-prose a.px-mono { font-weight: 700; }

/* ------------------------------------------------------------- lists */

/* Numbered steps: big red condensed numbers, pale hairlines */
.px-prose :is(.px-steps, .px-method) {
	counter-reset: px-step;
	padding: 0;
	list-style: none;
}

.px-prose :is(.px-steps, .px-method) > li {
	counter-increment: px-step;
	position: relative;
	margin: 0;
	padding: 0.9rem 0 0.9rem 3.25rem;
	border-top: var(--px-hairline);
}

.px-prose :is(.px-steps, .px-method) > li:first-child { border-top: 0; }

.px-prose :is(.px-steps, .px-method) > li::before {
	content: counter(px-step);
	position: absolute;
	top: 0.8rem;
	left: 0;
	width: 2.5rem;
	color: var(--px-red);
	font-family: var(--px-font-display);
	font-weight: 800;
	font-size: 2rem;
	line-height: 1;
	font-variant-numeric: tabular-nums lining-nums;
}

.px-prose .px-method > li { padding-block: 1.1rem; padding-left: 4rem; }
.px-prose .px-method > li::before { top: 0.95rem; font-size: 2.75rem; }

@media (max-width: 40rem) {
	.px-prose .px-method > li { padding-left: 3rem; }
	.px-prose .px-method > li::before { font-size: 2.25rem; }
}

/* The never list: bullet marker comes from 10-base.css */
.px-prose .px-never > li + li { margin-top: 0.6em; }

/* ---------------------------------------------------------- callouts */

/* A flat mustard notice. Never a border, never nested. */
.px-callout {
	margin: 0 0 var(--px-space-5);
	padding: var(--px-space-3) var(--px-space-4);
	background: var(--px-pale);
	color: var(--px-ink);
}

.px-callout > * { margin: 0; }
.px-callout > * + * { margin-top: 0.6em; }
.px-callout--honey { background: var(--px-mustard); }
.px-prose .px-callout a { color: var(--px-ink); font-weight: 700; }
.px-prose .px-callout a:hover { color: var(--px-ink); text-decoration-thickness: 3px; }
.px-callout :focus-visible { outline-color: var(--px-ink); }

/* ------------------------------------------------------------- tables */

.px-table-wrap {
	max-width: 100%;
	margin: 1.25em 0;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.px-prose .px-table-wrap .px-table,
.px-cms .px-table {
	display: table;
	width: 100%;
	font-size: 1rem;
	line-height: 1.5;
}

.px-prose .px-table :where(th, td) { overflow-wrap: break-word; }
.px-prose .px-table tbody th { font-weight: 700; }
.px-prose .px-table .px-mono { font-weight: 600; white-space: nowrap; }
.px-prose .px-table .px-money { white-space: nowrap; }

/* Cookie names are long single tokens: let them break anywhere instead of pushing the table wide */
.px-prose .px-table--cookies tbody th { width: 34%; font-weight: 600; overflow-wrap: anywhere; white-space: normal; hyphens: none; }
.px-prose .px-table--cookies td:last-child { width: 22%; }
.px-prose .px-table--record tbody th { width: 22%; }

.px-table__total :is(th, td) { border-top: var(--px-rule) !important; font-weight: 700; }

@media (max-width: 40rem) {
	.px-prose .px-table-wrap .px-table { font-size: 0.9375rem; }
	.px-prose .px-table :where(th, td) { padding-right: 0.625rem; hyphens: auto; }
	.px-prose .px-table thead th { font-size: 0.8125rem; letter-spacing: 0.06em; }
	.px-prose .px-table .px-mono { white-space: normal; }
	.px-prose .px-table .px-money { white-space: nowrap; }
}

/* On wide screens a table may run past the 44rem reading column; the wrap still has room for it */
@media (min-width: 75rem) {
	.px-longform .px-page__content.px-prose .px-table-wrap { width: 60rem; max-width: none; }
}

/* ---------------------------------------------------- specimen record */

/* The live origin record on The record and the contact block: a record list opened by a heavy ink rule */
.px-prose .px-specimen {
	display: block;
	margin: 1.25em 0;
	border-top: var(--px-rule-heavy);
}

.px-prose .px-specimen > div {
	display: grid;
	grid-template-columns: 9rem minmax(0, 1fr);
	gap: var(--px-space-3);
	padding-block: 0.8rem;
	border-top: var(--px-hairline);
}

.px-prose .px-specimen > div:first-child { border-top: 0; }
.px-prose .px-specimen dt { padding-top: 0.2em; }
.px-prose .px-specimen dd { margin: 0; }

@media (max-width: 32.5rem) {
	.px-prose .px-specimen > div { grid-template-columns: 1fr; gap: 0.125rem; }
}

/* ------------------------------------------------------------- sources */

.px-prose .px-sources {
	margin-top: var(--px-space-6);
	padding-top: var(--px-space-4);
	border-top: var(--px-rule);
}

.px-prose .px-sources ol {
	counter-reset: px-src;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 0.9375rem;
	line-height: 1.5;
}

.px-prose .px-sources li {
	counter-increment: px-src;
	display: grid;
	grid-template-columns: 2.25rem minmax(0, 1fr);
	margin: 0;
	padding-block: 0.6rem;
	border-top: var(--px-hairline);
}

.px-prose .px-sources li:first-child { border-top: 0; }

.px-prose .px-sources li::before {
	content: counter(px-src);
	color: var(--px-red);
	font-family: var(--px-font-display);
	font-weight: 800;
	font-size: 1.25rem;
	line-height: 1.1;
}

.px-prose .px-sources a { color: var(--px-ink); font-weight: 400; overflow-wrap: anywhere; }
.px-prose .px-sources a:hover { color: var(--px-red); }

/* --------------------------------------------------------- legal index */

.px-prose .px-index {
	margin: 0;
	padding: 0;
	list-style: none;
	border-top: var(--px-rule-heavy);
}

.px-prose .px-index li { margin: 0; border-bottom: var(--px-hairline); }

.px-prose .px-index a {
	position: relative;
	display: grid;
	gap: 0.3rem;
	padding: var(--px-space-4) 2.5rem var(--px-space-4) 0;
	color: var(--px-ink);
	font-weight: 400;
	text-decoration: none;
}

.px-prose .px-index a::after {
	content: "\2192";
	position: absolute;
	right: 0;
	top: var(--px-space-4);
	color: var(--px-red);
	font-size: 1.5rem;
	line-height: 1;
}

.px-index__title {
	font-family: var(--px-font-display);
	font-weight: 800;
	font-size: clamp(1.75rem, 1.5rem + 1vw, 2.375rem);
	line-height: 0.95;
	text-transform: uppercase;
}

.px-index__desc { color: var(--px-grey); font-size: 1rem; }
.px-prose .px-index a:hover .px-index__title { color: var(--px-red); }

/* ----------------------------------------------------- legal seller box */

/* A flat pale notice at the top of legal pages. Ink text on pale 11.56, grey labels 4.70. */
.px-legal-box {
	margin: 0 0 var(--px-space-5);
	padding: var(--px-space-4);
	background: var(--px-pale);
	color: var(--px-ink);
}

.px-legal-box__label {
	margin: 0 0 var(--px-space-3) !important;
	font-family: var(--px-font-display);
	font-weight: 800;
	font-size: 1.625rem;
	line-height: 1;
	text-transform: uppercase;
}

.px-prose .px-legal-box__list,
.px-legal-box__list { display: block; margin: 0; }

.px-legal-box__list > div {
	display: grid;
	gap: 0.125rem;
	padding-block: 0.6rem;
	border-top: 1px solid var(--px-grey);
}

.px-prose .px-legal-box__list dt { color: var(--px-grey); padding-top: 0.15em; }
.px-legal-box__list dd { margin: 0; font-weight: 600; }

@media (min-width: 40rem) {
	.px-legal-box__list > div { grid-template-columns: 15rem minmax(0, 1fr); gap: var(--px-space-3); }
}

.px-legal-box__note { margin: var(--px-space-3) 0 0 !important; font-size: 1rem; }

/* status chip in food-contact tables */
.px-docstatus {
	display: inline-block;
	margin: 0 0.4em 0.2em 0;
	padding: 0.15rem 0.45rem 0.05rem;
	background: var(--px-mustard);
	color: var(--px-ink);
	font-family: var(--px-font-display);
	font-weight: 800;
	font-size: 1rem;
	line-height: 1.1;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

/* ------------------------------------------------ embeds from other modules */

.px-shipping-embed { margin: 1.25em 0; font-size: 1rem; }

/* Waitlist on Harvest drops: one pale block, no border */
.px-waitlist-embed {
	margin: 1.5em 0 0;
	padding: var(--px-space-4);
	background: var(--px-pale);
	font-size: 1rem;
}

.px-prose .px-waitlist-embed > * { margin: 0; }
.px-prose .px-waitlist-embed > * + * { margin-top: var(--px-space-3); }
.px-prose .px-waitlist-embed a { color: var(--px-ink); }
.px-waitlist-embed :focus-visible { outline-color: var(--px-ink); }

.px-waitlist-embed__for {
	font-family: var(--px-font-display);
	font-weight: 800;
	font-size: 1.625rem;
	line-height: 1;
	text-transform: uppercase;
}

.px-waitlist-embed__for .px-mono {
	display: block;
	margin-bottom: 0.3rem;
	color: var(--px-grey);
	font-family: var(--px-font-text);
	font-size: var(--px-text-sm);
	letter-spacing: 0.06em;
}

.px-waitlist-embed__for a { text-decoration: none; }

.px-waitlist-embed__state {
	justify-self: start;
	color: var(--px-green);
	font-weight: 700;
	font-size: 0.875rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.px-waitlist-embed__lede { font-weight: 600; line-height: 1.45; }
.px-waitlist-embed__price { font-weight: 700; white-space: nowrap; font-variant-numeric: tabular-nums; }
.px-prose .px-waitlist-embed__action a.px-btn,
.px-prose .px-waitlist-embed__action a.px-btn:hover { color: var(--px-paper); text-decoration: none; }

/* ------------------------------------------------- shared: list sections */

.px-cms-list { padding-block: var(--px-space-4) var(--px-section); }

.px-cms-list__head {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: end;
	gap: var(--px-space-2) var(--px-space-4);
	padding-top: var(--px-space-5);
	border-top: var(--px-rule-heavy);
}

/* Title bands on article pages hold longer names */
.px-cms .px-titleband__title { max-width: 20ch; }

/* ------------------------------------------------------- notes: archive */

.px-notelist {
	margin: var(--px-space-4) 0 0;
	padding: 0;
	list-style: none;
}

.px-notelist__row {
	position: relative;
	display: grid;
	grid-template-columns: 3.5rem minmax(0, 1fr) 1.5rem;
	gap: 0 var(--px-space-3);
	padding-block: var(--px-space-4);
	border-top: var(--px-hairline);
}

.px-notelist__row:first-child { border-top: 0; }

.px-notelist__code {
	padding-top: 0.45rem;
	color: var(--px-grey);
	font-weight: 700;
	font-size: var(--px-text-sm);
	letter-spacing: 0.04em;
}

.px-notelist__title {
	font-family: var(--px-font-display);
	font-weight: 800;
	font-size: clamp(1.75rem, 1.4rem + 1.3vw, 2.625rem);
	line-height: 0.95;
	text-transform: uppercase;
}

.px-notelist__title a { text-decoration: none; }
.px-notelist__title a::after { content: ""; position: absolute; inset: 0; }
.px-notelist__title a:focus-visible { outline: none; }
.px-notelist__row:focus-within { outline: 3px solid var(--px-red); outline-offset: 3px; }
.px-notelist__row:hover .px-notelist__title a,
.px-notelist__row:hover .px-notelist__arrow { color: var(--px-red); }

.px-notelist__excerpt {
	max-width: 44rem;
	margin-top: 0.6rem;
	font-size: 1.0625rem;
	line-height: 1.5;
}

.px-notelist__test { margin-top: 0.5rem; color: var(--px-grey); font-size: 0.9375rem; }
.px-notelist__test .px-label { margin-right: 0.4em; }

.px-notelist__arrow {
	padding-top: 0.35rem;
	color: var(--px-red);
	font-size: 1.5rem;
	line-height: 1;
	text-align: right;
}

@media (max-width: 32.5rem) {
	.px-notelist__row { grid-template-columns: minmax(0, 1fr) 1.25rem; }
	.px-notelist__code { grid-column: 1 / -1; padding: 0 0 0.35rem; }
	.px-notelist__excerpt { font-size: 1rem; }
}

/* Proof band under the notes list */
.px-cms-band { padding-block: var(--px-section); }

.px-cms-band__grid {
	display: grid;
	gap: var(--px-space-4) var(--px-space-6);
	align-items: end;
}

.px-cms-band__title { max-width: 18ch; font-size: var(--px-h2); }
.px-cms-band__text { max-width: 30rem; font-size: 1.125rem; line-height: 1.5; }
.px-cms-band__text > * + * { margin-top: var(--px-space-4); }

@media (min-width: 62rem) {
	.px-cms-band__grid { grid-template-columns: 1.3fr 1fr; }
}

/* -------------------------------------------------------- notes: single */

.px-article__headgrid {
	display: grid;
	gap: var(--px-space-5) var(--px-space-6);
	align-items: end;
}

.px-article__facts { max-width: 34rem; }
.px-article__facts .px-code { font-size: 1.125rem; }

@media (min-width: 62rem) {
	.px-article__headgrid { grid-template-columns: minmax(0, 1.35fr) minmax(20rem, 1fr); }
	.px-article__headgrid--photo { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: center; }
}

.px-article__headgrid--photo .px-article__facts { margin-top: var(--px-space-5); }

.px-article__photo figcaption { margin-top: var(--px-space-2); }

.px-figure { margin-block: var(--px-space-4) 0; }

.px-figure__img {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	background: var(--px-pale);
}

.px-figure__cap { margin-top: var(--px-space-2); color: var(--px-grey); font-size: var(--px-text-sm); }

.px-article__layout {
	display: grid;
	gap: var(--px-space-6);
	padding-block: var(--px-space-6) var(--px-space-6);
}

@media (min-width: 62rem) {
	.px-article__layout { grid-template-columns: minmax(0, 44rem) minmax(16rem, 22rem); justify-content: space-between; }
	.px-article__layout--solo { grid-template-columns: minmax(0, 44rem); }
	.px-article__aside { position: sticky; top: var(--px-space-5); align-self: start; }
}

.px-article__aside .px-h3 { margin-bottom: var(--px-space-3); }

.px-objlist { margin: 0; padding: 0; list-style: none; border-top: var(--px-rule); }
.px-objlist li { border-bottom: var(--px-hairline); }

.px-objlist__item {
	position: relative;
	display: grid;
	gap: 0.2rem;
	padding: 0.9rem 2rem 0.9rem 0;
	font-weight: 700;
	text-decoration: none;
}

.px-objlist__item::after {
	content: "\2192";
	position: absolute;
	right: 0;
	top: 0.9rem;
	color: var(--px-red);
}

.px-objlist__item:hover .px-objlist__name { color: var(--px-red); }

/* ----------------------------------------------------------------- pager */

.px-pager {
	display: grid;
	gap: var(--px-space-4);
	padding-block: 0 var(--px-section);
}

.px-pager__link {
	display: grid;
	gap: 0.4rem;
	padding-top: var(--px-space-3);
	border-top: var(--px-rule);
	text-decoration: none;
}

.px-pager__title {
	font-family: var(--px-font-display);
	font-weight: 800;
	font-size: clamp(1.5rem, 1.3rem + 0.8vw, 2rem);
	line-height: 0.95;
	text-transform: uppercase;
}

.px-pager__link:hover .px-pager__title { color: var(--px-red); }

@media (min-width: 40rem) {
	.px-pager { grid-template-columns: 1fr 1fr; gap: var(--px-space-6); }
	.px-pager__link--next { grid-column: 2; text-align: right; }
}

/* ----------------------------------------------------- kitchen: archive */

.px-dishes {
	display: grid;
	gap: var(--px-space-6) var(--px-space-4);
	margin: 0;
	padding: 0;
	list-style: none;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 19rem), 1fr));
}

.px-dish {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.px-dish__img {
	display: block;
	width: 100%;
	background: var(--px-pale);
}

.px-dish__img img {
	width: 100%;
	max-width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
}

.px-dish__title {
	margin-top: var(--px-space-3);
	font-family: var(--px-font-display);
	font-weight: 800;
	font-size: var(--px-h3);
	line-height: 0.95;
	text-transform: uppercase;
}

.px-dish__title a { text-decoration: none; }
.px-dish__title a::after { content: ""; position: absolute; inset: 0; }
.px-dish__title a:focus-visible { outline: none; }
.px-dish:focus-within { outline: 3px solid var(--px-red); outline-offset: 6px; }
.px-dish:hover .px-dish__title a { color: var(--px-red); }

.px-dish__excerpt { margin-top: 0.6rem; color: var(--px-grey); font-size: 1rem; line-height: 1.5; }
.px-dish .px-status { margin-top: 0.6rem; }

/* ------------------------------------------------------ kitchen: single */

.px-recipe__head {
	display: grid;
	gap: var(--px-space-5) var(--px-space-6);
	padding-block: var(--px-space-5) var(--px-space-6);
	align-items: center;
}

@media (min-width: 62rem) {
	.px-recipe__head { grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); padding-top: var(--px-space-6); }
	.px-recipe__head--solo { grid-template-columns: minmax(0, 46rem); }
}

.px-recipe__photo img,
.px-article__photo img {
	width: 100%;
	max-width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	background: var(--px-pale);
}

@media (min-width: 62rem) {
	.px-recipe__photo img,
	.px-article__photo img { aspect-ratio: 4 / 5; }
}

.px-recipe__photo figcaption { margin-top: var(--px-space-2); }

.px-recipe__title {
	max-width: 16ch;
	font-size: clamp(2.75rem, 1.9rem + 3vw, 4.5rem);
	line-height: 0.92;
}

.px-recipe__el {
	margin-top: var(--px-space-3);
	font-size: 1.3125rem;
	line-height: 1.3;
}

.px-recipe__lede {
	max-width: 34rem;
	margin-top: var(--px-space-4);
	font-size: 1.125rem;
	line-height: 1.55;
}

.px-recipe__facts {
	display: flex;
	flex-wrap: wrap;
	gap: var(--px-space-3) var(--px-space-5);
	margin-top: var(--px-space-5);
	padding-top: var(--px-space-3);
	border-top: var(--px-rule);
}

.px-recipe__facts dd {
	margin: 0.3rem 0 0;
	font-family: var(--px-font-display);
	font-weight: 800;
	font-size: 2.25rem;
	line-height: 1;
	text-transform: none; /* "12 h 20 min": units stay lowercase, as on the kitchen tickets */
	font-variant-numeric: tabular-nums lining-nums;
}

.px-recipe__layout {
	display: grid;
	gap: var(--px-space-6);
	padding-block: 0 var(--px-space-6);
	align-items: start;
}

@media (min-width: 62rem) {
	.px-recipe__layout { grid-template-columns: minmax(20rem, 26rem) minmax(0, 44rem); gap: var(--px-space-6); }
	.px-recipe__list { position: sticky; top: var(--px-space-5); }
}

/* The grocer's list: a pale panel, ink heading, dashed grey rules between items */
.px-recipe__list {
	padding: var(--px-space-4) var(--px-space-4) var(--px-space-4);
	background: var(--px-pale);
	color: var(--px-ink);
}

.px-recipe__list :focus-visible { outline-color: var(--px-ink); }

.px-recipe__list-title {
	margin-bottom: var(--px-space-3);
	color: var(--px-ink);
	font-size: clamp(2.25rem, 1.9rem + 1.2vw, 2.875rem);
}

.px-recipe__list-title .px-eyebrow { margin-bottom: 0.4rem; }

.px-ingredients {
	margin: 0;
	padding: 0;
	list-style: none;
	border-top: 2px solid var(--px-ink);
}

.px-ingredients__row {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 0.35rem;
	padding-block: 0.7rem;
	border-bottom: 1px dashed var(--px-grey);
	font-size: 1.0625rem;
	line-height: 1.4;
}

.px-ingredients__tag { display: block; margin-bottom: 0.2rem; }

.px-ingredients__sku {
	justify-self: start;
	display: inline-flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.45em;
	font-size: var(--px-text-sm);
	text-decoration: none;
}

.px-ingredients__code {
	padding: 0.2rem 0.4rem 0.1rem;
	background: var(--px-green);
	color: var(--px-paper);
	font-family: var(--px-font-display);
	font-weight: 800;
	font-size: 1rem;
	line-height: 1;
	letter-spacing: 0.04em;
}

.px-ingredients__state {
	color: var(--px-grey);
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.px-ingredients__sku--ok .px-ingredients__state { color: var(--px-green); }
a.px-ingredients__sku:hover .px-ingredients__code { background: var(--px-ink); }
a.px-ingredients__sku:hover .px-ingredients__state { color: var(--px-ink); text-decoration: underline; }

@media (min-width: 26rem) {
	.px-ingredients__row:has(.px-ingredients__sku) { grid-template-columns: minmax(0, 1fr) auto; column-gap: var(--px-space-3); }
	.px-ingredients__row .px-ingredients__sku { justify-self: end; flex-direction: column; align-items: flex-end; gap: 0.25rem; text-align: right; }
}

.px-recipe__list-note {
	margin-top: var(--px-space-3);
	color: var(--px-grey);
	font-size: var(--px-text-sm);
	line-height: 1.45;
}

/* ------------------------------------------------------------ the record */

.px-record-page__head {
	display: grid;
	gap: var(--px-space-4);
	align-items: end;
}

.px-record-page__sign { display: none; }

@media (min-width: 62rem) {
	.px-record-page__head { grid-template-columns: minmax(0, 1fr) auto; }
	.px-record-page__sign { display: block; padding-bottom: var(--px-space-2); }
	.px-record-page__sign .px-plate { font-size: 4.5rem; transform: rotate(-2deg); }
}

/* Sections whose headings already carry clause numbers (terms, privacy) skip the Greek numeral */
.px-prose > .px-block--numbered > h2::before { content: none; }

/* ------------------------------------------------ specimen on The record */

/* The product-page record component, placed inside prose: prose heading and list styles must not leak in */
.px-prose .px-specimen-record { margin: 1.25em 0; }
.px-prose .px-specimen-record .px-record-block { margin-top: 0; }
.px-prose .px-specimen-record .px-record-block__title { margin: 0; }
.px-prose .px-specimen-record dl { display: block; margin-left: 0; }
.px-prose .px-specimen-record dd { margin-left: 0; }
.px-prose .px-specimen-record .px-record__sources { padding-left: 0; list-style: none; }
.px-prose .px-specimen-record .px-record__sources li { margin-left: 0; padding-left: 0; }
.px-prose .px-specimen-record .px-record__sources li::before { content: none; }
