/**
 * Neighborhood Disruptors Core -- v1.5.0 component design system.
 *
 * BRIGHT MIDDAY LUXURY EDITORIAL
 * + PREMIUM TRAVEL / CULINARY MAGAZINE
 * + CURATED MARKETPLACE
 * + IMMERSIVE DISCOVERY PLATFORM
 *
 * This file is additive. The approved v1.4.0 Recipe composition lives in
 * nd-core-frontend.css and is NOT redeclared here, so previously working
 * Recipe styling is preserved exactly.
 *
 * Everything is scoped to .nd-* classes. This file never declares body,
 * header, nav, footer, or any theme/Listeo selector, so Listeo's own
 * brightness, dimensional cards and controls are untouched outside ND
 * content areas.
 *
 * Frozen token set (directive section 3) is declared on .nd-scope so it
 * cannot leak into the theme's cascade.
 */

.nd-scope,
.nd-world,
.nd-explore-engage,
.nd-store,
.nd-mohcoh,
.nd-join,
.nd-advertise,
.nd-community-hub,
.nd-business-health,
.nd-archive,
.nd-hero,
.nd-section,
.nd-cta-band {
	--pearl: #f7f3ed;
	--ivory: #fffdf8;
	--stone: #e9e2d8;
	--ink: #151613;
	--soft-ink: #343630;
	--muted: #727068;
	--champagne: #b99b62;
	--champagne-light: #dcc99d;
	--plum: #493246;
	--sage: #69796d;
	--linen: #eee7dc;

	--nd-deep: #071924;
	--nd-display: Georgia, "Times New Roman", serif;
	--nd-ui: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
	--nd-gutter: clamp(20px, 5vw, 96px);
	--nd-section-y: clamp(60px, 8vw, 130px);
	--nd-rule: 1px solid var(--stone);
	--nd-shadow-soft: 0 6px 26px rgba(21, 22, 19, 0.05);
	--nd-shadow-lift: 0 14px 44px rgba(21, 22, 19, 0.09);
}

/* ND surfaces sit on the bright editorial ground, never a dark shell. */
.nd-world,
.nd-explore-engage,
.nd-store,
.nd-mohcoh,
.nd-join,
.nd-advertise,
.nd-community-hub,
.nd-business-health,
.nd-archive {
	background: var(--ivory);
	color: var(--ink);
	font-family: var(--nd-ui);
	line-height: 1.6;
}

.nd-world *,
.nd-explore-engage *,
.nd-store *,
.nd-mohcoh *,
.nd-join *,
.nd-advertise *,
.nd-community-hub *,
.nd-business-health *,
.nd-archive * {
	box-sizing: border-box;
}

/* Shared vertical rhythm + horizontal gutter. */
.nd-section {
	padding: var(--nd-section-y) var(--nd-gutter);
	max-width: 1560px;
	margin: 0 auto;
}

.nd-section + .nd-section {
	padding-top: 0;
}

.nd-rail {
	padding: var(--nd-section-y) var(--nd-gutter);
	max-width: 1560px;
	margin: 0 auto;
}

.nd-rail + .nd-rail,
.nd-section + .nd-rail,
.nd-rail + .nd-section {
	padding-top: 0;
}

/* ---- Typography ------------------------------------------------------ */

.nd-section-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 32px;
	padding-bottom: 16px;
	border-bottom: var(--nd-rule);
	margin-bottom: 32px;
}

.nd-section-header__text {
	max-width: 760px;
}

.nd-section-header__headline {
	font-family: var(--nd-display);
	font-size: clamp(26px, 2.6vw, 42px);
	font-weight: 500;
	letter-spacing: -0.02em;
	line-height: 1.14;
	margin: 0;
	color: var(--ink);
}

.nd-section-header__dek {
	margin: 10px 0 0;
	font-size: 15px;
	line-height: 1.66;
	color: var(--muted);
	max-width: 62ch;
}

.nd-section-header__link,
.nd-link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: var(--ink);
	text-decoration: none;
	white-space: nowrap;
	border-bottom: 1px solid var(--champagne);
	padding-bottom: 4px;
	transition: border-color 0.2s ease, color 0.2s ease;
}

.nd-section-header__link:hover,
.nd-link-arrow:hover {
	color: var(--champagne);
	border-color: var(--ink);
}

.nd-kicker {
	display: block;
	font-family: var(--nd-ui);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--champagne);
	margin: 0 0 10px;
}

/* ---- Buttons --------------------------------------------------------- */

.nd-world .nd-button,
.nd-explore-engage .nd-button,
.nd-store .nd-button,
.nd-mohcoh .nd-button,
.nd-join .nd-button,
.nd-advertise .nd-button,
.nd-community-hub .nd-button,
.nd-business-health .nd-button,
.nd-archive .nd-button,
.nd-cta-band .nd-button,
.nd-rail .nd-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 11px 20px;
	border: 1px solid var(--stone);
	background: var(--ivory);
	color: var(--ink);
	font-family: var(--nd-ui);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 3px;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.nd-world .nd-button:hover,
.nd-explore-engage .nd-button:hover,
.nd-store .nd-button:hover,
.nd-mohcoh .nd-button:hover,
.nd-join .nd-button:hover,
.nd-advertise .nd-button:hover,
.nd-business-health .nd-button:hover,
.nd-archive .nd-button:hover,
.nd-cta-band .nd-button:hover,
.nd-rail .nd-button:hover {
	transform: translateY(-1px);
}

.nd-button--gold {
	background: var(--champagne) !important;
	border-color: var(--champagne) !important;
	color: var(--ink) !important;
}

.nd-button--gold:hover {
	background: var(--champagne-light) !important;
}

.nd-button--dark {
	background: var(--nd-deep) !important;
	border-color: var(--nd-deep) !important;
	color: var(--ivory) !important;
}

