/* ══════════════════════════════════════════════════════════════════════
   CHL STARTER BUSINESS PAGE v3 — two-column hero.

   STRUCTURE
     [ business info panel ][ banner image ]   ← two-column hero
     [       page navigation (tabs)        ]   ← the divider …
     [       page content canvas           ]   ← …and the panel it caps

   The nav rail and the content canvas are ONE white panel joined by a
   hairline: the tabs read as that panel's header, which is what makes them
   a true divider between the business introduction and the active page,
   rather than a third floating block.

   The shell is CHL's, not the business's. The business supplies identity
   (banner, logo, name, category, location, descriptor, later content); CHL
   supplies the interface (background, navigation, type, buttons, borders,
   states). No palette is derived from the business or its image — the only
   per-business style value is the banner's focal point.

   Tokens below are the REAL Explore results values (assets/chl/explore/
   results.css → .chl-exresults), mirrored here so Explore → card → business
   page reads as one continuous CHL surface. Mirrored, not imported: those
   tokens are scoped to .chl-exresults, and this page never loads that file.
   If Explore's palette moves, move these to match.

   Previous layout (v2, floating centred nameplate) is preserved at
   assets/chl/starter-business/starter-business_v2_nameplate.css.bak

   Scope: EVERY rule lives under .sbp-page. Nothing here may restyle the
   surrounding CHL chrome.
   ══════════════════════════════════════════════════════════════════════ */

.sbp-page {
	/* ── CHL tokens (source: Explore results) ── */
	--sbp-bg: #f7f6fb;                       /* Explore page background      */
	--sbp-surface: #ffffff;                  /* panels, info card            */
	--sbp-ink: #1c1930;                      /* primary text                 */
	--sbp-muted: #5a5570;                    /* secondary metadata           */
	--sbp-line: rgba(20, 17, 31, 0.10);      /* the one border colour        */
	--sbp-orange: #f0883e;                   /* CHL accent                   */
	--sbp-orange-ink: #b4571a;               /* accent, darkened for text    */
	--sbp-orange-soft: #fff3e9;              /* pale accent surface          */
	--sbp-purple-soft: #f3f0ff;              /* pale supporting surface      */
	--sbp-focus: rgba(240, 136, 62, 0.65);   /* Explore's focus ring         */
	--sbp-radius: 18px;                      /* Explore's panel radius       */

	--sbp-canvas-max: 1260px;    /* the page's one content axis */
	--sbp-gutter: clamp(16px, 4vw, 44px);
	--sbp-col-gap: clamp(16px, 1.8vw, 26px);

	background: var(--sbp-bg);
	color: var(--sbp-ink);
	/* typography is inherited from the CHL theme (body: DM Sans) — this shell
	   never introduces a font of its own */
	padding-bottom: clamp(56px, 8vw, 110px);
}

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

.sbp-shell {
	max-width: calc(var(--sbp-canvas-max) + 2 * var(--sbp-gutter));
	margin-inline: auto;
	padding-inline: var(--sbp-gutter);
	padding-top: clamp(16px, 2.4vw, 28px);
}

/* ── Two-column hero ─────────────────────────────────────────────────── */

/* Proportions: an information block beside a wide header strip — not two
   evenly weighted panels. */
.sbp-top {
	display: grid;
	grid-template-columns: minmax(300px, 30fr) minmax(0, 70fr);
	gap: var(--sbp-col-gap);
	align-items: stretch;     /* the banner spans the row's height */
}

/* ── Left: the business information — open on the background ─────────── */

/* No card: the grouping comes from typography, alignment and spacing, not
   from a containing surface. */
.sbp-info {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;   /* top-aligned: the monogram shares the banner's
	                                  top edge, giving the open composition its line */
	min-width: 0;
	padding-right: clamp(0px, 1vw, 16px);   /* breathing room before the banner */
}

/* Monogram = a CHL-generated interface token (shown until the business
   uploads a logo), so it wears CHL orange — never a business-derived colour.
   On its own line, so the title owns the column's full width. */
