/**
 * Noms listicle components (Phase 2 of the site redesign).
 *
 * Consumes the design tokens defined in assets/css/global.css.
 * Enqueued on single posts only (inc/enqueue.php).
 *
 * Values traced from the Paper "Listicle - Ranked List Layout" artboard,
 * "WHAT TO ORDER" card section, computed styles read 2026-08-24.
 */

/* ==========================================================================
   What to Order card
   ========================================================================== */

.noms-wto {
	background: var(--noms-yellow);
	border: var(--noms-border-strong);
	border-radius: var(--noms-radius-card);
	padding: 16px 18px;
	display: flex;
	flex-direction: column;
	gap: 9px;
}

.noms-wto p {
	margin: 0; /* neutralize theme paragraph margins inside the card */
}

.noms-wto .noms-wto__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.noms-wto .noms-wto__label {
	font-family: var(--noms-font-body);
	font-size: var(--noms-text-label);
	font-weight: 700;
	line-height: 16px;
	letter-spacing: var(--noms-tracking-label);
	text-transform: uppercase;
	color: var(--noms-ink-deep);
}

.noms-wto .noms-wto__price {
	font-family: var(--noms-font-body);
	font-size: var(--noms-text-button);
	font-weight: 700;
	line-height: 16px;
	color: var(--noms-ink-deep);
	border: 1.5px solid var(--noms-ink-deep);
	border-radius: var(--noms-radius-pill);
	padding: 4px 12px;
	white-space: nowrap;
}

.noms-wto .noms-wto__dishrow {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.noms-wto .noms-wto__dish {
	font-family: var(--noms-font-display);
	font-size: var(--noms-text-dish);
	font-weight: 800;
	line-height: 26px;
	color: var(--noms-ink-deep);
}

.noms-wto .noms-wto__badge {
	font-family: var(--noms-font-body);
	font-size: var(--noms-text-badge);
	font-weight: 700;
	line-height: 12px;
	letter-spacing: var(--noms-tracking-badge);
	text-transform: uppercase;
	color: var(--noms-yellow);
	background: var(--noms-ink-deep);
	border-radius: var(--noms-radius-chip);
	padding: 3px 7px;
}

.noms-wto ul.noms-wto__items {
	list-style: none;
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.noms-wto ul.noms-wto__items li {
	list-style: none;
	font-family: var(--noms-font-body);
	font-size: 1rem;
	font-weight: 500;
	line-height: 26px;
	color: var(--noms-ink-deep);
	margin: 0;
	padding: 0;
}