.nd-button--outline {
	background: transparent !important;
	border-color: var(--ink) !important;
	color: var(--ink) !important;
}

.nd-button--outline:hover {
	background: var(--ink) !important;
	color: var(--ivory) !important;
}

.nd-button:focus-visible,
.nd-section-header__link:focus-visible,
.nd-card__title a:focus-visible,
.nd-discovery-tabs__link:focus-visible,
.nd-link-arrow:focus-visible {
	outline: 2px solid var(--champagne);
	outline-offset: 3px;
}

/* ---- Hero ------------------------------------------------------------ */

.nd-hero {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
	align-items: stretch;
	gap: clamp(24px, 4vw, 72px);
	padding: clamp(48px, 7vw, 104px) var(--nd-gutter) clamp(40px, 5vw, 72px);
	max-width: 1560px;
	margin: 0 auto;
	background: var(--ivory);
}

.nd-hero--compact {
	padding-top: clamp(36px, 4.5vw, 64px);
}

.nd-hero--text {
	grid-template-columns: minmax(0, 7fr);
}

.nd-hero__media {
	position: relative;
	overflow: hidden;
	background: var(--linen);
	min-height: 340px;
	order: 2;
}

.nd-hero__image {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 340px;
	object-fit: cover;
}

.nd-hero__body {
	order: 1;
	align-self: center;
	max-width: 660px;
}

.nd-hero__headline {
	font-family: var(--nd-display);
	font-size: clamp(34px, 4.6vw, 76px);
	font-weight: 500;
	line-height: 1.04;
	letter-spacing: -0.03em;
	margin: 0 0 18px;
	color: var(--ink);
}

.nd-hero__headline em,
.nd-hero__headline i {
	font-style: italic;
	color: var(--plum);
}

.nd-hero__dek {
	font-family: var(--nd-display);
	font-size: clamp(16px, 1.35vw, 21px);
	line-height: 1.6;
	color: var(--soft-ink);
	margin: 0 0 22px;
	max-width: 58ch;
}

.nd-hero__eyebrows {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 22px;
	list-style: none;
	margin: 0 0 26px;
	padding: 0;
	border-top: var(--nd-rule);
	padding-top: 16px;
}

.nd-hero__eyebrows li {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--muted);
}

.nd-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

/* Text-only worlds (no hero image) stay editorial, not empty. */
.nd-hero--text .nd-hero__body,
.nd-hero:not(:has(.nd-hero__media)) .nd-hero__body {
	max-width: 860px;
}

/* ---- Cards ----------------------------------------------------------- */

.nd-rail__grid,
.nd-results,
.nd-feature-strip {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 26px;
}

.nd-rail--cols-3 .nd-rail__grid,
.nd-results--compact,
.nd-story-layout .nd-rail--cols-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.nd-rail--cols-2 .nd-rail__grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* cols-1 is used by the Story aside and other narrow context columns, so
   it must target the inner grid -- not the rail wrapper. */
.nd-rail--cols-1 .nd-rail__grid,
.nd-rail--stacked .nd-rail__grid {
	grid-template-columns: 1fr;
}

.nd-card {
	display: flex;
	flex-direction: column;
	background: var(--ivory);
	border: var(--nd-rule);
	overflow: hidden;
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.nd-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--nd-shadow-lift);
}

.nd-card__media {
	position: relative;
	display: block;
	overflow: hidden;
	background: var(--linen);
	aspect-ratio: 4 / 3;
}

.nd-card__media--editorial {
	aspect-ratio: 3 / 2;
}

.nd-card__media--portrait {
	aspect-ratio: 1 / 1;
}

.nd-card__media--product,
.nd-card__media--logo {
	aspect-ratio: 1 / 1;
	background: var(--pearl);
}

.nd-card__media-link {
	display: block;
	width: 100%;
	height: 100%;
}

.nd-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.nd-card:hover .nd-card__media img {
	transform: scale(1.035);
}

.nd-card__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--pearl), var(--linen) 60%, var(--stone));
}

.nd-card__type,
.nd-card__badge {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 2;
	background: rgba(255, 253, 248, 0.95);
	border: 1px solid var(--stone);
	padding: 5px 10px;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ink);
}

.nd-card__type--inline {
	position: static;
	display: inline-block;
	margin-bottom: 8px;
}

.nd-card__badge {
	left: auto;
	right: 12px;
	background: var(--champagne);
	border-color: var(--champagne);
	color: var(--ink);
}

.nd-card__body {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 18px 18px 20px;
	flex: 1 1 auto;
}

.nd-card__title {
	font-family: var(--nd-display);
	font-size: 20px;
	font-weight: 500;
	line-height: 1.22;
	margin: 0;
	color: var(--ink);
}

.nd-card__title a {
	color: inherit;
	text-decoration: none;
}

.nd-card__title a:hover {
	color: var(--champagne);
}

.nd-card__dek {
	margin: 0;
	font-size: 13px;
	line-height: 1.6;
	color: var(--muted);
}

.nd-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 14px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nd-card__meta-item {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--muted);
}

.nd-card__rating {
	margin-top: auto;
}

.nd-card__footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-top: auto;
	padding-top: 14px;
	border-top: var(--nd-rule);
}

.nd-card__price {
	font-family: var(--nd-display);
	font-size: 19px;
	color: var(--ink);
}

.nd-card__price del,
.nd-card__price ins {
	font-size: 14px;
}

.nd-card__price ins {
	text-decoration: none;
	color: var(--plum);
	font-weight: 600;
}

.nd-card__footer-extra {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	font-size: 12px;
}

.nd-card__footer-extra .nd-button {
	min-height: 34px;
	padding: 7px 12px;
	font-size: 10px;
}

.nd-byline {
	font-size: 11px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--muted);
}

