/*
 * In The Kibble v4.
 *
 * Implements the "In The Kibble redesign" design document. The document is
 * written with inline styles and recolours itself by substituting hex codes out
 * of an eighteen-slot base list; here those slots arrive as --itk4-* custom
 * properties from inc/palette.php, so a palette change is one declaration block
 * instead of a walk over every node.
 *
 * The prefix is --itk4-, not --itk-, on purpose: the ITK plugins own --itk-* and
 * redefine several of those properties inside their own panels, so a theme
 * sharing the prefix loses its palette wherever a panel is printed.
 *
 * Contents
 *   1.  Base
 *   2.  Shell and rail
 *   3.  Header
 *   4.  Hero
 *   5.  Section furniture
 *   6.  Product cards
 *   7.  Panels
 *   8.  Nutrition
 *   9.  Recall table
 *   10. Newsletter
 *   11. Footer
 *   12. Index and archives
 *   13. Single review
 *   14. Editorial pages
 *   15. Responsive
 */

/* ------------------------------------------------------------------ 1. Base */

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	overflow-x: hidden;
	background: var(--itk4-paper);
	color: var(--itk4-ink);
	font-family: 'Karla', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	/*
	 * Bricolage Grotesque is loaded with its optical size axis (opsz 12..96) but
	 * nothing was asking the browser to use it, so display type was being set
	 * with body-copy letterforms scaled up. Auto lets the axis track font-size,
	 * which is the whole reason to pay for a variable font.
	 */
	font-optical-sizing: auto;
}

/*
 * Every figure on this site sits in a column, a ledger or a card that aligns
 * with the one above it, so numerals are tabular by default in those contexts.
 * Proportional numerals in a starch column make the decimal points wander.
 */
.itk4-card__figures,
.itk4-ledger,
.itk4-stats,
.itk4-dist__key,
.itk4-readout__figure,
.itk4-scorecard,
.itk4-table__date,
.itk4-rank__num,
.itk4-figure__value,
.itk4-tile__figure,
.itk4-index__count,
.itk4-pagination {
	font-variant-numeric: tabular-nums;
	font-feature-settings: 'tnum' 1;
}

a {
	color: var(--itk4-accent);
	text-decoration: none;
}

a:hover,
a:focus-visible {
	color: var(--itk4-ink);
}

::selection {
	background: var(--itk4-flag);
	color: var(--itk4-ink);
}

img {
	max-width: 100%;
	height: auto;
}

button,
input,
select,
textarea {
	font: inherit;
	color: inherit;
}

:focus-visible {
	outline: 2px solid var(--itk4-accent);
	outline-offset: 2px;
	border-radius: 3px;
}

/*
 * The accent is a mid-dark blue, which all but disappears against the ink
 * sections. Anything sitting on ink or on the accent panel takes the flag colour
 * for its focus ring instead, so keyboard position is never lost.
 */
.itk4-rail :focus-visible,
.itk4-footer :focus-visible,
.itk4-nutrition :focus-visible,
.itk4-scorecard :focus-visible,
.itk4-panel--accent :focus-visible,
.itk4-table__head :focus-visible {
	outline-color: var(--itk4-flag);
}

.itk4-display {
	font-family: 'Bricolage Grotesque', 'Karla', sans-serif;
	font-weight: 700;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.itk4-skip {
	position: absolute;
	left: -9999px;
	z-index: 999;
	padding: 12px 20px;
	background: var(--itk4-ink);
	color: var(--itk4-flag);
	border-radius: 0 0 9px 0;
}

.itk4-skip:focus {
	left: 0;
	top: 0;
}

/* -------------------------------------------------------- 2. Shell and rail */

.itk4-shell {
	background: var(--itk4-paper);
	min-height: 100vh;
	padding-left: 60px;
	overflow-x: hidden;
}

.itk4-rail {
	position: fixed;
	left: 0;
	top: 0;
	bottom: 0;
	width: 60px;
	background: var(--itk4-ink);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	padding-top: 16px;
	z-index: 50;
}

.itk4-rail__mark {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--itk4-flag);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 17px;
	margin-bottom: 14px;
	flex: 0 0 auto;
}

.itk4-rail__item {
	width: 38px;
	height: 38px;
	border-radius: 9px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 600;
	color: var(--itk4-mute-rail);
	flex: 0 0 auto;
	transition: background 0.15s ease, color 0.15s ease;
}

.itk4-rail__item:hover,
.itk4-rail__item:focus-visible {
	background: var(--itk4-ink-lift);
	color: var(--itk4-paper);
}

.itk4-rail__item.is-current {
	background: var(--itk4-flag);
	color: var(--itk4-ink);
}

/* ---------------------------------------------------------------- 3. Header */

.itk4-header {
	position: sticky;
	top: 0;
	z-index: 40;
	background: color-mix(in srgb, var(--itk4-paper) 90%, transparent);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	display: flex;
	align-items: center;
	gap: 28px;
	flex-wrap: wrap;
	padding: 18px 44px;
	border-bottom: 1px solid var(--itk4-line);
}

.itk4-wordmark {
	font-size: 23px;
	font-family: 'Bricolage Grotesque', 'Karla', sans-serif;
	font-weight: 700;
	letter-spacing: -0.02em;
	white-space: nowrap;
	color: var(--itk4-ink);
}

.itk4-wordmark__dot {
	color: var(--itk4-flag);
}

.itk4-nav {
	display: flex;
	gap: 26px;
	font-size: 14px;
	font-weight: 600;
}

.itk4-nav a,
.itk4-nav__list a {
	color: var(--itk4-ink);
	padding-bottom: 2px;
	border-bottom: 2px solid transparent;
}