.sbp-info__logo {
	align-self: flex-start;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	margin-bottom: 14px;
	border-radius: 50%;
	background: var(--sbp-orange);
	color: #ffffff;
	font-weight: 700;
	font-size: 1.05rem;
	letter-spacing: 0.04em;
	box-shadow: 0 0 0 3px var(--sbp-orange-soft);
	user-select: none;
}

/* A real uploaded logo is the business's own asset — CHL only frames it. */
.sbp-info__logo--img {
	object-fit: cover;
	background: var(--sbp-surface);
	box-shadow: 0 0 0 1px var(--sbp-line);
}

/* primary — the first thing read: a business page title, not a list item */
.sbp-info__name {
	margin: 0;
	min-width: 0;
	font-size: clamp(1.5rem, 1.05rem + 1.5vw, 2.35rem);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.024em;
	color: var(--sbp-ink);
	text-wrap: balance;   /* wraps into even lines rather than an orphan word */
}

/* secondary — one compact line, plain text rather than decorative pills */
.sbp-info__meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 2px 7px;
	margin: 12px 0 0;
	font-size: 0.88rem;
	line-height: 1.3;
	color: var(--sbp-muted);
}

.sbp-info__cat {
	color: var(--sbp-ink);
	font-weight: 700;
	white-space: nowrap;
}

.sbp-info__sep {
	color: var(--sbp-line);
	font-weight: 700;
}

.sbp-info__loc {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	min-width: 0;
}

.sbp-info__loc .bi {
	margin: 0;                       /* guard against theme-wide anchor>i margins */
	font-size: 0.9rem;
	color: var(--sbp-orange);        /* the accent, kept to a single mark */
}

/* tertiary */
.sbp-info__descriptor {
	margin: 10px 0 0;
	font-size: 0.9rem;
	line-height: 1.45;
	color: var(--sbp-muted);
	max-width: 38ch;
}

/* actions: compact and secondary — never the focal point */
.sbp-info__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 18px;
}

.sbp-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	min-height: 44px;      /* visually light, but still a real touch target */
	padding: 8px 14px;
	border-radius: 999px;
	background: var(--sbp-surface);
	border: 1px solid var(--sbp-line);
	color: var(--sbp-ink);
	font: inherit;
	font-size: 0.82rem;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}

.sbp-action .bi {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1;
	color: var(--sbp-orange);
	transition: color 0.16s ease;
}

.sbp-action:focus-visible {
	outline: 2px solid var(--sbp-focus);
	outline-offset: 2px;
}

/* ── Right: the banner — the image IS the object, not a card ─────────── */

/* No wrapper surface: no border, no shadow, no padding, no second radius —
   just the image, with one clean radius. */
/* A wide, modest-height header strip: the row's height comes from the info
   column, and the banner fills it — so the image gains presence horizontally
   rather than by growing taller and out-shouting the title. */
.sbp-banner {
	position: relative;
	min-width: 0;
	min-height: clamp(210px, 18vw, 250px);
	border-radius: var(--sbp-radius);
	overflow: hidden;
	background: var(--sbp-bg);               /* the page itself, while the image loads */
}

/* The image is allowed to breathe: no dark veil, no text overlay — the
   identity now lives in the info panel, so nothing needs a scrim. */
.sbp-banner__img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;                       /* never distorted */
	object-position: var(--sbp-hero-focal, 50% 40%);
}

/* ── The tab bubble — the ONE white floating container ───────────────── */

/* Centred beneath the whole hero composition — relative to the page's content
   container, not to the left metadata column. */
.sbp-nav {
	display: flex;
	justify-content: center;
	margin-top: clamp(20px, 2.2vw, 30px);
	min-width: 0;
}

.sbp-nav__rail {
	position: relative;
	max-width: 100%;                          /* sized to its tabs, never stretched */
	background: var(--sbp-surface);
	border: 1px solid var(--sbp-line);
	border-radius: 999px;
	box-shadow: 0 14px 32px -24px rgba(28, 25, 48, 0.5);   /* restrained lift */
	padding: 5px;
}