/* Ratings -- only rendered when genuinely present. */
.nd-rating {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	color: var(--muted);
}

.nd-rating__stars {
	color: var(--champagne);
	letter-spacing: 2px;
	font-size: 13px;
}

.nd-rating__value {
	font-weight: 700;
	color: var(--ink);
}

/* ---- Empty state ----------------------------------------------------- */

.nd-empty-panel {
	border: 1px dashed var(--stone);
	background: var(--pearl);
	padding: clamp(26px, 3vw, 46px);
	max-width: 780px;
}

.nd-empty-panel__message {
	font-family: var(--nd-display);
	font-size: 19px;
	line-height: 1.55;
	color: var(--soft-ink);
	margin: 0 0 16px;
}

.nd-empty-panel__list {
	margin: 0 0 18px;
	padding-left: 20px;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.8;
}

.nd-empty-panel__note {
	font-size: 12px;
	color: var(--muted);
	font-style: italic;
	margin: 0;
}

.nd-empty-state {
	color: var(--muted);
	font-style: italic;
}

.nd-notice {
	padding: 16px 20px;
	border: 1px solid var(--stone);
	background: var(--linen);
	font-size: 13px;
	line-height: 1.6;
	margin: 0 var(--nd-gutter) 12px;
	max-width: 1560px;
}

.nd-notice--sample {
	border-left: 4px solid var(--champagne);
}

/* ---- Commerce -------------------------------------------------------- */

.nd-disclosure {
	font-size: 11px;
	line-height: 1.6;
	color: var(--muted);
	margin: 18px 0 0;
	max-width: 78ch;
}

.nd-commerce-group {
	margin-bottom: 34px;
}

.nd-commerce-group__label {
	font-family: var(--nd-ui);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--champagne);
	border-bottom: var(--nd-rule);
	padding-bottom: 10px;
	margin: 0 0 20px;
}

.nd-add-to-cart {
	min-height: 34px !important;
	padding: 7px 12px !important;
	font-size: 10px !important;
}

/* ---- Discovery / Explore & Engage ----------------------------------- */

.nd-explore-engage .nd-search {
	padding: 0 var(--nd-gutter) 26px;
	max-width: 1560px;
	margin: 0 auto;
}

.nd-search__label {
	display: block;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 10px;
}

.nd-search__row {
	display: flex;
	gap: 10px;
	align-items: stretch;
	max-width: 880px;
}

.nd-search__input {
	flex: 1 1 auto;
	min-height: 52px;
	padding: 0 18px;
	border: var(--nd-rule);
	background: var(--ivory);
	color: var(--ink);
	font-family: var(--nd-ui);
	font-size: 15px;
	border-radius: 3px;
}

.nd-search__input:focus {
	outline: none;
	border-color: var(--champagne);
	box-shadow: 0 0 0 3px rgba(185, 155, 98, 0.16);
}

.nd-search__hint {
	font-size: 12px;
	color: var(--muted);
	margin: 12px 0 0;
	max-width: 74ch;
}

.nd-discovery-tabs {
	padding: 0 var(--nd-gutter);
	max-width: 1560px;
	margin: 0 auto;
	border-bottom: var(--nd-rule);
}

.nd-discovery-tabs__list {
	display: flex;
	flex-wrap: wrap;
	gap: 0;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nd-discovery-tabs__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 15px 20px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: var(--muted);
	text-decoration: none;
	border-bottom: 2px solid transparent;
	transition: color 0.2s ease, border-color 0.2s ease;
}

.nd-discovery-tabs__link:hover {
	color: var(--ink);
}

.nd-discovery-tabs__item.is-active .nd-discovery-tabs__link {
	color: var(--ink);
	border-bottom-color: var(--champagne);
}

.nd-discovery-tabs__count {
	font-size: 9px;
	color: var(--champagne);
	border: 1px solid var(--stone);
	border-radius: 999px;
	padding: 1px 6px;
}

.nd-discovery-panel {
	padding: clamp(36px, 4vw, 64px) var(--nd-gutter);
	max-width: 1560px;
	margin: 0 auto;
}

.nd-discovery-panel__title {
	font-family: var(--nd-display);
	font-size: clamp(24px, 2.4vw, 36px);
	font-weight: 500;
	margin: 0 0 6px;
}

.nd-discovery-panel__context {
	font-size: 13px;
	color: var(--muted);
	margin: 0 0 28px;
}

.nd-discovery-note {
	padding: var(--nd-section-y) var(--nd-gutter);
	max-width: 1560px;
	margin: 0 auto;
	background: var(--pearl);
	border-top: var(--nd-rule);
}

.nd-discovery-note h2 {
	font-family: var(--nd-display);
	font-size: clamp(24px, 2.4vw, 38px);
	font-weight: 500;
	margin: 0 0 12px;
}

.nd-discovery-note p {
	max-width: 70ch;
	color: var(--soft-ink);
	margin: 0 0 20px;
}

.nd-discovery-note__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

/* Category + department + channel tiles */
.nd-category-tiles,
.nd-department-grid,
.nd-channel-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nd-category-tiles__item,
.nd-department,
.nd-channel {
	list-style: none;
}

.nd-category-tile,
.nd-department__link,
.nd-channel__link {
	display: flex;
	flex-direction: column;
	gap: 6px;
	height: 100%;
	padding: 0 0 16px;
	border: var(--nd-rule);
	background: var(--ivory);
	text-decoration: none;
	color: inherit;
	overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nd-category-tile:hover,
.nd-department__link:hover,
.nd-channel__link:hover {
	transform: translateY(-3px);
	box-shadow: var(--nd-shadow-lift);
}

.nd-category-tile__media,
.nd-department__media,
.nd-channel__media {
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--linen);
	margin-bottom: 10px;
}

