/**
 * Brands page, brand page and range page.
 *
 * Loaded after category-hub.css and built on its tokens and scaffolding
 * (`.wb-hub__inner`, `.wb-hub__section`, the FAQ and help band).
 */

.wb-hub {
	--wb-brand-dark: #16181d;
	--wb-brand-dark-edge: rgba(255, 255, 255, 0.14);
	--wb-brand-dark-muted: rgba(255, 255, 255, 0.72);
	--wb-brand-accent: #8fb3ff;
}

.wb-hub [hidden] {
	display: none !important;
}

.wb-hub .screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

/* Brands page ---------------------------------------------------------- */

.wb-hub .wb-brands__hero {
	background: var(--wb-hub-tint);
	border-bottom: 1px solid var(--wb-hub-edge);
}

.wb-hub .wb-brands__hero-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(260px, 450px);
	gap: 24px 40px;
	align-items: start;
	padding-block: 28px 32px;
}

.wb-hub .wb-brands__intro {
	max-width: 880px;
	color: #3f4652;
}

.wb-hub .wb-brands__search {
	position: relative;
	display: flex;
	align-items: center;
	margin-top: 8px;
	color: var(--wb-hub-muted);
}

.wb-hub .wb-brands__search svg {
	position: absolute;
	left: 16px;
	pointer-events: none;
}

.wb-hub .wb-brands__search input {
	width: 100%;
	height: 52px;
	padding: 0 16px 0 46px;
	border: 1px solid var(--wb-hub-edge);
	border-radius: 8px;
	background: #fff;
	color: var(--wb-hub-fg);
	font-size: 16px;
}

.wb-hub .wb-brands__search input:focus {
	outline: 2px solid var(--wb-hub-brand);
	outline-offset: 1px;
}

.wb-hub .wb-brands__ordered {
	border-bottom: 1px solid var(--wb-hub-edge);
}

.wb-hub .wb-brands__ordered-row {
	display: flex;
	align-items: center;
	gap: 20px;
	padding-block: 20px;
}

.wb-hub .wb-brands__ordered-label {
	flex: 0 0 auto;
	color: var(--wb-hub-muted);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.wb-hub .wb-brands__ordered-list {
	display: grid;
	flex: 1 1 auto;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
	padding: 0;
	list-style: none;
}

.wb-hub .wb-brands__ordered-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 14px 16px;
	border: 1px solid var(--wb-hub-edge);
	border-radius: var(--wb-hub-radius);
}