.sbp-nav__scroller {
	overflow-x: auto;
	overscroll-behavior-x: contain;
	border-radius: 999px;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.sbp-nav__scroller::-webkit-scrollbar {
	display: none;
}

.sbp-nav__list {
	display: flex;
	min-width: max-content;     /* one row; scrolls when it cannot fit */
	gap: 2px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.sbp-nav__item {
	margin: 0;
	padding: 0;
}

/* Site navigation, not call-to-action buttons: the tab IS its label; the
   only chrome is the active marker and a quiet hover wash. */
.sbp-nav__tab {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 14px clamp(16px, 1.5vw, 24px) 16px;
	border-radius: 999px;
	color: var(--sbp-muted);
	font-size: 0.9rem;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.005em;
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.16s ease, background-color 0.16s ease;
}

/* active marker: a short orange underline set INSIDE the bubble (a flush rail
   would be clipped by the pill's curve) — the active state never relies on
   colour alone (weight + marker) */
.sbp-nav__tab::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 9px;
	width: 20px;
	height: 2px;
	border-radius: 2px;
	background: var(--sbp-orange);
	transform: translateX(-50%) scaleX(0);
	transition: transform 0.18s ease;
}

.sbp-nav__tab.is-active {
	color: var(--sbp-ink);
	font-weight: 700;
}

.sbp-nav__tab.is-active::after {
	transform: translateX(-50%) scaleX(1);
}

.sbp-nav__tab:focus-visible {
	outline: 2px solid var(--sbp-focus);
	outline-offset: -2px;      /* inset: the bubble has little padding to spare */
}

@media (hover: hover) and (pointer: fine) {
	.sbp-action:hover {
		background: var(--sbp-orange-soft);
		border-color: rgba(240, 136, 62, 0.35);   /* Explore's card hover border */
		color: var(--sbp-orange-ink);
	}
	.sbp-nav__tab:hover {
		color: var(--sbp-ink);
		background: var(--sbp-purple-soft);        /* the pale supporting tint */
	}
	.sbp-nav__tab:hover::after {
		transform: translateX(-50%) scaleX(0.4);
		background: var(--sbp-line);
	}
	.sbp-nav__tab.is-active:hover {
		background: var(--sbp-orange-soft);        /* active stays orange, never lavender */
	}
	.sbp-nav__tab.is-active:hover::after {
		transform: translateX(-50%) scaleX(1);
		background: var(--sbp-orange);
	}
}

/* edge cues while more tabs sit off-screen (toggled by JS; pure
   enhancement — without JS a peeking half-tab is the affordance) */
.sbp-nav__rail::before,
.sbp-nav__rail::after {
	content: "";
	position: absolute;
	top: 5px;
	bottom: 5px;
	width: 34px;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.2s ease;
	z-index: 2;
}

.sbp-nav__rail::before {
	left: 5px;
	border-radius: 999px 0 0 999px;
	background: linear-gradient(to right, var(--sbp-surface) 25%, rgba(255, 255, 255, 0));
}

.sbp-nav__rail::after {
	right: 5px;
	border-radius: 0 999px 999px 0;
	background: linear-gradient(to left, var(--sbp-surface) 25%, rgba(255, 255, 255, 0));
}

.sbp-nav__rail.sbp-can-left::before {
	opacity: 1;
}

.sbp-nav__rail.sbp-can-right::after {
	opacity: 1;
}

/* ── The page area — open on the background, intentionally blank ─────── */

/* No panel: the space is held by min-height and rhythm, so an empty page reads
   as room for content rather than as a giant empty white box. */
.sbp-outlet {
	min-height: clamp(300px, 38vh, 460px);
	margin-top: clamp(24px, 2.6vw, 36px);
	/* no padding: the heading aligns to the same left edge as the business
	   name and the banner's left column */
}

.sbp-outlet__title {
	margin: 0;
	font-size: clamp(1.1rem, 1rem + 0.6vw, 1.35rem);
	font-weight: 800;
	letter-spacing: -0.01em;
	color: var(--sbp-ink);
}

.sbp-outlet__title::before {
	content: "";
	display: block;
	width: 24px;
	height: 3px;
	border-radius: 2px;
	background: var(--sbp-orange);
	margin-bottom: 12px;
}

/* ── Utilities ───────────────────────────────────────────────────────── */

.sbp-visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

/* ── Responsive ──────────────────────────────────────────────────────── */

/* tablet: the columns stay, but the info panel takes a larger share so the
   name and metadata keep room to breathe */
@media (max-width: 1023px) {
	/* the column takes a little more share as the page narrows, so the larger
	   title keeps room to wrap well */
	.sbp-top {
		grid-template-columns: minmax(260px, 36fr) minmax(0, 64fr);
	}
	.sbp-banner {
		min-height: 220px;
	}
	.sbp-info__descriptor {
		font-size: 0.86rem;
	}
}

/* narrow tablet: two columns stop being useful — stack, info first (the DOM
   order), so the business is named before it is illustrated */
@media (max-width: 767px) {
	.sbp-top {
		grid-template-columns: minmax(0, 1fr);
	}
	.sbp-banner {
		min-height: 0;
		aspect-ratio: 16 / 9;
	}
}

@media (max-width: 639px) {
	.sbp-info {
		padding-right: 0;
	}
	.sbp-info__logo {
		width: 48px;
		height: 48px;
		font-size: 1rem;
	}
	.sbp-info__descriptor {
		max-width: none;
	}
	.sbp-info__actions {
		margin-top: 16px;
	}
	.sbp-banner {
		aspect-ratio: 3 / 2;      /* taller crop reads better in a narrow column */
	}
	.sbp-nav__rail {
		width: 100%;              /* the bubble spans the column, and scrolls inside */
	}
	.sbp-nav__tab {
		padding-inline: 18px;
	}
	.sbp-outlet {
		min-height: 260px;
	}
}

/* ── Motion preferences ──────────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
	.sbp-page *,
	.sbp-page *::before,
	.sbp-page *::after {
		transition: none !important;
	}
}

/* ══════════════════════════════════════════════════════════════════════
   MENU PAGE (BP:CHL_STARTER_BUSINESS_MENU v1)
   Two columns beneath the business tabs: a sticky section navigator and the
   menu itself. The navigator mirrors the REAL Explore filter panel
   (assets/chl/explore/results.css → .exm-side: white, 1px --r-line, radius
   18, padding 14/16, sticky top:88px) using the tokens already declared on
   .sbp-page — same language, scoped selectors, no global Explore rules reused.
   No outer white card: the CHL background stays the page canvas.
   ══════════════════════════════════════════════════════════════════════ */

.sbp-page {
	--sbp-sticky-top: 88px;   /* clears the site header, as Explore's sidebar does */
}

.sbp-menu {
	display: grid;
	grid-template-columns: 256px minmax(0, 1fr);
	gap: clamp(18px, 2vw, 28px);
	align-items: start;
}

/* ── Section navigator ───────────────────────────────────────────────── */

.sbp-menu__nav {
	position: sticky;
	top: var(--sbp-sticky-top);
	min-width: 0;
	max-height: calc(100vh - var(--sbp-sticky-top) - 24px);
	overflow-y: auto;
	overscroll-behavior: contain;
}

.sbp-menu__navcard {
	background: var(--sbp-surface);
	border: 1px solid var(--sbp-line);
	border-radius: var(--sbp-radius);
	padding: 14px 16px 16px;
}

.sbp-menu__navhead {
	display: flex;
	align-items: baseline;
	gap: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--sbp-line);
}