.nd-category-tile__media img,
.nd-department__media img,
.nd-channel__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.nd-category-tile__name,
.nd-department__name,
.nd-channel__name {
	font-family: var(--nd-display);
	font-size: 19px;
	padding: 0 16px;
}

.nd-category-tile__count,
.nd-department__index,
.nd-department__dek {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--muted);
	padding: 0 16px;
}

.nd-department__index {
	color: var(--champagne);
}

.nd-department__dek {
	font-weight: 400;
	letter-spacing: 0.02em;
	text-transform: none;
	font-size: 12px;
	line-height: 1.5;
}

/* Feature story */
.nd-feature-story {
	display: grid;
	grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
	gap: clamp(22px, 3vw, 56px);
	align-items: center;
	border: var(--nd-rule);
	background: var(--ivory);
	overflow: hidden;
}

.nd-feature-story__media {
	display: block;
	overflow: hidden;
	background: var(--linen);
	height: 100%;
}

.nd-feature-story__media img {
	width: 100%;
	height: 100%;
	min-height: 320px;
	object-fit: cover;
	display: block;
	transition: transform 0.7s ease;
}

.nd-feature-story:hover .nd-feature-story__media img {
	transform: scale(1.03);
}

.nd-feature-story__body {
	padding: clamp(24px, 3vw, 52px);
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: flex-start;
}

.nd-feature-story__headline {
	font-family: var(--nd-display);
	font-size: clamp(26px, 2.8vw, 46px);
	font-weight: 500;
	line-height: 1.1;
	margin: 0;
}

.nd-feature-story__headline a {
	color: inherit;
	text-decoration: none;
}

.nd-feature-story__headline a:hover {
	color: var(--champagne);
}

.nd-feature-story__dek {
	font-family: var(--nd-display);
	font-size: 17px;
	line-height: 1.6;
	color: var(--soft-ink);
	margin: 0;
}

.nd-feature-story__byline {
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--muted);
	margin: 0;
}

.nd-feature-story__body .nd-button {
	margin-top: 8px;
}

/* ---- CTA band -------------------------------------------------------- */

.nd-cta-band {
	display: grid;
	grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
	gap: clamp(22px, 3vw, 56px);
	align-items: center;
	margin: 0 auto;
	padding: var(--nd-section-y) var(--nd-gutter);
	max-width: 1560px;
	background: var(--pearl);
	border-top: var(--nd-rule);
	border-bottom: var(--nd-rule);
}

.nd-cta-band--plum {
	background: var(--plum);
	border-color: var(--plum);
}

.nd-cta-band--plum .nd-cta-band__headline,
.nd-cta-band--plum .nd-cta-band__text,
.nd-cta-band--plum .nd-kicker {
	color: var(--ivory);
}

.nd-cta-band--plum .nd-kicker {
	color: var(--champagne-light);
}

.nd-cta-band--plum .nd-button--outline {
	border-color: var(--champagne-light) !important;
	color: var(--ivory) !important;
}

.nd-cta-band--plum .nd-button--outline:hover {
	background: var(--champagne-light) !important;
	color: var(--plum) !important;
}

.nd-cta-band--linen {
	background: var(--linen);
}

.nd-cta-band:not(:has(.nd-cta-band__media)) {
	grid-template-columns: minmax(0, 1fr);
}

.nd-cta-band__headline {
	font-family: var(--nd-display);
	font-size: clamp(26px, 3vw, 50px);
	font-weight: 500;
	line-height: 1.08;
	letter-spacing: -0.02em;
	margin: 0 0 14px;
}

.nd-cta-band__text {
	font-size: 16px;
	line-height: 1.68;
	max-width: 62ch;
	margin: 0 0 22px;
	color: var(--soft-ink);
}

.nd-cta-band__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.nd-cta-band__media {
	overflow: hidden;
	background: var(--stone);
}

.nd-cta-band__media img {
	width: 100%;
	height: 100%;
	min-height: 280px;
	object-fit: cover;
	display: block;
}

/* ---- Pathways / pillars / journey / roles ---------------------------- */

.nd-pathways,
.nd-pillars,
.nd-journey,
.nd-benefits,
.nd-formats,
.nd-moves,
.nd-role-grid,
.nd-partner-pathways,
.nd-metrics,
.nd-attention-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.nd-pathways,
.nd-role-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
}

.nd-pathway,
.nd-role,
.nd-benefit,
.nd-format,
.nd-move {
	border: var(--nd-rule);
	background: var(--ivory);
	padding: 26px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: flex-start;
}

.nd-pathway__label,
.nd-role__label,
.nd-benefit__title,
.nd-format__title,
.nd-move__title {
	font-family: var(--nd-display);
	font-size: 21px;
	font-weight: 500;
	line-height: 1.24;
	margin: 0;
}

.nd-pathway__dek,
.nd-role__dek,
.nd-benefit__dek,
.nd-format__dek,
.nd-move__dek {
	font-size: 13px;
	line-height: 1.62;
	color: var(--muted);
	margin: 0;
}

.nd-role__pending {
	font-size: 12px;
	font-style: italic;
	color: var(--muted);
	margin: 0;
}

.nd-pathway .nd-button,
.nd-role .nd-button {
	margin-top: auto;
}