.wb-hub .wb-brands__ordered-link {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.wb-hub .wb-brands__ordered-link strong {
	font-size: 16px;
}

.wb-hub .wb-brands__ordered-link span {
	color: var(--wb-hub-muted);
	font-size: 13px;
}

.wb-hub .wb-brands__shop {
	flex: 0 0 auto;
	padding: 5px 14px;
	border: 1px solid var(--wb-hub-brand);
	border-radius: 999px;
	color: var(--wb-hub-brand);
	font-size: 13px;
	font-weight: 700;
}

.wb-hub .wb-brands__group {
	padding-block: 32px 8px;
}

.wb-hub .wb-brands__group-head {
	display: flex;
	align-items: baseline;
	gap: 12px;
	margin-bottom: 16px;
}

.wb-hub .wb-brands__group-head::after {
	content: "";
	flex: 1 1 auto;
	height: 1px;
	background: var(--wb-hub-edge);
}

.wb-hub .wb-brands__group-count {
	color: var(--wb-hub-muted);
	font-size: 14px;
}

.wb-hub .wb-brands__rows {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.wb-hub .wb-brands__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 92px;
	padding: 18px 20px;
	border: 1px solid var(--wb-hub-edge);
	border-radius: var(--wb-hub-radius);
	background: #fff;
	transition:
		border-color 0.15s ease,
		box-shadow 0.15s ease;
}

.wb-hub .wb-brands__row:hover {
	border-color: #c7cdd6;
	box-shadow: 0 12px 28px -18px rgba(20, 30, 50, 0.45);
}

.wb-hub .wb-brands__row-main {
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 0;
}

.wb-hub .wb-brands__row-name {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
}

.wb-hub .wb-brands__pill {
	padding: 2px 9px;
	border-radius: 999px;
	background: #eaf0ff;
	color: var(--wb-hub-brand);
	font-size: 12px;
	font-weight: 700;
}

.wb-hub .wb-brands__pill-short,
.wb-hub .wb-brands__count-short {
	display: none;
}

.wb-hub .wb-brands__row-summary {
	color: var(--wb-hub-muted);
	font-size: 14px;
}

.wb-hub .wb-brands__row-count {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	gap: 14px;
	font-size: 15px;
	font-weight: 700;
}

.wb-hub .wb-brands__row-count svg {
	color: #9aa1ad;
}

.wb-hub .wb-brands__more {
	margin-top: 16px;
	padding: 0;
	border: 0;
	background: none;
	color: var(--wb-hub-brand);
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
}

.wb-hub .wb-brands__more:hover {
	text-decoration: underline;
}

.wb-hub .wb-brands__empty {
	padding-block: 24px;
	color: var(--wb-hub-muted);
}

.wb-hub.wb-brands .wb-hub__help {
	margin-top: 40px;
}

/* Brand and range hero ------------------------------------------------- */

.wb-hub .wb-brand-hero {
	background: var(--wb-brand-dark);
	color: #fff;
}

.wb-hub .wb-brand-hero .wb-hub__inner {
	padding-block: 28px 40px;
}

.wb-hub .wb-brand-hero__breadcrumb {
	color: var(--wb-brand-dark-muted);
	font-size: 14px;
}

.wb-hub .wb-brand-hero__breadcrumb [aria-current] {
	color: #fff;
}

.wb-hub .wb-brand-hero__row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 16px 60px;
	align-items: center;
	margin-top: 22px;
	padding-bottom: 28px;
	border-bottom: 1px solid var(--wb-brand-dark-edge);
}