.sbp-menu__navhead strong {
	font-size: 1rem;
	color: var(--sbp-ink);
}

.sbp-menu__navcount {
	margin-left: auto;
	font-size: 0.72rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-weight: 700;
	color: #8a85a3;              /* Explore's muted label ink */
}

.sbp-menu__navlist {
	list-style: none;
	margin: 8px 0 0;
	padding: 0;
}

.sbp-menu__navlink {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 9px 10px;
	border-radius: 9px;          /* Explore's .exm-row radius */
	font-size: 0.88rem;
	color: var(--sbp-ink);
	text-decoration: none;
	transition: background-color 0.12s ease, color 0.12s ease;
}

.sbp-menu__navnum {
	margin-left: auto;
	font-size: 0.78rem;
	color: var(--sbp-muted);
	font-variant-numeric: tabular-nums;
}

/* current section: an orange rule + heavier text — never colour alone */
.sbp-menu__navlink::before {
	content: "";
	flex: 0 0 auto;
	width: 3px;
	height: 16px;
	border-radius: 2px;
	background: transparent;
	transition: background-color 0.12s ease;
}

.sbp-menu__navlink.is-current {
	background: var(--sbp-purple-soft);   /* Explore's pale selection surface */
	font-weight: 700;
}

.sbp-menu__navlink.is-current::before {
	background: var(--sbp-orange);
}