.nd-pillars {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.nd-pillar {
	display: flex;
	align-items: center;
	gap: 12px;
	border: var(--nd-rule);
	background: var(--ivory);
	padding: 16px 22px;
}

.nd-pillar__index,
.nd-journey__index {
	font-family: var(--nd-display);
	font-size: 22px;
	color: var(--champagne);
}

.nd-pillar__label,
.nd-journey__label {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.nd-journey {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 0;
	border: var(--nd-rule);
	background: var(--ivory);
}

.nd-journey__step {
	padding: 26px 20px;
	border-right: var(--nd-rule);
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.nd-journey__step:last-child {
	border-right: 0;
}

.nd-benefits,
.nd-formats,
.nd-moves {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
}

.nd-partner-pathways {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0;
	border: var(--nd-rule);
}

.nd-partner-pathway {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 18px 22px;
	border-right: var(--nd-rule);
	border-bottom: var(--nd-rule);
}

.nd-partner-pathway__label {
	font-size: 13px;
	font-weight: 600;
}

.nd-metrics {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 0;
	border: var(--nd-rule);
	background: var(--ivory);
}

.nd-metric {
	padding: 22px;
	border-right: var(--nd-rule);
	border-bottom: var(--nd-rule);
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.nd-metric__label {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--muted);
}

.nd-metric__value {
	font-family: var(--nd-display);
	font-size: 30px;
	font-weight: 500;
}

.nd-attention-item {
	padding: 14px 18px;
	border-left: 3px solid var(--champagne);
	background: var(--pearl);
	margin-bottom: 10px;
	font-size: 14px;
}

/* ---- Host / stay / reach --------------------------------------------- */

.nd-host {
	display: grid;
	grid-template-columns: 190px minmax(0, 1fr);
	gap: 32px;
	align-items: start;
	padding: 30px;
	border: var(--nd-rule);
	background: var(--ivory);
}

.nd-host__portrait img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	display: block;
}

.nd-host__name {
	font-family: var(--nd-display);
	font-size: 27px;
	font-weight: 500;
	margin: 0 0 6px;
}

.nd-host__name a {
	color: inherit;
	text-decoration: none;
}

.nd-host__role {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--champagne);
	margin: 0 0 12px;
}

.nd-host__bio {
	font-size: 15px;
	line-height: 1.7;
	color: var(--soft-ink);
	margin: 0 0 18px;
	max-width: 68ch;
}

.nd-stay-feature {
	display: grid;
	grid-template-columns: 240px minmax(0, 1fr);
	gap: 26px;
	align-items: center;
	border: var(--nd-rule);
	background: var(--ivory);
	overflow: hidden;
}

.nd-stay-feature__media {
	display: block;
	height: 100%;
	overflow: hidden;
}

.nd-stay-feature__media img {
	width: 100%;
	height: 100%;
	min-height: 190px;
	object-fit: cover;
	display: block;
}

.nd-stay-feature__body {
	padding: 24px 26px;
}

.nd-stay-feature__title {
	font-family: var(--nd-display);
	font-size: 24px;
	font-weight: 500;
	margin: 0 0 8px;
}

.nd-stay-feature__title a {
	color: inherit;
	text-decoration: none;
}

.nd-stay-feature__location,
.nd-stay-feature__price {
	font-size: 13px;
	color: var(--muted);
	margin: 0 0 8px;
}

.nd-reach {
	display: grid;
	grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
	gap: clamp(22px, 3vw, 52px);
	align-items: center;
	border: var(--nd-rule);
	background: var(--ivory);
	overflow: hidden;
}

.nd-reach__body {
	padding: clamp(26px, 3vw, 48px);
}

.nd-reach__headline {
	font-family: var(--nd-display);
	font-size: clamp(26px, 2.8vw, 44px);
	font-weight: 500;
	margin: 0 0 14px;
}

.nd-reach__text {
	font-size: 15px;
	line-height: 1.7;
	color: var(--soft-ink);
	max-width: 60ch;
	margin: 0 0 20px;
}

.nd-reach__media img {
	width: 100%;
	height: 100%;
	min-height: 280px;
	object-fit: cover;
	display: block;
}

.nd-reach:not(:has(.nd-reach__media)) {
	grid-template-columns: minmax(0, 1fr);
}

/* ---- Story / archive ------------------------------------------------- */

.nd-story-hero__media img,
.nd-story-hero > .nd-story-hero__media img {
	width: 100%;
	height: clamp(320px, 46vw, 620px);
	object-fit: cover;
	display: block;
}

.nd-story-hero__text,
.nd-story-meta,
.nd-story-body {
	max-width: 820px;
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--nd-gutter);
	padding-right: var(--nd-gutter);
}

.nd-story-hero__text {
	padding-top: clamp(28px, 3.5vw, 56px);
	text-align: left;
}

.nd-story-headline {
	font-family: var(--nd-display);
	font-size: clamp(30px, 4vw, 60px);
	font-weight: 500;
	line-height: 1.06;
	letter-spacing: -0.025em;
	margin: 0 0 16px;
}

.nd-story-dek {
	font-family: var(--nd-display);
	font-size: clamp(17px, 1.5vw, 22px);
	line-height: 1.6;
	color: var(--soft-ink);
	margin: 0;
}

.nd-story-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 22px;
	list-style: none;
	padding-top: 18px;
	padding-bottom: 4px;
	margin-bottom: 0;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--muted);
}

.nd-story-layout {
	display: grid;
	grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
	gap: clamp(24px, 3vw, 60px);
	max-width: 1320px;
	margin: 0 auto;
	padding: clamp(30px, 4vw, 64px) var(--nd-gutter) 0;
}

.nd-story-body {
	max-width: none;
	padding-left: 0;
	padding-right: 0;
	font-family: var(--nd-display);
	font-size: 18px;
	line-height: 1.78;
	color: var(--soft-ink);
}

.nd-story-body p:first-child::first-letter {
	float: left;
	font-size: 62px;
	line-height: 0.84;
	padding: 6px 10px 0 0;
	color: var(--plum);
}

.nd-story-aside .nd-section,
.nd-story-aside .nd-rail {
	padding: 0 0 30px;
}

.nd-story-aside .nd-section-header,
.nd-story-aside .nd-rail .nd-section-header {
	margin-bottom: 18px;
	padding-bottom: 10px;
}