.wb-hub .wb-brand-hero__eyebrow {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
	color: var(--wb-brand-dark-muted);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.wb-hub .wb-brand-hero__pill {
	padding: 2px 10px;
	border: 1px solid var(--wb-brand-dark-edge);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	font-size: 12px;
	letter-spacing: 0;
	text-transform: none;
}

.wb-hub .wb-brand-hero__title {
	color: #fff;
	font-size: 60px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.03em;
}

.wb-hub .wb-brand-hero__tagline {
	margin-top: 14px;
	color: #fff;
	font-size: 20px;
	font-weight: 700;
}

.wb-hub .wb-brand-hero__intro {
	color: rgba(255, 255, 255, 0.88);
	font-size: 16px;
	line-height: 1.65;
}

.wb-hub .wb-brand-hero__props {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px 32px;
	margin-top: 26px;
}

.wb-hub .wb-brand-hero__prop-eyebrow {
	margin-bottom: 8px;
	color: var(--wb-brand-accent);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.wb-hub .wb-brand-hero__prop-text {
	color: rgba(255, 255, 255, 0.86);
	font-size: 14px;
	line-height: 1.55;
}

.wb-hub .wb-brand-hero__prop-text strong {
	color: #fff;
}

.wb-hub .wb-brand-hero__button {
	display: inline-flex;
	margin-top: 12px;
	padding: 10px 16px;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 6px;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
}

.wb-hub .wb-brand-hero__button:hover {
	border-color: #fff;
}

/* A brand without ranges gets the same dark hero as every brand page; it
 * sits in the theme's archive template, so it clears that template's own
 * spacing. */
.wb-hub.wb-hub--brand-archive {
	background: var(--wb-brand-dark);
}

.wb-hub .wb-brand-hero__related {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 14px;
	margin-top: 26px;
	padding-top: 22px;
	border-top: 1px solid var(--wb-brand-dark-edge);
}

.wb-hub .wb-brand-hero__related-label {
	color: var(--wb-brand-dark-muted);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.wb-hub .wb-brand-hero__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 0;
	list-style: none;
}

.wb-hub .wb-brand-hero__chips a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 14px;
	border: 1px solid var(--wb-brand-dark-edge);
	border-radius: 999px;
	color: #fff;
	font-size: 13px;
	font-weight: 600;
}

.wb-hub .wb-brand-hero__chips a:hover {
	border-color: #fff;
}

.wb-hub .wb-brand-hero__chip-count {
	color: var(--wb-brand-dark-muted);
	font-weight: 400;
}

/* Brand page sections -------------------------------------------------- */

.wb-hub .wb-brand__head {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 6px 14px;
	margin-bottom: 18px;
}

.wb-hub .wb-brand__h2 {
	font-size: 26px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.01em;
}

.wb-hub .wb-brand__head-meta {
	color: var(--wb-hub-muted);
	font-size: 14px;
}

.wb-hub .wb-brand__head-link {
	margin-left: auto;
	font-size: 15px;
}

.wb-hub .wb-brand__ranges {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.wb-hub .wb-brand__range {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--wb-hub-edge);
	border-radius: var(--wb-hub-radius);
	background: #fff;
	transition:
		border-color 0.15s ease,
		box-shadow 0.15s ease;
}

.wb-hub .wb-brand__range:hover {
	border-color: #c7cdd6;
	box-shadow: 0 12px 28px -18px rgba(20, 30, 50, 0.45);
}

.wb-hub .wb-brand__range-media,
.wb-hub .wb-brand-card__media,
.wb-hub .wb-range__finish-media {
	position: relative;
	display: block;
	overflow: hidden;
	background: #eef0f3;
}

.wb-hub .wb-brand__range-media {
	height: 190px;
}

.wb-hub .wb-brand__range-media img,
.wb-hub .wb-brand-card__media img,
.wb-hub .wb-range__finish-media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.wb-hub .wb-brand__range-media img.wb-hub__img--contain,
.wb-hub .wb-brand-card__media img.wb-hub__img--contain,
.wb-hub .wb-range__finish-media img.wb-hub__img--contain {
	padding: 8px;
	background: #fff;
	object-fit: contain;
}

.wb-hub .wb-brand__range-body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	gap: 8px;
	padding: 18px 18px 20px;
}

.wb-hub .wb-brand__range-title {
	font-size: 20px;
	font-weight: 700;
}

.wb-hub .wb-brand__range-type {
	color: var(--wb-hub-muted);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.wb-hub .wb-brand__range-summary {
	flex: 1 1 auto;
	color: var(--wb-hub-muted);
	font-size: 14px;
	line-height: 1.5;
}

.wb-hub .wb-brand__range-link {
	margin-top: 6px;
	color: var(--wb-hub-brand);
	font-size: 15px;
	font-weight: 700;
}

.wb-hub .wb-brand__cards {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.wb-hub .wb-brand-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--wb-hub-edge);
	border-radius: var(--wb-hub-radius);
	background: #fff;
}

.wb-hub .wb-brand-card__media {
	height: 190px;
}

.wb-hub .wb-brand-card__badge,
.wb-hub .wb-brand-card__flag {
	position: absolute;
	top: 12px;
	z-index: 1;
	padding: 3px 9px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.4;
}

.wb-hub .wb-brand-card__badge {
	left: 12px;
	background: var(--wb-brand-dark);
	color: #fff;
}

.wb-hub .wb-brand-card__flag {
	right: 12px;
	background: #fff;
	box-shadow: 0 1px 3px rgba(20, 30, 50, 0.18);
	color: var(--wb-hub-fg);
}

.wb-hub .wb-brand-card__flag--sale {
	background: #d92d20;
	color: #fff;
}

.wb-hub .wb-brand-card__body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	gap: 6px;
	padding: 16px;
}

.wb-hub .wb-brand-card__name {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.35;
}

.wb-hub .wb-brand-card__name:hover {
	text-decoration: underline;
}

.wb-hub .wb-brand-card__spec {
	color: var(--wb-hub-muted);
	font-size: 13px;
}