.itk4-nav a:hover,
.itk4-nav a.is-current,
.itk4-nav .current-menu-item > a {
	color: var(--itk4-accent);
	border-bottom-color: var(--itk4-flag);
}

.itk4-nav__list {
	display: flex;
	gap: 26px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.itk4-nav__list li {
	list-style: none;
}

/* In the footer the same component stacks, and sets its own spacing. */
.itk4-footer__col .itk4-nav__list,
.itk4-footer .itk4-nav {
	flex-direction: column;
	gap: 12px;
}

.itk4-header__spacer {
	flex: 1;
}

.itk4-minisearch {
	display: flex;
	align-items: center;
	gap: 10px;
	background: #fff;
	border: 1px solid var(--itk4-line);
	border-radius: 999px;
	padding: 9px 16px;
	flex: 0 1 270px;
	min-width: 0;
	overflow: hidden;
}

.itk4-minisearch__icon {
	font-size: 12px;
	color: var(--itk4-accent);
	flex: 0 0 auto;
}

.itk4-minisearch input {
	border: 0;
	background: none;
	font-size: 12px;
	width: 100%;
	min-width: 0;
	padding: 0;
}

.itk4-minisearch input::placeholder {
	color: var(--itk4-mute);
	opacity: 1;
}

.itk4-minisearch input:focus {
	outline: none;
}

.itk4-avatar {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--itk4-ink);
	color: var(--itk4-flag);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 700;
	flex: 0 0 auto;
}

/* ------------------------------------------------------------------ 4. Hero */

.itk4-hero {
	padding: 76px 44px 48px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.itk4-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--itk4-flag);
	color: var(--itk4-ink);
	font-size: 13px;
	font-weight: 600;
	padding: 8px 16px;
	border-radius: 999px;
	margin-bottom: 26px;
}

.itk4-hero h1 {
	margin: 0;
	max-width: 900px;
	font-size: clamp(38px, 5vw, 68px);
	line-height: 1.04;
	font-family: 'Bricolage Grotesque', 'Karla', sans-serif;
	font-weight: 700;
	letter-spacing: -0.03em;
	text-wrap: balance;
}

.itk4-hero h1 em {
	color: var(--itk4-accent);
	font-style: normal;
}

.itk4-hero__lede {
	margin: 22px 0 0;
	max-width: 600px;
	font-size: 18px;
	line-height: 1.6;
	color: var(--itk4-body);
	text-wrap: pretty;
}

.itk4-bigsearch {
	display: flex;
	align-items: center;
	gap: 8px;
	background: #fff;
	border: 1px solid var(--itk4-line);
	box-shadow: 0 12px 34px -20px rgba(14, 33, 30, 0.55);
	border-radius: 999px;
	padding: 8px 8px 8px 24px;
	margin-top: 32px;
	width: 100%;
	max-width: 560px;
	min-width: 0;
	text-align: left;
}

.itk4-bigsearch input {
	flex: 1;
	min-width: 0;
	border: 0;
	background: none;
	font-size: 15px;
	padding: 0;
}

.itk4-bigsearch input::placeholder {
	color: var(--itk4-mute);
	opacity: 1;
}

.itk4-bigsearch input:focus {
	outline: none;
}

.itk4-btn {
	/*
	 * inline-flex, not inline: the design uses a <button> here but the panel CTA
	 * is a link, and vertical margin does not apply to an inline box, so
	 * margin-top on the panel button would be silently dropped.
	 */
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	background: var(--itk4-flag);
	color: var(--itk4-ink);
	font-size: 13px;
	font-weight: 600;
	padding: 13px 24px;
	border-radius: 999px;
	cursor: pointer;
	white-space: nowrap;
	transition: background 0.15s ease, color 0.15s ease;
}

.itk4-btn:hover,
.itk4-btn:focus-visible {
	background: var(--itk4-ink);
	color: var(--itk4-flag);
}

.itk4-chips {
	display: flex;
	gap: 10px;
	margin-top: 16px;
	flex-wrap: wrap;
	justify-content: center;
}

.itk4-chip {
	font-size: 13px;
	color: var(--itk4-body);
	background: var(--itk4-chip);
	padding: 7px 14px;
	border-radius: 999px;
}

a.itk4-chip:hover {
	background: var(--itk4-ink);
	color: var(--itk4-flag);
}

.itk4-stats {
	display: flex;
	align-items: center;
	gap: 22px;
	margin-top: 34px;
	font-size: 14px;
	color: var(--itk4-body);
	flex-wrap: wrap;
	justify-content: center;
}

.itk4-stats strong {
	color: var(--itk4-ink);
}

.itk4-stats__dot {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--itk4-mute-warm);
}

/* ------------------------------------------------- 4b. The catalog readout */

/*
 * The object that closes the hero. It replaced three round-number statistics
 * with the two things only this catalog can say, both read live: how the whole
 * shelf scores against our own rubric, and the median starch figure that no
 * manufacturer prints.
 */
.itk4-readout {
	width: 100%;
	max-width: 940px;
	margin-top: 46px;
	text-align: left;
	display: grid;
	grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
	gap: 40px;
	align-items: start;
	padding-top: 30px;
	border-top: 1px solid var(--itk4-line);
}

.itk4-readout__claim {
	margin: 0 0 20px;
	font-family: 'Bricolage Grotesque', 'Karla', sans-serif;
	font-weight: 600;
	font-size: clamp(19px, 2vw, 24px);
	letter-spacing: -0.02em;
	line-height: 1.25;
	color: var(--itk4-ink);
	text-wrap: balance;
}

.itk4-readout__claim strong {
	font-weight: 700;
	font-variant-numeric: tabular-nums;
}