.nd-story-aside .nd-section-header__headline {
	font-size: 22px;
}

.nd-story-pull-quote {
	max-width: 900px;
	margin: clamp(30px, 4vw, 66px) auto;
	padding: clamp(28px, 3.5vw, 56px) var(--nd-gutter);
	border-top: var(--nd-rule);
	border-bottom: var(--nd-rule);
	text-align: center;
}

.nd-story-pull-quote p {
	font-family: var(--nd-display);
	font-style: italic;
	font-size: clamp(22px, 2.6vw, 40px);
	line-height: 1.3;
	color: var(--plum);
	margin: 0;
}

.nd-story .nd-section--related,
.nd-story .nd-rail {
	padding-left: var(--nd-gutter);
	padding-right: var(--nd-gutter);
	max-width: 1560px;
	margin: 0 auto;
}

.nd-archive-hero {
	padding: clamp(44px, 6vw, 92px) var(--nd-gutter) clamp(26px, 3vw, 44px);
	background: var(--pearl);
	border-bottom: var(--nd-rule);
}

.nd-archive-hero__text {
	max-width: 860px;
}

.nd-archive-hero__headline {
	font-family: var(--nd-display);
	font-size: clamp(32px, 4vw, 62px);
	font-weight: 500;
	line-height: 1.06;
	letter-spacing: -0.025em;
	margin: 0 0 16px;
}

.nd-archive-hero__dek {
	font-family: var(--nd-display);
	font-size: clamp(16px, 1.4vw, 20px);
	line-height: 1.6;
	color: var(--soft-ink);
	max-width: 62ch;
	margin: 0 0 22px;
}

.nd-archive-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.nd-breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	padding: 18px var(--nd-gutter) 0;
	max-width: 1560px;
	margin: 0 auto;
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--muted);
}

.nd-breadcrumbs a {
	color: var(--muted);
	text-decoration: none;
}

.nd-breadcrumbs a:hover {
	color: var(--champagne);
}

.nd-breadcrumbs__current {
	color: var(--ink);
}

.nd-pagination {
	padding: 40px 0 0;
}

.nd-pagination ul {
	display: flex;
	gap: 6px;
	list-style: none;
	margin: 0;
	padding: 0;
	flex-wrap: wrap;
}

.nd-pagination a,
.nd-pagination span {
	display: inline-block;
	padding: 9px 14px;
	border: var(--nd-rule);
	background: var(--ivory);
	font-size: 12px;
	color: var(--ink);
	text-decoration: none;
}

.nd-pagination .current {
	background: var(--nd-deep);
	border-color: var(--nd-deep);
	color: var(--ivory);
}


.nd-print-recipe {
	/* Uses the shared .nd-button styling; class exists for JS/proxy. */
}

/* ---- Community hub --------------------------------------------------- */

.nd-community-feed__grid,
.nd-community-feed__post {
	display: grid;
	gap: 22px;
}

.nd-community-feed__grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.nd-community-feed__post {
	border: var(--nd-rule);
	background: var(--ivory);
	padding: 0 0 18px;
	gap: 8px;
}

.nd-community-feed__image img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	display: block;
}

.nd-community-feed__body {
	padding: 0 18px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.nd-community-feed__body h4 {
	font-family: var(--nd-display);
	font-size: 19px;
	font-weight: 500;
	margin: 0;
}

.nd-community-feed__author {
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--muted);
	margin: 0;
}

.nd-community-feed__excerpt {
	font-size: 13px;
	line-height: 1.6;
	color: var(--muted);
}

.nd-community-submit {
	border: var(--nd-rule);
	background: var(--pearl);
	padding: clamp(22px, 2.6vw, 38px);
	max-width: 760px;
}

.nd-community-submit form input[type="text"],
.nd-community-submit form textarea {
	width: 100%;
	border: var(--nd-rule);
	background: var(--ivory);
	padding: 12px 14px;
	font-family: var(--nd-ui);
	font-size: 15px;
	color: var(--ink);
	border-radius: 3px;
}

.nd-community-submit form label {
	display: block;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 6px;
}

.nd-community-submit form button {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	padding: 11px 22px;
	background: var(--champagne);
	border: 1px solid var(--champagne);
	color: var(--ink);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	border-radius: 3px;
	cursor: pointer;
}

.nd-community-submit-message {
	border-left: 3px solid var(--champagne);
	background: var(--ivory);
	padding: 14px 18px;
	font-size: 14px;
	margin-bottom: 20px;
}

.nd-community-submit-login {
	border: var(--nd-rule);
	background: var(--pearl);
	padding: 18px 22px;
	font-size: 14px;
}

/* ---- Topics (legacy shortcode surface, restyled) --------------------- */

.nd-topics-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	gap: 14px;
}

.nd-topic-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 18px 20px;
	border: var(--nd-rule);
	background: var(--ivory);
	text-decoration: none;
	color: var(--ink);
	transition: border-color 0.2s ease;
}

.nd-topic-card:hover {
	border-color: var(--champagne);
}

.nd-topic-card__name {
	font-family: var(--nd-display);
	font-size: 17px;
}

.nd-topic-card__count {
	font-size: 10px;
	color: var(--muted);
	border: 1px solid var(--stone);
	border-radius: 999px;
	padding: 2px 8px;
}

/* Legacy grids from v1.4.0 get the same card language. */
.nd-stories-grid,
.nd-creators-grid,
.nd-explore-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 26px;
}