.wb-hub .wb-brand-card__price {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 4px;
	margin-top: auto;
	padding-top: 8px;
}

.wb-hub .wb-brand-card__amount,
.wb-hub .wb-brand-card__amount .amount {
	font-size: 20px;
	font-weight: 700;
}

.wb-hub .wb-brand-card__unit {
	color: var(--wb-hub-muted);
	font-size: 14px;
}

.wb-hub .wb-brand-card__pack {
	margin-left: auto;
	color: #3f4652;
	font-size: 13px;
}

.wb-hub .wb-brand-card__add {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 44px;
	margin-top: 10px;
	border: 0;
	border-radius: 6px;
	background: var(--wb-brand-dark);
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
}

.wb-hub .wb-brand-card__add:hover {
	background: #000;
}

.wb-hub .wb-brand-card__add[disabled] {
	opacity: 0.6;
	cursor: progress;
}

.wb-hub .wb-brand-card__status {
	min-height: 1em;
	color: var(--wb-hub-success);
	font-size: 13px;
}

.wb-hub .wb-brand__stats {
	background: var(--wb-hub-tint);
}

.wb-hub .wb-brand__stats-row {
	display: flex;
	align-items: center;
	gap: 0;
	padding-block: 28px;
}

.wb-hub .wb-brand__stat {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding-inline: 0 32px;
	margin-right: 32px;
	border-right: 1px solid var(--wb-hub-edge);
}

.wb-hub .wb-brand__stat-value {
	font-size: 30px;
	font-weight: 700;
	line-height: 1;
}

.wb-hub .wb-brand__stat-label {
	color: var(--wb-hub-muted);
	font-size: 14px;
}

.wb-hub .wb-brand__stats-note {
	flex: 1 1 auto;
	color: #3f4652;
	font-size: 15px;
	line-height: 1.6;
}

.wb-hub .wb-brand__guide-row {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
	gap: 32px 48px;
	align-items: start;
}

.wb-hub .wb-brand__guide-row--table {
	grid-template-columns: minmax(0, 1fr);
}

.wb-hub .wb-brand__guide-row--table .wb-brand__glance {
	max-width: 760px;
}

.wb-hub .wb-brand__guide-text {
	margin-block: 12px 14px;
	color: #3f4652;
	font-size: 16px;
	line-height: 1.7;
}

.wb-hub .wb-brand__guide-text p + p {
	margin-top: 10px;
}

.wb-hub .wb-brand__glance {
	padding: 20px 22px;
	border: 1px solid var(--wb-hub-edge);
	border-radius: var(--wb-hub-radius);
}

.wb-hub .wb-brand__glance table {
	width: 100%;
	border-collapse: collapse;
}

.wb-hub .wb-brand__glance caption {
	padding-bottom: 12px;
	color: var(--wb-hub-muted);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-align: left;
	text-transform: uppercase;
}

.wb-hub .wb-brand__glance th,
.wb-hub .wb-brand__glance td {
	padding: 12px 8px 12px 0;
	border-top: 1px solid var(--wb-hub-edge);
	font-size: 15px;
	text-align: left;
	vertical-align: top;
}

.wb-hub .wb-brand__glance th {
	font-weight: 700;
}

.wb-hub .wb-brand__glance-use {
	color: var(--wb-hub-muted);
	font-size: 13px !important;
	text-align: right !important;
}

/* Range page ----------------------------------------------------------- */

.wb-hub .wb-range__finishes {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 16px;
}

.wb-hub .wb-range__finish {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 0;
	border: 0;
	background: none;
	color: inherit;
	font: inherit;
	text-align: left;
	cursor: pointer;
}

.wb-hub .wb-range__finish-media {
	height: 104px;
	margin-bottom: 8px;
	border: 2px solid transparent;
	border-radius: 8px;
	box-shadow: inset 0 0 0 1px var(--wb-hub-edge);
}