.sbp-menu__navlink.is-current .sbp-menu__navnum {
	color: var(--sbp-orange-ink);
}

.sbp-menu__navlink:focus-visible {
	outline: 2px solid var(--sbp-focus);
	outline-offset: 1px;
}

@media (hover: hover) and (pointer: fine) {
	.sbp-menu__navlink:hover {
		background: var(--sbp-bg);
	}
}

/* ── Menu content ────────────────────────────────────────────────────── */

.sbp-menu__content {
	min-width: 0;
}

.sbp-menu__head {
	margin-bottom: clamp(18px, 2vw, 26px);
}

.sbp-menu__sub {
	margin: 8px 0 0;
	font-size: 0.88rem;
	color: var(--sbp-muted);
}

.sbp-menu__section {
	/* anchor links must not hide the heading behind the sticky navigator */
	scroll-margin-top: calc(var(--sbp-sticky-top) + 16px);
	padding-top: 4px;
}

.sbp-menu__section + .sbp-menu__section {
	margin-top: clamp(26px, 3vw, 40px);
}

.sbp-menu__sectitle {
	display: flex;
	align-items: baseline;
	gap: 10px;
	margin: 0 0 14px;
	font-size: clamp(1.05rem, 0.95rem + 0.5vw, 1.3rem);
	font-weight: 800;
	letter-spacing: -0.012em;
	color: var(--sbp-ink);
}

.sbp-menu__seccount {
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--sbp-muted);
}

.sbp-menu__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	list-style: none;
	margin: 0;
	padding: 0;
}

/* ── Item cards ──────────────────────────────────────────────────────── */

/* Fixed height at every breakpoint: the image is a right-hand crop that fills
   the card, and the TEXT contracts to make room — the card never grows. */
.sbp-menu__item {
	display: flex;
	align-items: stretch;
	min-width: 0;
	height: var(--sbp-card-h, 118px);
	background: var(--sbp-surface);
	border: 1px solid var(--sbp-line);
	border-radius: 14px;
	overflow: hidden;              /* the image meets the card's rounded corners */
	transition: border-color 0.16s ease;
}

.sbp-menu__itemtext {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
	flex: 1 1 auto;
	padding: 14px 16px;
}

/* name + price on ONE row */
.sbp-menu__itemhead {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;               /* wraps gracefully on very narrow cards */
	gap: 4px 10px;
	min-width: 0;
}

.sbp-menu__itemname {
	margin: 0;
	min-width: 0;
	font-size: 0.95rem;
	font-weight: 700;              /* the dominant element */
	line-height: 1.25;
	color: var(--sbp-ink);
}

/* quieter than the name: lighter weight, muted ink, sits beside it */
.sbp-menu__itemprice {
	flex: 0 0 auto;
	font-size: 0.88rem;
	font-weight: 500;
	color: var(--sbp-muted);
	white-space: nowrap;
	font-variant-numeric: tabular-nums;
}