.nd-main-menu ul {
	display: flex;
	flex-wrap: wrap;
	gap: 0 26px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nd-main-menu a {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: var(--ink);
	text-decoration: none;
}

.nd-main-menu a:hover {
	color: var(--champagne);
}

/* ---- Responsive: tablet --------------------------------------------- */

@media (max-width: 1180px) {
	.nd-hero,
	.nd-cta-band,
	.nd-feature-story,
	.nd-reach,
	.nd-story-layout {
		grid-template-columns: minmax(0, 1fr);
	}

	.nd-hero__media {
		order: 1;
		min-height: 280px;
	}

	.nd-hero__image {
		min-height: 280px;
	}

	.nd-rail__grid,
	.nd-results,
	.nd-feature-strip,
	.nd-category-tiles,
	.nd-department-grid,
	.nd-channel-grid,
	.nd-benefits,
	.nd-formats,
	.nd-moves,
	.nd-pathways,
	.nd-role-grid,
	.nd-community-feed__grid,
	.nd-stories-grid,
	.nd-creators-grid,
	.nd-explore-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.nd-journey {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.nd-journey__step:nth-child(3n) {
		border-right: 0;
	}

	.nd-journey__step:nth-child(-n + 3) {
		border-bottom: var(--nd-rule);
	}

	.nd-partner-pathways {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

/* ---- Responsive: mobile --------------------------------------------- */

@media (max-width: 760px) {
	.nd-hero {
		padding-left: 20px;
		padding-right: 20px;
	}

	.nd-section,
	.nd-rail,
	.nd-cta-band,
	.nd-discovery-panel,
	.nd-discovery-note,
	.nd-archive-hero,
	.nd-community-hub .nd-section {
		padding-left: 20px;
		padding-right: 20px;
	}

	.nd-rail__grid,
	.nd-results,
	.nd-rail--cols-3,
	.nd-results--compact,
	.nd-rail--cols-3 .nd-rail__grid,
	.nd-feature-strip,
	.nd-category-tiles,
	.nd-department-grid,
	.nd-channel-grid,
	.nd-benefits,
	.nd-formats,
	.nd-moves,
	.nd-pathways,
	.nd-role-grid,
	.nd-community-feed__grid,
	.nd-stories-grid,
	.nd-creators-grid,
	.nd-explore-grid,
	.nd-journey,
	.nd-partner-pathways,
	.nd-feature-story,
	.nd-host,
	.nd-stay-feature,
	.nd-metrics {
		grid-template-columns: 1fr;
	}

	.nd-journey__step {
		border-right: 0;
		border-bottom: var(--nd-rule);
	}

	.nd-journey__step:last-child {
		border-bottom: 0;
	}

	.nd-partner-pathway {
		border-right: 0;
	}

	.nd-section-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 14px;
	}

	.nd-hero__headline {
		font-size: 34px;
	}

	.nd-story-headline {
		font-size: 30px;
	}

	.nd-story-body {
		font-size: 17px;
	}

	.nd-story-body p:first-child::first-letter {
		font-size: 48px;
	}

	.nd-card__footer {
		align-items: flex-start;
		flex-direction: column;
	}

	.nd-search__row {
		flex-direction: column;
	}

	.nd-search__input {
		width: 100%;
	}

	.nd-discovery-tabs {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.nd-discovery-tabs__list {
		flex-wrap: nowrap;
	}

	.nd-discovery-tabs__link {
		white-space: nowrap;
		padding: 13px 15px;
	}

	.nd-breadcrumbs {
		padding-left: 20px;
		padding-right: 20px;
	}

	.nd-hero__eyebrows {
		gap: 6px 16px;
	}
}

@media (max-width: 480px) {
	.nd-card__title {
		font-size: 18px;
	}

	.nd-hero__headline {
		font-size: 30px;
	}

	.nd-archive-hero__headline {
		font-size: 30px;
	}

	.nd-section-header__headline {
		font-size: 24px;
	}
}

/* Guard against horizontal overflow anywhere in ND surfaces. */
.nd-world,
.nd-explore-engage,
.nd-store,
.nd-mohcoh,
.nd-join,
.nd-advertise,
.nd-community-hub,
.nd-business-health,
.nd-archive {
	overflow-x: hidden;
}

/* ---- Print ----------------------------------------------------------- */

@media print {
	.nd-hero__actions,
	.nd-cta-band,
	.nd-discovery-tabs,
	.nd-search,
	.nd-recipe-actions,
	.nd-save-recipe,
	.nd-media-strip {
		display: none !important;
	}

	.nd-world,
	.nd-archive,
	.nd-recipe {
		background: #fff;
	}
}

/* ---- Reduced motion -------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
	.nd-card,
	.nd-card__media img,
	.nd-category-tile,
	.nd-department__link,
	.nd-channel__link,
	.nd-feature-story__media img,
	.nd-button {
		transition: none !important;
	}

	.nd-card:hover,
	.nd-category-tile:hover,
	.nd-department__link:hover,
	.nd-channel__link:hover {
		transform: none;
	}
}

/* ======================================================================
   v1.8.0 — Explore & Engage full renderer styling.
   .nd-chip and .nd-grid-4 had NO prior styling anywhere despite being
   used in PHP since v1.7.0 -- built from scratch here, plus everything
   new for the hero/search/filters/view toggle/results/map/empty state.
   Uses the frozen ND tokens; scoped entirely to .nd-* classes.
   ====================================================================== */

.nd-explore-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
	box-sizing: border-box;
}

/* ---- Hero + search ---------------------------------------------------- */

.nd-explore-hero {
	text-align: center;
	padding: 48px 0 32px;
}

.nd-explore-hero__eyebrow {
	display: block;
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #b99b62;
	margin-bottom: 10px;
}

.nd-explore-hero__title {
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(28px, 4vw, 46px);
	color: #151613;
	margin: 0 0 12px;
}

.nd-explore-hero__dek {
	color: #343630;
	max-width: 620px;
	margin: 0 auto 28px;
}

.nd-explore-search {
	display: flex;
	max-width: 560px;
	margin: 0 auto;
	border: 1px solid #e9e2d8;
	background: #fffdf8;
}

.nd-explore-search input[type="text"] {
	flex: 1;
	border: none;
	padding: 14px 18px;
	font-size: 15px;
	background: transparent;
}

.nd-explore-search input[type="text"]:focus {
	outline: none;
}

.nd-explore-search button {
	border: none;
	background: #151613;
	color: #fffdf8;
	padding: 0 24px;
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
}

/* ---- Tabs --------------------------------------------------------------- */

.nd-explore-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 24px 0;
	justify-content: center;
}

.nd-chip {
	display: inline-block;
	padding: 8px 18px;
	border: 1px solid #e9e2d8;
	border-radius: 999px;
	font-size: 13px;
	color: #343630;
	text-decoration: none;
	background: #fffdf8;
	transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.nd-chip:hover {
	border-color: #b99b62;
	color: #151613;
}

.nd-chip.active {
	background: #151613;
	border-color: #151613;
	color: #fffdf8;
}

/* ---- Contextual filter bar ---------------------------------------------- */

.nd-explore-filters {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	padding: 16px 0;
	border-top: 1px solid #e9e2d8;
	border-bottom: 1px solid #e9e2d8;
	margin-bottom: 28px;
}

.nd-explore-filters__form {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.nd-explore-filters select {
	padding: 8px 12px;
	border: 1px solid #e9e2d8;
	background: #fffdf8;
	font-size: 13px;
}

.nd-explore-view-toggle {
	display: flex;
	gap: 4px;
}

.nd-explore-view-toggle a {
	padding: 6px 14px;
	font-size: 12px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	border: 1px solid #e9e2d8;
	color: #727068;
	text-decoration: none;
}

.nd-explore-view-toggle a.active {
	background: #151613;
	border-color: #151613;
	color: #fffdf8;
}

/* ---- Results grid --------------------------------------------------------- */

.nd-grid-4 {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}

@media (max-width: 1100px) {
	.nd-grid-4 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 800px) {
	.nd-grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 540px) {
	.nd-grid-4 { grid-template-columns: 1fr; }
}

/* List view: same markup, single column, wider cards, image on the side. */
.nd-explore-results--list .nd-grid-4 {
	grid-template-columns: 1fr;
}

.nd-explore-results--list .nd-listing-card,
.nd-explore-results--list .nd-product-card {
	display: flex;
	flex-direction: row;
	align-items: stretch;
}

.nd-explore-results--list .nd-listing-card__link,
.nd-explore-results--list .nd-product-card {
	display: flex;
	flex-direction: row;
	width: 100%;
}

.nd-explore-results--list .media {
	width: 220px;
	flex-shrink: 0;
}

/* ---- Listing + product cards ------------------------------------------------ */

.nd-listing-card,
.nd-product-card {
	position: relative;
	background: #fffdf8;
	border: 1px solid #e9e2d8;
	overflow: hidden;
}

.nd-listing-card__link {
	display: block;
	color: inherit;
	text-decoration: none;
}

.nd-listing-card .media,
.nd-product-card .media {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #eee7dc;
}

.nd-listing-card .media img,
.nd-product-card .media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.nd-listing-card .type,
.nd-product-card .flag {
	position: absolute;
	top: 10px;
	left: 10px;
	background: rgba(21, 22, 19, 0.75);
	color: #fffdf8;
	font-size: 10px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 4px 10px;
}

.nd-listing-card .price-pill {
	position: absolute;
	bottom: 10px;
	right: 10px;
	background: #fffdf8;
	color: #151613;
	font-size: 13px;
	font-weight: 600;
	padding: 4px 10px;
}

.nd-listing-card__save {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: none;
	background: rgba(255, 253, 248, 0.9);
	color: #151613;
	font-size: 16px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.nd-listing-card .body,
.nd-product-card .body {
	padding: 16px;
}

.nd-listing-card .location,
.nd-product-card .vendor {
	display: block;
	font-size: 11px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #b99b62;
	margin-bottom: 6px;
}

.nd-listing-card h3,
.nd-product-card h4 {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 18px;
	margin: 0 0 8px;
	color: #151613;
}

.nd-listing-card .facets {
	display: flex;
	gap: 12px;
	font-size: 12px;
	color: #727068;
	margin-bottom: 8px;
}

.nd-listing-card .meta .rating {
	font-size: 13px;
	color: #151613;
}

/* ---- Load Board rows --------------------------------------------------------- */

.nd-load-board-rows {
	display: flex;
	flex-direction: column;
	gap: 1px;
	background: #e9e2d8;
	border: 1px solid #e9e2d8;
}

.nd-load-row {
	display: grid;
	grid-template-columns: 60px 2fr 1.5fr 1fr 1fr 1fr auto;
	gap: 16px;
	align-items: center;
	background: #fffdf8;
	padding: 14px 16px;
	font-size: 13px;
}

.nd-load-row .id {
	font-size: 11px;
	color: #b99b62;
	line-height: 1.2;
}

.nd-load-row .arrow {
	color: #b99b62;
	margin: 0 4px;
}

.nd-load-row small {
	display: block;
	color: #727068;
	font-size: 11px;
}

.nd-load-row .val small,
.nd-load-row .rate small {
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 2px;
}

@media (max-width: 900px) {
	.nd-load-row {
		grid-template-columns: 1fr 1fr;
		grid-auto-flow: row;
	}
}

/* ---- Empty state -------------------------------------------------------------- */

.nd-explore-empty {
	grid-column: 1 / -1;
	text-align: center;
	padding: 64px 24px;
	color: #727068;
	font-style: italic;
	border: 1px dashed #e9e2d8;
}

/* ---- Map ------------------------------------------------------------------------ */

.nd-explore-map {
	margin-top: 32px;
	border: 1px solid #e9e2d8;
	min-height: 360px;
}