.wb-hub .wb-range__finish[aria-checked="true"] .wb-range__finish-media {
	border-color: var(--wb-hub-brand);
	box-shadow: 0 0 0 2px #fff inset;
}

.wb-hub .wb-range__finish:focus-visible .wb-range__finish-media {
	outline: 2px solid var(--wb-hub-brand);
	outline-offset: 2px;
}

.wb-hub .wb-range__finish-media--all {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2px;
	background: #fff;
}

.wb-hub .wb-range__finish-media--all img {
	position: static;
	width: 100%;
	height: 100%;
	min-height: 0;
	object-fit: cover;
}

.wb-hub .wb-range__card {
	display: flex;
}

.wb-hub .wb-range__card > .wb-brand-card {
	flex: 1 1 auto;
}

.wb-hub .wb-range__finish-name {
	font-size: 14px;
	font-weight: 600;
}

.wb-hub .wb-range__finish-count {
	color: var(--wb-hub-muted);
	font-size: 12px;
}

.wb-hub .wb-range__specs {
	background: var(--wb-hub-tint);
}

.wb-hub .wb-range__specs-row {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 0;
	margin: 0 auto;
	padding-block: 22px;
}

.wb-hub .wb-range__spec {
	padding-inline: 0 20px;
	margin-right: 20px;
	border-right: 1px solid var(--wb-hub-edge);
}

.wb-hub .wb-range__spec:last-child {
	border-right: 0;
}

.wb-hub .wb-range__spec dt {
	margin-bottom: 6px;
	color: var(--wb-hub-muted);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.wb-hub .wb-range__spec dd {
	margin: 0;
	font-size: 15px;
	font-weight: 700;
}

.wb-hub .wb-range__spec--note dd {
	color: var(--wb-hub-muted);
	font-size: 13px;
	font-weight: 400;
}

/* Room size uses Measure for WooCommerce's calculator component in its row
 * variant (wb-measure-calculator, .multifors-sqm-card--row), full width over
 * the product grid. The hub's `.wb-hub p { margin: 0 }` reset already gives
 * the row the spacing it wants. */
.wb-hub .wb-range__room {
	margin-bottom: 20px;
}

.wb-hub .wb-range__complete-row {
	display: grid;
	grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
	gap: 32px 48px;
	align-items: start;
}

.wb-hub .wb-range__pairing-table {
	width: 100%;
	margin-top: 16px;
	overflow: hidden;
	border-collapse: collapse;
	border-radius: var(--wb-hub-radius);
	background: var(--wb-hub-tint);
}

.wb-hub .wb-range__pairing-table th,
.wb-hub .wb-range__pairing-table td {
	padding: 14px 16px;
	border-top: 1px solid var(--wb-hub-edge);
	font-size: 14px;
	text-align: left;
}

.wb-hub .wb-range__pairing-table thead th {
	border-top: 0;
	color: var(--wb-hub-muted);
	font-size: 12px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.wb-hub .wb-range__pairing-table a:hover {
	text-decoration: underline;
}

.wb-hub .wb-range__pairing-price,
.wb-hub .wb-range__pairing-note {
	color: var(--wb-hub-muted);
	font-size: 13px;
}

.wb-hub .wb-range__trims-title {
	margin-bottom: 12px;
	font-size: 18px;
	font-weight: 700;
}

.wb-hub .wb-range__trim-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 14px;
	padding: 0;
	list-style: none;
}

.wb-hub .wb-range__trim {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr) auto auto;
	gap: 4px 14px;
	align-items: center;
	padding: 12px 14px;
	border: 1px solid var(--wb-hub-edge);
	border-radius: var(--wb-hub-radius);
}

.wb-hub .wb-range__trim img {
	width: 48px;
	height: 48px;
	border-radius: 6px;
	object-fit: cover;
}

.wb-hub .wb-range__trim-name {
	font-size: 14px;
	font-weight: 700;
}

.wb-hub .wb-range__trim-price {
	font-size: 15px;
	font-weight: 700;
}