.sbp-menu__itemdesc {
	margin: 6px 0 0;
	font-size: 0.83rem;
	line-height: 1.38;
	color: var(--sbp-muted);
	/* clamped to hold the fixed card height — the name and price are never hidden */
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* the right-hand image crop: fixed share of the card, full height, no frame */
.sbp-menu__itemimg {
	flex: 0 0 30%;
	width: 30%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	background: var(--sbp-bg);     /* while it loads; never a visible grey box */
}

.sbp-menu__empty {
	margin: 16px 0 0;
	font-size: 0.95rem;
	color: var(--sbp-muted);
}

@media (hover: hover) and (pointer: fine) {
	.sbp-menu__item:hover {
		border-color: rgba(240, 136, 62, 0.35);   /* Explore's card hover border */
	}
}

/* ── Menu responsive ─────────────────────────────────────────────────── */

@media (max-width: 1023px) {
	.sbp-menu {
		grid-template-columns: 208px minmax(0, 1fr);
	}
	.sbp-menu__grid {
		grid-template-columns: minmax(0, 1fr);   /* cards get cramped before the sidebar does */
	}
	.sbp-menu__itemimg {
		flex-basis: 26%;                          /* a touch narrower so the text keeps room */
		width: 26%;
	}
}

/* Below this the sidebar stops being useful: it becomes a horizontal strip
   above the menu — one row, scrolling, never a narrow left rail. */
@media (max-width: 767px) {
	.sbp-menu {
		display: block;
	}
	.sbp-menu__nav {
		position: static;
		max-height: none;
		overflow: visible;
		margin-bottom: 18px;
	}
	.sbp-menu__navcard {
		padding: 0;
		border: 0;
		background: transparent;
	}
	.sbp-menu__navhead {
		display: none;                 /* the page heading below already says "Menu" */
	}
	.sbp-menu__navlist {
		display: flex;
		gap: 8px;
		margin: 0;
		overflow-x: auto;
		overscroll-behavior-x: contain;
		scrollbar-width: none;
		-ms-overflow-style: none;
		/* the strip bleeds to the page gutters so the first/last chip can sit flush */
		padding: 2px calc(var(--sbp-gutter)) 2px 0;
	}
	.sbp-menu__navlist::-webkit-scrollbar {
		display: none;
	}
	.sbp-menu__navlist li {
		flex: 0 0 auto;
	}
	.sbp-menu__navlink {
		min-height: 44px;
		padding: 10px 14px;
		background: var(--sbp-surface);
		border: 1px solid var(--sbp-line);
		border-radius: 999px;
		white-space: nowrap;
	}
	.sbp-menu__navlink::before {
		display: none;                 /* the chip itself carries the state */
	}
	.sbp-menu__navlink.is-current {
		background: var(--sbp-orange-soft);
		border-color: rgba(240, 136, 62, 0.45);
		color: var(--sbp-orange-ink);
	}
	.sbp-menu__section {
		scroll-margin-top: 16px;       /* nothing is sticky here */
	}
	.sbp-menu__head {
		margin-bottom: 16px;
	}
}

@media (max-width: 639px) {
	.sbp-page {
		--sbp-card-h: 108px;       /* same card, slightly tighter */
	}
	.sbp-menu__itemtext {
		padding: 12px 14px;
	}
	/* a fixed pixel crop reads better than a percentage in a narrow column */
	.sbp-menu__itemimg {
		flex: 0 0 96px;
		width: 96px;
	}
	.sbp-menu__itemname {
		font-size: 0.92rem;
	}
	.sbp-menu__itemdesc {
		font-size: 0.8rem;
	}
}

@media (max-width: 379px) {
	.sbp-menu__itemimg {
		flex-basis: 84px;
		width: 84px;
	}
	.sbp-menu__itemdesc {
		-webkit-line-clamp: 2;
	}
}