.itk4-readout__claim em {
	font-style: normal;
	color: var(--itk4-accent);
}

/*
 * The distribution bar. Segments are proportional to the real counts, so the
 * A band really is a sliver: that is the argument, not a styling accident.
 */
.itk4-dist {
	display: flex;
	width: 100%;
	height: 46px;
	border-radius: 8px;
	overflow: hidden;
	background: var(--itk4-rule);
}

.itk4-dist__seg {
	display: flex;
	align-items: center;
	justify-content: center;
	width: var(--itk4-seg);
	min-width: 0;
	overflow: hidden;
	transition: width 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.itk4-dist__seg b {
	font-family: 'Bricolage Grotesque', 'Karla', sans-serif;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	/*
	 * Full opacity: at 0.85 the letter blended toward its own band and cost about
	 * a point of contrast on the darker steps for no visual gain.
	 */
}

/*
 * A descending ramp in lightness rather than a good-to-bad colour scale. A red
 * "E" would be an editorial claim the rubric does not make, and three of the
 * four palettes carry no warning colour to make it with.
 */
.itk4-dist__seg[data-grade='A'] {
	background: var(--itk4-flag);
	color: var(--itk4-ink);
}

.itk4-dist__seg[data-grade='B'] {
	background: color-mix(in srgb, var(--itk4-flag) 52%, var(--itk4-paper));
	color: var(--itk4-ink);
}

.itk4-dist__seg[data-grade='C'] {
	background: var(--itk4-chip);
	color: var(--itk4-body);
}

.itk4-dist__seg[data-grade='D'] {
	background: var(--itk4-line);
	color: var(--itk4-body);
}

/*
 * Ink, not paper. Paper on this step measured 2.05:1 to 2.16:1 depending on
 * palette, well under AA; ink on the same ground clears 6.3:1 everywhere.
 */
.itk4-dist__seg[data-grade='E'] {
	background: color-mix(in srgb, var(--itk4-line) 72%, var(--itk4-ink));
	color: var(--itk4-ink);
}

.itk4-dist__key {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 20px;
	margin: 16px 0 0;
	padding: 0;
	list-style: none;
	font-size: 13px;
	color: var(--itk4-body);
}

.itk4-dist__key li {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}

.itk4-dist__key i {
	width: 10px;
	height: 10px;
	border-radius: 3px;
	flex: 0 0 auto;
}

.itk4-dist__key i[data-grade='A'] { background: var(--itk4-flag); }
.itk4-dist__key i[data-grade='B'] { background: color-mix(in srgb, var(--itk4-flag) 52%, var(--itk4-paper)); }
.itk4-dist__key i[data-grade='C'] { background: var(--itk4-chip); }
.itk4-dist__key i[data-grade='D'] { background: var(--itk4-line); }
.itk4-dist__key i[data-grade='E'] { background: color-mix(in srgb, var(--itk4-line) 72%, var(--itk4-ink)); }

.itk4-dist__letter {
	font-weight: 700;
	color: var(--itk4-ink);
}

.itk4-dist__n {
	color: var(--itk4-body);
}

.itk4-readout__aside {
	padding-left: 40px;
	border-left: 1px solid var(--itk4-line);
}

.itk4-readout__figure {
	font-family: 'Bricolage Grotesque', 'Karla', sans-serif;
	font-weight: 700;
	font-size: clamp(52px, 6vw, 76px);
	line-height: 0.9;
	letter-spacing: -0.045em;
	color: var(--itk4-accent);
}

.itk4-readout__caption {
	margin-top: 14px;
	font-size: 13.5px;
	line-height: 1.5;
	color: var(--itk4-body);
}

.itk4-readout__caption strong {
	display: block;
	color: var(--itk4-ink);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-size: 11px;
	margin-bottom: 7px;
}

/* ---------------------------------------------------- 5. Section furniture */

.itk4-section {
	padding: 70px 44px;
}

.itk4-section--tight {
	padding-bottom: 20px;
}

.itk4-sectionhead {
	display: flex;
	align-items: flex-end;
	gap: 24px;
	margin-bottom: 30px;
}

.itk4-eyebrow {
	font-size: 13px;
	font-weight: 600;
	color: var(--itk4-accent);
	margin-bottom: 10px;
}

.itk4-sectionhead h2 {
	margin: 0;
	font-size: clamp(30px, 3.4vw, 44px);
	font-family: 'Bricolage Grotesque', 'Karla', sans-serif;
	font-weight: 700;
	letter-spacing: -0.025em;
	line-height: 1.05;
}

.itk4-sectionhead__spacer {
	flex: 1;
}

.itk4-more {
	font-size: 12px;
	color: var(--itk4-ink);
	border-bottom: 2px solid var(--itk4-flag);
	padding-bottom: 3px;
	white-space: nowrap;
}

.itk4-more:hover {
	color: var(--itk4-accent);
}

/* --------------------------------------------------------- 6. Product cards */

/*
 * The document sizes this grid with auto-fit, which at 1440px yields five
 * columns however the "featured columns" control is set: the setting was
 * decorative. Explicit tracks make it mean what it says, and step down on their
 * own at each breakpoint.
 */
.itk4-grid {
	display: grid;
	grid-template-columns: repeat(var(--itk4-cols, 4), minmax(0, 1fr));
	gap: 18px;
	margin-top: 34px;
}

@media (max-width: 1180px) {
	.itk4-grid {
		grid-template-columns: repeat(min(var(--itk4-cols, 4), 3), minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.itk4-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 540px) {
	.itk4-grid {
		grid-template-columns: minmax(0, 1fr);
	}
}

.itk4-card {
	background: #fff;
	border: 1px solid var(--itk4-line);
	border-radius: 14px;
	padding: 18px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	color: var(--itk4-ink);
	transition: border-color 0.15s ease, transform 0.15s ease;
}

.itk4-card:hover,
.itk4-card:focus-visible {
	border-color: var(--itk4-ink);
	transform: translateY(-3px);
	color: var(--itk4-ink);
}

.itk4-card__shot {
	position: relative;
	height: 170px;
	background: var(--itk4-paper-lift);
	border-radius: 9px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.itk4-card__shot img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	/*
	 * contain, not cover: these are bag shots on a white studio ground, and
	 * cropping one to fill the box cuts the brand off the front of the bag.
	 */
	padding: 8px;
}

.itk4-card__shot--empty::after {
	content: '🐾';
	font-size: 28px;
	opacity: 0.35;
}

.itk4-card__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.itk4-card__brand {
	font-size: 12px;
	color: var(--itk4-accent);
	text-transform: uppercase;
	letter-spacing: 0.02em;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/*
 * The grade badge. Every grade printed the same lime chip before, so an A and an
 * E were visually identical and the badge carried no information at a glance.
 * Emphasis now recedes with the score across three tiers; the distribution bar
 * in the hero is what teaches the reader what a B is worth.
 */
.itk4-score {
	font-family: 'Bricolage Grotesque', 'Karla', sans-serif;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	padding: 5px 9px;
	border-radius: 5px;
	flex: 0 0 auto;
	border: 1px solid transparent;
}

.itk4-score[data-tier='high'] {
	background: var(--itk4-flag);
	color: var(--itk4-ink);
}

.itk4-score[data-tier='mid'] {
	background: var(--itk4-chip);
	color: var(--itk4-body);
}

.itk4-score[data-tier='low'] {
	background: transparent;
	color: var(--itk4-mute);
	border-color: var(--itk4-line);
}

.itk4-card__name {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.01em;
	color: var(--itk4-ink);
}

.itk4-card__figures {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-top: auto;
	padding-top: 12px;
	border-top: 1px solid var(--itk4-rule);
	font-size: 11px;
	color: var(--itk4-body);
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

/*
 * The guaranteed-analysis strip. Segments are omitted rather than zeroed when
 * the manufacturer did not publish them, so a short strip reads as incomplete
 * data and not as a food containing no fat. Starch is hatched because it is the
 * one segment nobody prints on a bag: it is derived by subtraction.
 */
.itk4-strip {
	display: flex;
	width: 100%;
	/*
	 * 7px, not 4px. This strip is the only object on the site that shows a whole
	 * bag's composition at a glance, including the derived starch nobody prints.
	 * At 4px it read as a divider rule; at 7px it reads as the chart it is.
	 */
	height: 7px;
	border-radius: 4px;
	overflow: hidden;
	background: var(--itk4-rule);
}

.itk4-strip__seg {
	display: block;
	height: 100%;
}

.itk4-strip__seg--protein {
	background: var(--itk4-accent);
}

.itk4-strip__seg--fat {
	background: var(--itk4-flag);
}

.itk4-strip__seg--fiber {
	background: var(--itk4-mute-rail);
}

.itk4-strip__seg--moisture {
	background: var(--itk4-line);
}

.itk4-strip__seg--ash {
	background: var(--itk4-mute);
}

.itk4-strip__seg--starch {
	background: repeating-linear-gradient(
		45deg,
		var(--itk4-ink) 0 2px,
		transparent 2px 4px
	);
	background-color: var(--itk4-chip);
}

/* ------------------------------------------------- 6b. The strip's legend */

.itk4-legend {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 12px 34px;
	margin-top: 26px;
	padding-top: 20px;
	border-top: 1px solid var(--itk4-line);
}

.itk4-legend__keys {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 18px;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 12px;
	color: var(--itk4-body);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	flex: 0 0 auto;
}

.itk4-legend__keys li {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}

.itk4-legend__keys i {
	width: 14px;
	height: 7px;
	border-radius: 3px;
	flex: 0 0 auto;
}

.itk4-legend__note {
	flex: 1 1 320px;
	margin: 0;
	font-size: 13px;
	line-height: 1.5;
	color: var(--itk4-body);
	max-width: 62ch;
}

/* ---------------------------------------------------------------- 7. Panels */

.itk4-panels {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 18px;
}

.itk4-panel--accent {
	background: var(--itk4-accent);
	border-radius: 18px;
	padding: 40px;
	color: #fff;
}

.itk4-panel--accent .itk4-eyebrow {
	color: var(--itk4-flag);
	margin-bottom: 16px;
}

.itk4-panel--accent h3 {
	margin: 0;
	font-size: clamp(28px, 3vw, 38px);
	font-family: 'Bricolage Grotesque', 'Karla', sans-serif;
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1;
	text-transform: uppercase;
}

.itk4-panel--accent p {
	margin: 18px 0 0;
	max-width: 420px;
	font-size: 15px;
	line-height: 1.55;
	color: var(--itk4-accent-dim);
}

.itk4-tiles {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin-top: 34px;
}

.itk4-tile {
	background: rgba(255, 255, 255, 0.12);
	border-radius: 10px;
	padding: 16px;
}

.itk4-tile__figure {
	font-size: 26px;
	font-family: 'Bricolage Grotesque', 'Karla', sans-serif;
	font-weight: 700;
	color: var(--itk4-flag);
	line-height: 1.1;
}

.itk4-tile__label {
	font-size: 12px;
	color: var(--itk4-accent-dim);
	margin-top: 6px;
	line-height: 1.35;
}

.itk4-panel--accent .itk4-btn {
	margin-top: 32px;
}

.itk4-panel--accent .itk4-btn:hover {
	background: #fff;
	color: var(--itk4-ink);
}

.itk4-panelstack {
	display: grid;
	grid-template-rows: auto 1fr;
	gap: 18px;
}

.itk4-panel--flag {
	background: var(--itk4-flag);
	border-radius: 18px;
	padding: 32px;
	color: var(--itk4-ink);
}

.itk4-panel--flag .itk4-eyebrow {
	color: var(--itk4-ink);
	font-weight: 400;
	font-size: 12px;
	margin-bottom: 14px;
}

.itk4-panel--flag h3 {
	margin: 0;
	font-size: 28px;
	font-family: 'Bricolage Grotesque', 'Karla', sans-serif;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1;
}

.itk4-panel--flag p {
	margin: 14px 0 0;
	font-size: 14px;
	line-height: 1.5;
	color: var(--itk4-deep);
}

.itk4-dogchips {
	display: flex;
	gap: 8px;
	margin-top: 22px;
	flex-wrap: wrap;
}

.itk4-dogchip {
	font-size: 12px;
	background: #fff;
	color: var(--itk4-ink);
	padding: 6px 11px;
	border-radius: 999px;
}

.itk4-dogchip--lead {
	background: var(--itk4-ink);
	color: var(--itk4-flag);
}

.itk4-panel--plain {
	background: #fff;
	border: 1px solid var(--itk4-line);
	border-radius: 18px;
	padding: 32px;
}

.itk4-panel--plain .itk4-eyebrow {
	margin-bottom: 18px;
}

.itk4-ranklist {
	display: flex;
	flex-direction: column;
}

.itk4-rank {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 13px 0;
	border-bottom: 1px solid var(--itk4-rule);
	color: var(--itk4-ink);
}

.itk4-rank:last-child {
	border-bottom: 0;
}

.itk4-rank:hover .itk4-rank__name {
	color: var(--itk4-accent);
}

.itk4-rank__num {
	font-size: 11px;
	color: var(--itk4-mute);
	width: 22px;
	flex: 0 0 auto;
}

.itk4-rank__name {
	flex: 1;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.3;
	color: var(--itk4-ink);
}

.itk4-rank__score {
	font-size: 11px;
	font-weight: 600;
	color: var(--itk4-accent);
	flex: 0 0 auto;
}

/* ------------------------------------------------------------- 8. Nutrition */

.itk4-nutrition {
	background: var(--itk4-ink);
	color: var(--itk4-paper);
	padding: 80px 44px;
	margin-top: 20px;
}

.itk4-nutrition__inner {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
	gap: 56px;
	align-items: center;
}

.itk4-nutrition__shot {
	position: relative;
	height: 420px;
	border-radius: 18px;
	overflow: hidden;
	background: var(--itk4-ink-lift);
	display: flex;
	align-items: center;
	justify-content: center;
}

.itk4-nutrition__shot img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/*
 * With no image set, the well shows a quiet hatch rather than an empty box or a
 * broken-image icon.
 */
.itk4-nutrition__shot--empty {
	background-image: repeating-linear-gradient(
		45deg,
		var(--itk4-ink-rule) 0 1px,
		transparent 1px 12px
	);
}

.itk4-nutrition .itk4-eyebrow {
	color: var(--itk4-flag);
	margin-bottom: 16px;
}

.itk4-nutrition h2 {
	margin: 0;
	font-size: clamp(34px, 4vw, 52px);
	font-family: 'Bricolage Grotesque', 'Karla', sans-serif;
	font-weight: 700;
	letter-spacing: -0.025em;
	line-height: 1;
}

.itk4-nutrition p {
	margin: 22px 0 0;
	max-width: 520px;
	font-size: 16px;
	line-height: 1.6;
	color: var(--itk4-mute-warm);
}

.itk4-figures {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
	margin-top: 38px;
	padding-top: 30px;
	border-top: 1px solid var(--itk4-ink-rule);
}

.itk4-figure__value {
	font-size: 34px;
	font-family: 'Bricolage Grotesque', 'Karla', sans-serif;
	font-weight: 700;
	color: var(--itk4-flag);
	line-height: 1.1;
}

.itk4-figure__label {
	font-size: 12px;
	color: var(--itk4-mute-warm);
	margin-top: 6px;
	line-height: 1.35;
}

/* ---------------------------------------------------------- 9. Recall table */

.itk4-table {
	background: #fff;
	border: 1px solid var(--itk4-line);
	border-radius: 16px;
	overflow: hidden;
}

.itk4-table__head,
.itk4-table__row {
	display: grid;
	grid-template-columns: minmax(110px, 150px) minmax(0, 1fr) minmax(120px, 190px) 30px;
	gap: 16px;
}

.itk4-table__head {
	padding: 14px 24px;
	background: var(--itk4-ink);
	color: var(--itk4-mute-warm);
	font-size: 12px;
}

.itk4-table__row {
	align-items: center;
	padding: 18px 24px;
	border-bottom: 1px solid var(--itk4-rule-soft);
	color: var(--itk4-ink);
	transition: background 0.15s ease;
}

.itk4-table__row:last-child {
	border-bottom: 0;
}

.itk4-table__row:hover {
	background: var(--itk4-paper-lift);
}

.itk4-table__date {
	font-size: 12px;
	color: var(--itk4-body);
}

.itk4-table__brand {
	display: block;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: var(--itk4-ink);
}

.itk4-table__reason {
	display: block;
	font-size: 13px;
	color: var(--itk4-body);
	margin-top: 3px;
	line-height: 1.4;
}

.itk4-tag {
	font-size: 12px;
	justify-self: start;
	background: var(--itk4-chip);
	color: var(--itk4-accent);
	padding: 6px 11px;
	border-radius: 5px;
	line-height: 1.2;
}

.itk4-table__arrow {
	font-size: 13px;
	color: var(--itk4-accent);
	justify-self: end;
}

/* ----------------------------------------------------------- 10. Newsletter */

.itk4-cta {
	padding: 0 44px 80px;
}

.itk4-cta__inner {
	background: var(--itk4-flag);
	border-radius: 20px;
	padding: clamp(28px, 4vw, 56px);
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
	gap: 40px;
	align-items: center;
}

.itk4-cta h2 {
	margin: 0;
	font-size: clamp(32px, 3.6vw, 48px);
	font-family: 'Bricolage Grotesque', 'Karla', sans-serif;
	font-weight: 700;
	letter-spacing: -0.025em;
	line-height: 1;
	color: var(--itk4-ink);
}

.itk4-cta p {
	margin: 18px 0 0;
	max-width: 420px;
	font-size: 16px;
	line-height: 1.55;
	color: var(--itk4-deep);
}

.itk4-cta__note {
	font-size: 12px;
	color: var(--itk4-deep);
	margin-top: 12px;
	padding-left: 22px;
}

.itk4-cta__action {
	display: inline-flex;
	background: var(--itk4-ink);
	color: var(--itk4-flag);
	font-size: 13px;
	font-weight: 600;
	padding: 14px 24px;
	border-radius: 999px;
}

.itk4-cta__action:hover {
	background: var(--itk4-accent);
	color: #fff;
}

/* --------------------------------------------------------------- 11. Footer */

.itk4-footer {
	background: var(--itk4-ink);
	color: var(--itk4-mute-warm);
	padding: 64px 44px 30px;
}

.itk4-footer__cols {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
}

.itk4-footer .itk4-wordmark {
	color: var(--itk4-paper);
}

.itk4-footer__blurb {
	margin: 14px 0 0;
	max-width: 300px;
	font-size: 14px;
	line-height: 1.55;
}

.itk4-footer__col {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.itk4-footer__heading {
	font-size: 13px;
	font-weight: 600;
	color: var(--itk4-flag);
}

.itk4-footer a,
.itk4-footer .itk4-nav a {
	color: var(--itk4-mute-warm);
	font-size: 14px;
	border-bottom: 0;
}

.itk4-footer a:hover {
	color: var(--itk4-flag);
}

.itk4-footer__base {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-top: 48px;
	padding-top: 22px;
	border-top: 1px solid var(--itk4-ink-rule);
	font-size: 12px;
	flex-wrap: wrap;
}

.itk4-footer__base span:first-child {
	text-transform: uppercase;
}

.itk4-footer__spacer {
	flex: 1;
}

.itk4-footer__tag {
	color: var(--itk4-flag);
}

/* --------------------------------------------------- 12. Index and archives */

.itk4-index {
	padding: 48px 44px 80px;
}

.itk4-index__head {
	margin-bottom: 26px;
}

.itk4-index__head h1 {
	margin: 0;
	font-size: clamp(30px, 3.6vw, 46px);
	font-family: 'Bricolage Grotesque', 'Karla', sans-serif;
	font-weight: 700;
	letter-spacing: -0.025em;
	line-height: 1.05;
}

.itk4-index__count {
	margin: 12px 0 0;
	font-size: 15px;
	color: var(--itk4-body);
	max-width: 60ch;
}

.itk4-sorts {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin: 24px 0 0;
	padding: 0;
	list-style: none;
}

.itk4-sorts a {
	display: inline-block;
	font-size: 13px;
	color: var(--itk4-body);
	background: var(--itk4-chip);
	padding: 7px 14px;
	border-radius: 999px;
}

.itk4-sorts a:hover {
	background: var(--itk4-ink);
	color: var(--itk4-flag);
}

.itk4-sorts a.is-current {
	background: var(--itk4-ink);
	color: var(--itk4-flag);
}

.itk4-pagination {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-top: 46px;
	font-size: 14px;
}

.itk4-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 12px;
	border-radius: 9px;
	background: #fff;
	border: 1px solid var(--itk4-line);
	color: var(--itk4-ink);
}

.itk4-pagination .page-numbers:hover {
	border-color: var(--itk4-ink);
}

.itk4-pagination .page-numbers.current {
	background: var(--itk4-ink);
	border-color: var(--itk4-ink);
	color: var(--itk4-flag);
}

/* ---------------------------------------------------------- 13. Single review */

.itk4-review {
	padding: 48px 44px 80px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 44px;
	align-items: start;
}

.itk4-review__shot {
	height: 320px;
	background: #fff;
	border: 1px solid var(--itk4-line);
	border-radius: 14px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 26px;
}

.itk4-review__shot img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 18px;
}

.itk4-review h1 {
	margin: 10px 0 0;
	font-size: clamp(28px, 3.4vw, 42px);
	font-family: 'Bricolage Grotesque', 'Karla', sans-serif;
	font-weight: 700;
	letter-spacing: -0.025em;
	line-height: 1.08;
}

.itk4-review__brand {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--itk4-accent);
}

.itk4-review__body {
	margin-top: 26px;
	font-size: 16px;
	line-height: 1.7;
	color: var(--itk4-ink);
	max-width: 68ch;
}

.itk4-review__body h2,
.itk4-review__body h3 {
	font-family: 'Bricolage Grotesque', 'Karla', sans-serif;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.15;
	margin: 34px 0 12px;
}

.itk4-review__body h2 {
	font-size: 26px;
}

.itk4-review__body h3 {
	font-size: 20px;
}

.itk4-review__body ul,
.itk4-review__body ol {
	padding-left: 20px;
}

.itk4-review__body img {
	border-radius: 12px;
}

.itk4-aside {
	position: sticky;
	top: 96px;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.itk4-scorecard {
	background: var(--itk4-ink);
	color: var(--itk4-paper);
	border-radius: 18px;
	padding: 28px;
}

.itk4-scorecard__head {
	display: flex;
	align-items: baseline;
	gap: 14px;
}

.itk4-scorecard__grade {
	font-size: 60px;
	font-family: 'Bricolage Grotesque', 'Karla', sans-serif;
	font-weight: 700;
	color: var(--itk4-flag);
	line-height: 0.9;
	letter-spacing: -0.04em;
}

.itk4-scorecard__total {
	font-size: 13px;
	color: var(--itk4-mute-warm);
}

/* The A-E scale, with this food's band marked. */
.itk4-scale {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 4px;
	margin-top: 20px;
}

.itk4-scale__step {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 30px;
	border-radius: 5px;
	background: var(--itk4-ink-lift);
	color: var(--itk4-mute-warm);
	font-family: 'Bricolage Grotesque', 'Karla', sans-serif;
	font-size: 12px;
	font-weight: 700;
}

.itk4-scale__step.is-current {
	background: var(--itk4-flag);
	color: var(--itk4-ink);
}

.itk4-scale__note {
	margin: 12px 0 0;
	font-size: 12.5px;
	line-height: 1.45;
	color: var(--itk4-mute-warm);
}

.itk4-scorecard__rows {
	margin-top: 22px;
	padding-top: 18px;
	border-top: 1px solid var(--itk4-ink-rule);
	display: flex;
	flex-direction: column;
	gap: 18px;
}

/*
 * Each component becomes a small chart rather than a bare fraction: the point of
 * publishing the rubric is that a reader can see which part of it cost the food
 * its points, and "15 / 25" does not show that at a glance.
 */
.itk4-scorecard__row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 6px 14px;
	font-size: 13px;
}

.itk4-scorecard__label {
	color: var(--itk4-paper);
	font-weight: 600;
}

.itk4-scorecard__value {
	color: var(--itk4-flag);
	font-weight: 700;
	text-align: right;
	font-variant-numeric: tabular-nums;
}

.itk4-scorecard__max {
	color: var(--itk4-mute-warm);
	font-weight: 400;
}

.itk4-scorecard__meter {
	grid-column: 1 / -1;
	display: block;
	height: 4px;
	border-radius: 2px;
	background: var(--itk4-ink-lift);
	overflow: hidden;
}

.itk4-scorecard__meter > span {
	display: block;
	height: 100%;
	background: var(--itk4-flag);
	border-radius: 2px;
}

.itk4-scorecard__note {
	grid-column: 1 / -1;
	font-size: 12px;
	line-height: 1.45;
	color: var(--itk4-mute-warm);
}

.itk4-scorecard__method {
	display: inline-block;
	margin-top: 22px;
	padding-top: 16px;
	border-top: 1px solid var(--itk4-ink-rule);
	width: 100%;
	font-size: 13px;
	font-weight: 600;
	color: var(--itk4-flag);
}

.itk4-scorecard__method:hover {
	color: var(--itk4-paper);
}

.itk4-analysis {
	background: #fff;
	border: 1px solid var(--itk4-line);
	border-radius: 18px;
	padding: 28px;
}

.itk4-analysis h2 {
	margin: 0 0 16px;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: -0.01em;
}

.itk4-ledger {
	display: flex;
	flex-direction: column;
}

.itk4-ledger__row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 14px;
	padding: 10px 0;
	border-bottom: 1px solid var(--itk4-rule);
	font-size: 14px;
}

.itk4-ledger__row:last-child {
	border-bottom: 0;
}

.itk4-ledger__label {
	color: var(--itk4-body);
}

.itk4-ledger__value {
	font-weight: 600;
	color: var(--itk4-ink);
}

/* A figure nobody published is said to be missing, not printed as a zero. */
.itk4-ledger__value--absent {
	font-weight: 400;
	font-size: 13px;
	color: var(--itk4-mute);
}

.itk4-ledger__row--derived .itk4-ledger__label::after {
	content: ' (derived)';
	color: var(--itk4-mute);
	font-size: 12px;
}

.itk4-ledger__row--assumed .itk4-ledger__label::after {
	content: ' (assumed)';
	color: var(--itk4-mute);
	font-size: 12px;
}

/* -------------------------------------------------- 14. Editorial pages */

.itk4-page {
	padding: 48px 44px 80px;
	max-width: 820px;
}

.itk4-page h1 {
	margin: 0 0 22px;
	font-size: clamp(30px, 3.6vw, 48px);
	font-family: 'Bricolage Grotesque', 'Karla', sans-serif;
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.05;
}

.itk4-page__body {
	font-size: 17px;
	line-height: 1.7;
}

.itk4-page__body h2 {
	font-family: 'Bricolage Grotesque', 'Karla', sans-serif;
	font-size: 26px;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin: 36px 0 12px;
}

.itk4-page__body h3 {
	font-family: 'Bricolage Grotesque', 'Karla', sans-serif;
	font-size: 20px;
	font-weight: 700;
	margin: 28px 0 10px;
}

.itk4-page__body img {
	border-radius: 12px;
}

.itk4-page__body table {
	width: 100%;
	border-collapse: collapse;
	font-size: 15px;
}

.itk4-page__body th,
.itk4-page__body td {
	text-align: left;
	padding: 10px 12px;
	border-bottom: 1px solid var(--itk4-line);
}

.itk4-empty {
	background: #fff;
	border: 1px solid var(--itk4-line);
	border-radius: 16px;
	padding: 40px;
	color: var(--itk4-body);
	font-size: 15px;
}

/* ----------------------------------------------------------- 15. Responsive */

@media (max-width: 1080px) {
	.itk4-review {
		grid-template-columns: minmax(0, 1fr);
	}

	.itk4-aside {
		position: static;
	}
}

@media (max-width: 900px) {
	.itk4-header {
		padding: 14px 24px;
		gap: 16px;
	}

	/*
	 * The header restacks into three rows: wordmark and avatar, then search, then
	 * the menu. Left to wrap on its own the menu breaks into four narrow columns
	 * and every multi-word item is hyphenated down the screen, so it becomes a
	 * single scrolling row instead.
	 */
	.itk4-wordmark {
		flex: 1;
	}

	.itk4-avatar {
		order: 2;
	}

	.itk4-minisearch {
		order: 3;
		flex: 1 1 100%;
	}

	.itk4-nav {
		order: 4;
		flex: 1 1 100%;
		overflow-x: auto;
		scrollbar-width: none;
		-ms-overflow-style: none;
	}

	.itk4-nav::-webkit-scrollbar {
		display: none;
	}

	.itk4-nav__list {
		flex-wrap: nowrap;
		gap: 20px;
	}

	.itk4-nav a {
		white-space: nowrap;
	}

	.itk4-header__spacer {
		display: none;
	}

	.itk4-hero {
		padding: 52px 24px 36px;
	}

	.itk4-section,
	.itk4-nutrition {
		padding: 52px 24px;
	}

	.itk4-cta {
		padding: 0 24px 56px;
	}

	.itk4-footer {
		padding: 48px 24px 24px;
	}

	.itk4-index,
	.itk4-review,
	.itk4-page {
		padding: 32px 24px 56px;
	}

	.itk4-panels {
		grid-template-columns: minmax(0, 1fr);
	}

	.itk4-panel--accent {
		padding: 28px;
	}

	.itk4-nutrition__inner {
		grid-template-columns: minmax(0, 1fr);
		gap: 32px;
	}

	.itk4-nutrition__shot {
		height: 260px;
	}
}

/*
 * Below this width a fixed 60px rail costs too much of the viewport, so it lies
 * down across the bottom of the screen. Same targets, same order, still one tap
 * from anywhere on the page.
 */
@media (max-width: 700px) {
	.itk4-shell {
		padding-left: 0;
		padding-bottom: 64px;
	}

	.itk4-rail {
		top: auto;
		right: 0;
		bottom: 0;
		width: auto;
		height: 60px;
		flex-direction: row;
		justify-content: center;
		gap: 10px;
		padding: 0 12px;
		border-top: 1px solid var(--itk4-ink-rule);
	}

	.itk4-rail__mark {
		margin-bottom: 0;
		margin-right: 6px;
	}

	.itk4-header {
		position: static;
	}
}

@media (max-width: 820px) {
	.itk4-readout {
		grid-template-columns: minmax(0, 1fr);
		gap: 28px;
		margin-top: 36px;
	}

	.itk4-readout__aside {
		padding-left: 0;
		padding-top: 24px;
		border-left: 0;
		border-top: 1px solid var(--itk4-line);
	}

	.itk4-readout__figure {
		font-size: 56px;
	}
}

@media (max-width: 640px) {
	.itk4-sectionhead {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}

	.itk4-dist {
		height: 38px;
	}

	/* Below this the narrow bands cannot hold a letter legibly; the key carries it. */
	.itk4-dist__seg b {
		display: none;
	}

	.itk4-sectionhead__spacer {
		display: none;
	}

	.itk4-tiles,
	.itk4-figures {
		grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	}

	/*
	 * The recall table stops being a table. Four columns in 320px is unreadable,
	 * so each recall becomes a stacked block with the date and tag on one line.
	 */
	.itk4-table__head {
		display: none;
	}

	.itk4-table__row {
		grid-template-columns: minmax(0, 1fr);
		gap: 8px;
		padding: 18px 20px;
	}

	.itk4-table__arrow {
		display: none;
	}

	.itk4-tag {
		justify-self: start;
	}

	.itk4-review__shot {
		height: 240px;
	}

	.itk4-cta__inner {
		grid-template-columns: minmax(0, 1fr);
		gap: 24px;
	}
}

/* ------------------------------------------------------------- 16. Motion */

/*
 * Entrance motion is opt-in twice over: it only applies when the reader has not
 * asked for reduced motion, and only when JS has set .itk4-js on the root. With
 * scripting off, nothing is ever hidden, so the page can never fail to reveal
 * itself. The distribution bar grows from zero because watching the A band stay
 * a sliver while the rest fills is the argument the section is making.
 */
@media (prefers-reduced-motion: no-preference) {
	.itk4-js [data-itk4-reveal] {
		opacity: 0;
		transform: translateY(16px);
	}

	.itk4-js [data-itk4-reveal].is-in {
		opacity: 1;
		transform: none;
		transition:
			opacity 0.65s ease,
			transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
	}

	.itk4-js .itk4-readout:not(.is-in) .itk4-dist__seg {
		width: 0;
	}

	/* Cards arrive in sequence, not as one block. */
	.itk4-js .itk4-grid[data-itk4-stagger] > * {
		opacity: 0;
		transform: translateY(16px);
	}

	.itk4-js .itk4-grid[data-itk4-stagger].is-in > * {
		opacity: 1;
		transform: none;
		transition:
			opacity 0.55s ease,
			transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
		transition-delay: calc(var(--itk4-i, 0) * 70ms);
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		transition: none !important;
		animation: none !important;
		scroll-behavior: auto !important;
	}

	.itk4-card:hover {
		transform: none;
	}
}