.wb-hub .wb-range__trim-add {
	padding: 5px 14px;
	border: 1px solid var(--wb-hub-brand);
	border-radius: 999px;
	background: #fff;
	color: var(--wb-hub-brand);
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
}

.wb-hub .wb-range__trim .wb-brand-card__status {
	grid-column: 2 / -1;
}

/* Responsive ----------------------------------------------------------- */

@media (max-width: 1024px) {
	.wb-hub .wb-brand__ranges,
	.wb-hub .wb-brand__cards {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.wb-hub .wb-brand-hero__props {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.wb-hub .wb-range__finishes {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.wb-hub .wb-range__specs-row {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		row-gap: 16px;
	}

	.wb-hub .wb-brands__ordered-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.wb-hub .wb-brands__hero-row,
	.wb-hub .wb-brand-hero__row,
	.wb-hub .wb-brand__guide-row,
	.wb-hub .wb-range__complete-row {
		grid-template-columns: minmax(0, 1fr);
	}

	.wb-hub .wb-brands__intro {
		display: none;
	}

	.wb-hub .wb-brands__rows {
		grid-template-columns: minmax(0, 1fr);
		gap: 10px;
	}

	.wb-hub .wb-brands__row {
		min-height: 0;
		padding: 16px;
	}

	.wb-hub .wb-brands__row-name {
		font-size: 17px;
	}

	.wb-hub .wb-brands__pill-long,
	.wb-hub .wb-brands__count-long {
		display: none;
	}

	.wb-hub .wb-brands__pill-short,
	.wb-hub .wb-brands__count-short {
		display: inline;
	}

	.wb-hub .wb-brands__ordered-row {
		flex-direction: column;
		align-items: stretch;
	}

	.wb-hub .wb-brands__ordered-list {
		display: flex;
		overflow-x: auto;
		gap: 10px;
	}

	.wb-hub .wb-brands__ordered-item {
		flex: 0 0 auto;
	}

	.wb-hub .wb-brands__shop {
		display: none;
	}

	.wb-hub .wb-brand-hero__title {
		font-size: 42px;
	}

	.wb-hub .wb-brand-hero__props {
		grid-template-columns: minmax(0, 1fr);
	}

	.wb-hub .wb-brand-hero__prop:not(:last-child):not(:first-child) {
		display: none;
	}

	.wb-hub .wb-brand__ranges {
		grid-template-columns: minmax(0, 1fr);
		gap: 12px;
	}

	.wb-hub .wb-brand__range {
		flex-direction: row;
		align-items: center;
	}

	.wb-hub .wb-brand__range-media {
		flex: 0 0 76px;
		height: 76px;
		margin: 14px 0 14px 14px;
		border-radius: 8px;
	}

	.wb-hub .wb-brand__range-summary,
	.wb-hub .wb-brand__range-link {
		display: none;
	}

	.wb-hub .wb-brand__stats-row {
		flex-wrap: wrap;
		row-gap: 16px;
	}

	.wb-hub .wb-brand__head-link {
		margin-left: 0;
	}

	.wb-hub .wb-range__finishes {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 12px;
	}

	.wb-hub .wb-range__finish-media {
		height: 80px;
	}

	.wb-hub .wb-range__specs-row {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.wb-hub .wb-range__spec--note {
		display: none;
	}
}

@media (max-width: 560px) {
	.wb-hub .wb-brand__cards {
		gap: 12px;
	}

	.wb-hub .wb-brand-card__media {
		height: 120px;
	}

	.wb-hub .wb-brand-card__body {
		padding: 12px;
	}

	.wb-hub .wb-brand-card__name {
		font-size: 14px;
	}

	.wb-hub .wb-brand-card__spec,
	.wb-hub .wb-brand-card__pack {
		display: none;
	}

	.wb-hub .wb-brand-card__amount,
	.wb-hub .wb-brand-card__amount .amount {
		font-size: 17px;
	}

	.wb-hub .wb-range__trim {
		grid-template-columns: 48px minmax(0, 1fr) auto;
	}

	.wb-hub .wb-range__trim-price {
		grid-column: 2;
	}
}
