/* =========================================================================
   DIY Supplies Center — Design Tokens & Global Styles
   Benjamin Moore-inspired accent palette on a warm, gallery-white base.
   These custom properties are the single source of truth for both the
   frontend and the block editor (see add_editor_style() in functions.php).
   ========================================================================= */

:root {
	/* Neutrals */
	--dsc-white: #ffffff;
	--dsc-warm-white: #faf8f4;      /* BM "Simply White"-ish canvas */
	--dsc-cream: #f3efe6;
	--dsc-sand: #e9e3d6;
	--dsc-charcoal: #25272b;
	--dsc-ink: #1c2b39;             /* BM "Hale Navy" family, headings */
	--dsc-text: #333333;
	--dsc-text-muted: #6b6f76;
	--dsc-border: #e2ddd1;

	/* Benjamin Moore-inspired accents */
	--dsc-navy: #2c3e50;            /* Hale Navy */
	--dsc-red: #a13d2e;             /* Caliente */
	--dsc-green: #6e7c63;           /* Guilford Green */
	--dsc-gold: #c9a35c;            /* Metallic Gold accent */
	--dsc-gray-owl: #c9cbc5;

	/* Semantic roles */
	--dsc-primary: var(--dsc-navy);
	--dsc-primary-dark: #1c2b39;
	--dsc-accent: var(--dsc-red);
	--dsc-success: var(--dsc-green);
	--dsc-surface: var(--dsc-white);
	--dsc-surface-alt: var(--dsc-warm-white);

	/* Type */
	--dsc-font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--dsc-font-display: Georgia, "Times New Roman", serif;
	--dsc-fs-sm: 0.875rem;
	--dsc-fs-base: 1rem;
	--dsc-fs-lg: 1.25rem;
	--dsc-fs-xl: 1.75rem;
	--dsc-fs-2xl: 2.5rem;
	--dsc-fs-3xl: 3.25rem;

	/* Spacing scale */
	--dsc-space-xs: 0.5rem;
	--dsc-space-sm: 1rem;
	--dsc-space-md: 1.5rem;
	--dsc-space-lg: 2.5rem;
	--dsc-space-xl: 4rem;
	--dsc-space-2xl: 6rem;

	/* Layout */
	--dsc-container: 1280px;
	--dsc-radius: 10px;
	--dsc-radius-sm: 6px;
	--dsc-shadow: 0 4px 24px rgba(28, 43, 57, 0.08);
	--dsc-shadow-hover: 0 10px 32px rgba(28, 43, 57, 0.14);
	--dsc-header-h: 96px;
	--dsc-header-h-mobile: 64px;
}

/* =========================================================================
   Reset & base
   ========================================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--dsc-header-h-mobile); }
body {
	font-family: var(--dsc-font-body);
	color: var(--dsc-text);
	background: var(--dsc-white);
	font-size: var(--dsc-fs-base);
	line-height: 1.6;
	margin: 0;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--dsc-primary); text-decoration: none; }
a:hover { color: var(--dsc-accent); }
h1, h2, h3, h4 { font-family: var(--dsc-font-display); color: var(--dsc-ink); line-height: 1.15; margin: 0 0 var(--dsc-space-sm); }
h1 { font-size: var(--dsc-fs-3xl); }
h2 { font-size: var(--dsc-fs-2xl); }
h3 { font-size: var(--dsc-fs-xl); }
p { margin: 0 0 var(--dsc-space-sm); }
button { font-family: inherit; }
input, textarea, select {
	font-family: inherit;
	font-size: var(--dsc-fs-base);
}

.dsc-container { max-width: var(--dsc-container); margin: 0 auto; padding: 0 var(--dsc-space-md); }
.dsc-section { padding: var(--dsc-space-lg) 0; }
.dsc-section--tight { padding: var(--dsc-space-lg) 0; }
.dsc-section--alt { background: var(--dsc-surface-alt); }
.dsc-section-head { text-align: center; max-width: 640px; margin: 0 auto var(--dsc-space-lg); }
.dsc-eyebrow { display: inline-block; text-transform: uppercase; letter-spacing: 0.08em; font-size: var(--dsc-fs-sm); font-weight: 700; color: var(--dsc-accent); margin-bottom: var(--dsc-space-xs); }
.dsc-cta-row { display: flex; justify-content: center; margin-top: var(--dsc-space-lg); }

/* Buttons */
.dsc-btn {
	display: inline-flex; align-items: center; justify-content: center;
	gap: 0.5rem;
	padding: 0.9rem 1.9rem;
	border-radius: var(--dsc-radius-sm);
	font-weight: 700;
	font-size: var(--dsc-fs-base);
	border: 2px solid transparent;
	cursor: pointer;
	transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
	min-height: 48px;
}
.dsc-btn:hover { transform: translateY(-1px); }
.dsc-btn--primary { background: var(--dsc-primary); color: var(--dsc-white); }
.dsc-btn--primary:hover { background: var(--dsc-primary-dark); color: var(--dsc-white); box-shadow: var(--dsc-shadow-hover); }
.dsc-btn--accent { background: var(--dsc-accent); color: var(--dsc-white); }
.dsc-btn--accent:hover { background: #832f23; color: var(--dsc-white); }
.dsc-btn--outline { background: transparent; border-color: var(--dsc-white); color: var(--dsc-white); }
.dsc-btn--outline:hover { background: var(--dsc-white); color: var(--dsc-primary); }
.dsc-btn--outline-dark { background: transparent; border-color: var(--dsc-primary); color: var(--dsc-primary); }
.dsc-btn--outline-dark:hover { background: var(--dsc-primary); color: var(--dsc-white); }
.dsc-btn--sm { padding: 0.55rem 1.1rem; font-size: var(--dsc-fs-sm); min-height: 38px; }
.dsc-btn--block { width: 100%; }

.dsc-card {
	background: var(--dsc-surface);
	border: 1px solid var(--dsc-border);
	border-radius: var(--dsc-radius);
	box-shadow: var(--dsc-shadow);
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.dsc-card:hover { box-shadow: var(--dsc-shadow-hover); transform: translateY(-2px); }

/* =========================================================================
   Skip link
   ========================================================================= */
.skip-link {
	position: absolute; left: -9999px; top: 0; z-index: 10000;
	background: var(--dsc-primary); color: var(--dsc-white); padding: 1rem 1.5rem;
}
.skip-link:focus { left: var(--dsc-space-sm); top: var(--dsc-space-sm); }

/* =========================================================================
   Top utility bar
   ========================================================================= */
.dsc-utility-bar { background: var(--dsc-ink); color: var(--dsc-white); font-size: var(--dsc-fs-sm); }
.dsc-utility-bar .dsc-container { display: flex; align-items: center; justify-content: space-between; height: 40px; gap: var(--dsc-space-md); }
.dsc-utility-bar__links { display: flex; align-items: center; gap: var(--dsc-space-md); list-style: none; padding-left:0;}
.dsc-utility-bar__links a { display: inline-flex; align-items: center; gap: 0.35rem; color: var(--dsc-white); opacity: 0.9; }
.dsc-utility-bar__links a:hover { opacity: 1; color: var(--dsc-gold); }
.dsc-utility-bar__pro { font-weight: 700; }

/* =========================================================================
   Breadcrumbs -- sits directly below the header, on every inner page
   (see diysupplies_breadcrumbs() in inc/template-helpers.php). Same
   background as the page itself, just a hairline rule to separate it
   from the header above -- deliberately quiet, not a colored band.
   ========================================================================= */
.dsc-breadcrumbs { background: var(--dsc-white); border-bottom: 1px solid var(--dsc-border); font-size: var(--dsc-fs-sm); }
.dsc-breadcrumbs .dsc-container { display: flex; flex-wrap: wrap; align-items: center; gap: 0.4rem; padding-top: 0.65rem; padding-bottom: 0.65rem; }
.dsc-breadcrumbs a { color: var(--dsc-text-muted); }
.dsc-breadcrumbs a:hover { color: var(--dsc-accent); }
.dsc-breadcrumbs span[aria-current] { color: var(--dsc-ink); font-weight: 600; }
.dsc-breadcrumbs__sep { color: var(--dsc-border); }

/* =========================================================================
   Site header / primary nav
   ========================================================================= */
.dsc-site-header { position: sticky; top: 0; z-index: 999; background: var(--dsc-white); border-bottom: 1px solid var(--dsc-border); }
.dsc-site-header .dsc-container { display: flex; align-items: center; justify-content: space-between; height: var(--dsc-header-h); gap: var(--dsc-space-lg); }
.dsc-logo img { max-height: 56px; width: auto; }
.dsc-logo { font-family: var(--dsc-font-display); font-size: var(--dsc-fs-lg); font-weight: 700; color: var(--dsc-ink); }

/* Benjamin Moore co-brand lockup: BM logo + hairline divider + the site's
   own logo, both independently clickable (see header.php). Only kicks in
   when a BM logo is actually set (Customizer -> Benjamin Moore Co-Logo) --
   .dsc-logo falls back to its plain single-logo layout above otherwise. */
.dsc-logo--dual { display: flex; align-items: center; gap: var(--dsc-space-sm); }
.dsc-logo__bm { display: flex; align-items: center; flex-shrink: 0; }
.dsc-logo__bm img { max-height: 42px; width: auto; }
.dsc-logo__divider {
	width: 1px;
	height: 40px;
	background: var(--dsc-border);
	flex-shrink: 0;
}
.dsc-logo__primary { display: flex; align-items: center; }

/* Footer variant: same dual lockup, but the footer's background is dark
   navy (var(--dsc-ink)) and the BM logo's wordmark is navy text -- it
   would disappear without a light surface behind it, so it sits on a
   small white badge here instead of bare like the header's white
   background allows. The divider also switches to a translucent white
   hairline instead of the light warm border color used on white. */
.dsc-footer-logo { margin-bottom: var(--dsc-space-xs); }
.dsc-logo__bm--badge {
	background: var(--dsc-white);
	border-radius: var(--dsc-radius-sm);
	padding: 0.4rem 0.65rem;
}
.dsc-logo__bm--badge img { max-height: 30px; }
.dsc-logo__divider--footer { background: rgba(255, 255, 255, 0.25); }

/* Typographic logo lockup -- the client has no logo image and doesn't
   plan on getting one (see diysupplies_typographic_logo() in
   inc/template-helpers.php): DIY / Supplies Center / a small tagline,
   stacked. --footer is a light-on-navy variant for the footer band. */
.dsc-logo-type {
	display: inline-flex;
	flex-direction: column;
	line-height: 1;
	gap: 0.2rem;
}
.dsc-logo-type__primary {
	font-family: var(--dsc-font-display);
	font-size: var(--dsc-fs-2xl);
	font-weight: 700;
	letter-spacing: 0.02em;
	color: var(--dsc-accent);
}
.dsc-logo-type__secondary {
	font-family: var(--dsc-font-body);
	font-size: var(--dsc-fs-lg);
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--dsc-accent);
}
.dsc-logo-type__tagline {
	font-family: var(--dsc-font-body);
	font-size: 0.65rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--dsc-text-muted);
	margin-top: 0.05rem;
}
.dsc-logo-type--footer .dsc-logo-type__primary { color: var(--dsc-accent); }
.dsc-logo-type--footer .dsc-logo-type__secondary { color: var(--dsc-accent); }
.dsc-logo-type--footer .dsc-logo-type__tagline { color: rgba(255, 255, 255, 0.6); }
.dsc-footer__brand { display: flex; flex-direction: column; gap: var(--dsc-space-sm); }

.dsc-primary-nav { display: none; }

/* Top-level row only -- nested .sub-menu <ul>s are styled separately below
   so they don't inherit this flex-row layout. */
.dsc-primary-nav > ul { display: flex; align-items: center; gap: var(--dsc-space-md); list-style: none; }
.dsc-primary-nav li { position: relative; }
.dsc-primary-nav a { display: inline-flex; align-items: center; color: var(--dsc-ink); font-weight: 600; padding: 0.5rem 0; }
.dsc-primary-nav a:hover { color: var(--dsc-accent); }
.dsc-primary-nav .current-menu-item > a,
.dsc-primary-nav .current-menu-ancestor > a { color: var(--dsc-accent); }

/* Caret toggle -- injected by Diysupplies_Nav_Walker (inc/nav-walker.php)
   right after the link, only for items that actually have children. */
.dsc-submenu-toggle {
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.25rem;
	margin-left: 0.15rem;
	color: inherit;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.dsc-submenu-toggle svg { transition: transform 0.2s ease; }
.dsc-submenu-toggle[aria-expanded="true"] svg,
.menu-item-has-children.is-open > .dsc-submenu-toggle svg { transform: rotate(180deg); }

/* Dropdown panel. Hidden by default; opened on hover, on keyboard focus
   (:focus-within covers tabbing to a link inside it), or via .is-open
   (set by the caret button's click handler in theme.js -- needed for
   touchscreens, which have no hover state at all). */
.dsc-primary-nav .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 1000;
	min-width: 220px;
	padding: 0.4rem;
	list-style: none;
	background: var(--dsc-white);
	border: 1px solid var(--dsc-border);
	border-radius: var(--dsc-radius);
	box-shadow: var(--dsc-shadow-hover);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-6px);
	transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
}
.dsc-primary-nav .menu-item-has-children:hover > .sub-menu,
.dsc-primary-nav .menu-item-has-children:focus-within > .sub-menu,
.dsc-primary-nav .menu-item-has-children.is-open > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.dsc-primary-nav .sub-menu a { display: block; padding: 0.6rem 0.75rem; border-radius: var(--dsc-radius-sm); font-weight: 500; white-space: nowrap; }
.dsc-primary-nav .sub-menu a:hover { background: var(--dsc-surface-alt); color: var(--dsc-accent); }
/* Third-level submenu flies out to the right instead of stacking below. */
.dsc-primary-nav .sub-menu .sub-menu { top: -0.4rem; left: 100%; margin: 0 0 0 0.25rem; }

.dsc-header-actions { display: flex; align-items: center; gap: var(--dsc-space-sm); }
.dsc-icon-btn { background: none; border: none; cursor: pointer; padding: 0.5rem; color: var(--dsc-ink); min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
.dsc-mobile-menu-toggle { display: inline-flex; }

@media (min-width: 992px) {
	.dsc-primary-nav { display: block; }
	.dsc-mobile-menu-toggle { display: none; }
}

/* Mobile off-canvas nav */
.dsc-mobile-nav { position: fixed; inset: 0; z-index: 1100; visibility: hidden; }
.dsc-mobile-nav.is-open { visibility: visible; }
.dsc-mobile-nav__backdrop { position: absolute; inset: 0; background: rgba(28,43,57,0.5); opacity: 0; transition: opacity 0.2s ease; }
.dsc-mobile-nav.is-open .dsc-mobile-nav__backdrop { opacity: 1; }
.dsc-mobile-nav__panel {
	position: absolute; top: 0; left: 0; bottom: 0; width: min(85vw, 360px);
	background: var(--dsc-white); padding: var(--dsc-space-md);
	transform: translateX(-100%); transition: transform 0.25s ease;
	overflow-y: auto;
}
.dsc-mobile-nav.is-open .dsc-mobile-nav__panel { transform: translateX(0); }
.dsc-mobile-nav__panel ul { list-style: none; }
.dsc-mobile-nav__panel li { border-bottom: 1px solid var(--dsc-border); }
.dsc-mobile-nav__panel > ul > li:last-child { border-bottom: none; }
.dsc-mobile-nav__panel a { display: block; padding: 1rem 0.25rem; font-weight: 600; color: var(--dsc-ink); font-size: var(--dsc-fs-lg); min-height: 48px; }
.dsc-mobile-nav__panel .menu-item-has-children { display: flex; flex-wrap: wrap; align-items: center; }
.dsc-mobile-nav__panel .menu-item-has-children > a { flex: 1 1 auto; }
.dsc-mobile-nav__panel .dsc-submenu-toggle { flex: 0 0 auto; width: 44px; height: 44px; }
/* Accordion submenu -- collapsed by default; JS (initSubmenuToggles in
   theme.js) sets an inline max-height from scrollHeight when opened, since
   CSS alone can't animate to height:auto. */
.dsc-mobile-nav__panel .sub-menu {
	flex-basis: 100%;
	list-style: none;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.25s ease;
	background: var(--dsc-surface-alt);
	border-radius: var(--dsc-radius-sm);
}
.dsc-mobile-nav__panel .sub-menu li { border-bottom: 1px solid var(--dsc-border); }
.dsc-mobile-nav__panel .sub-menu li:last-child { border-bottom: none; }
.dsc-mobile-nav__panel .sub-menu a { padding: 0.85rem 0.25rem 0.85rem 1.25rem; font-size: var(--dsc-fs-base); font-weight: 500; }
.dsc-mobile-nav__close { margin-bottom: var(--dsc-space-sm); }

@media (min-width: 992px) {
	.dsc-mobile-nav { display: none; }
}

/* ---- Sticky mobile bottom action bar ------------------------------ */
.dsc-mobile-sticky-bar {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	display: flex;
	background: var(--dsc-white);
	border-top: 1px solid var(--dsc-border);
	box-shadow: 0 -4px 16px rgba(28, 43, 57, 0.08);
	padding-bottom: env(safe-area-inset-bottom, 0);
}

.dsc-mobile-sticky-bar__item {
	flex: 1 1 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.2rem;
	padding: 0.5rem 0.25rem;
	min-height: 56px;
	background: none;
	border: none;
	cursor: pointer;
	color: var(--dsc-ink);
	font-family: inherit;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.dsc-mobile-sticky-bar__item:hover,
.dsc-mobile-sticky-bar__item:focus-visible {
	color: var(--dsc-accent);
}

.dsc-mobile-sticky-bar__item + .dsc-mobile-sticky-bar__item {
	border-left: 1px solid var(--dsc-border);
}

/* Only on mobile/tablet -- desktop already has Search, Find a Store,
   and Call available in the utility bar + header actions. */
@media (min-width: 992px) {
	.dsc-mobile-sticky-bar { display: none; }
}

/* Keep footer content from being hidden behind the sticky bar */
@media (max-width: 991px) {
	body { padding-bottom: 56px; }
}

/* =========================================================================
   Footer
   ========================================================================= */
.dsc-footer { background: var(--dsc-ink); color: rgba(255,255,255,0.85); padding: var(--dsc-space-2xl) 0 var(--dsc-space-md); }
.dsc-footer a { color: rgba(255,255,255,0.85); }
.dsc-footer a:hover { color: var(--dsc-gold); }
.dsc-footer__grid { display: grid; grid-template-columns: 1fr; gap: var(--dsc-space-lg); margin-bottom: var(--dsc-space-xl); }
.dsc-footer__col h4 { color: var(--dsc-white); font-family: var(--dsc-font-body); font-size: var(--dsc-fs-base); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: var(--dsc-space-sm); }
.dsc-footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; padding-left:10px;}
.dsc-footer__bottom { border-top: 1px solid rgba(255,255,255,0.15); padding-top: var(--dsc-space-md); display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--dsc-space-sm); font-size: var(--dsc-fs-sm); opacity: 0.75; }

/* 3 columns now (Brand, Quick Links, Resources) -- was 4 with a
   Newsletter column that's been removed from footer.php. .dsc-footer__
   newsletter and .dsc-footer__social rules removed too since neither
   exists in the markup anymore (social links were dropped earlier). */
@media (min-width: 768px) {
	.dsc-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

/* =========================================================================
   Responsive helpers used by multiple blocks
   ========================================================================= */
.dsc-grid { display: grid; gap: var(--dsc-space-md); }
.dsc-grid--2 { grid-template-columns: repeat(2, 1fr); }
.dsc-grid--3 { grid-template-columns: repeat(2, 1fr); }
.dsc-grid--4 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) {
	.dsc-grid--3 { grid-template-columns: repeat(3, 1fr); }
	.dsc-grid--4 { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 992px) {
	.dsc-grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.dsc-scroll-x { display: flex; gap: var(--dsc-space-md); overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-bottom: var(--dsc-space-xs); }
.dsc-scroll-x::-webkit-scrollbar { height: 6px; }
.dsc-scroll-x > * { scroll-snap-align: start; flex: 0 0 auto; }

@media (min-width: 992px) {
	.dsc-scroll-x { overflow: visible; display: grid; grid-template-columns: repeat(var(--dsc-cols, 4), 1fr); }
}

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

.dsc-site-header.is-scrolled { box-shadow: 0 2px 12px rgba(28,43,57,0.08); }
.dsc-search-flyout { border-top: 1px solid var(--dsc-border); background: var(--dsc-white); padding: var(--dsc-space-sm) 0; }
.dsc-search-flyout .dsc-container { display: flex; gap: 0.5rem; }
.dsc-search-flyout input[type="search"] { flex: 1; padding: 0.7rem 1rem; border: 1px solid var(--dsc-border); border-radius: var(--dsc-radius-sm); }
.dsc-hide-mobile { display: none; }
@media (min-width: 768px) { .dsc-hide-mobile { display: inline; } }



/* Every tap target stays >=44px even outside the max-width block above. */
a, button { min-height: auto; }
.dsc-color-chip, .dsc-icon-btn, .dsc-btn { min-height: 44px; }

/* =========================================================================
   page.php / page-full-width.php / page-shop.php
   Clean page title (no colored band) -- a slim eyebrow/H1/subtitle stack,
   left-aligned, separated from what follows with a hairline rule. Shared
   by all three templates via the diysupplies_page_title() helper.
   ========================================================================= */
.dsc-page-title {
	padding: var(--dsc-space-lg) 0 var(--dsc-space-md);
	border-bottom: 1px solid var(--dsc-border);
	margin-bottom: var(--dsc-space-md);
}

.dsc-page-title__eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: var(--dsc-fs-sm);
	font-weight: 700;
	color: var(--dsc-accent);
	margin-bottom: 0.35rem;
}

.dsc-page-title__heading { margin: 0; }

.dsc-page-title__subtitle {
	margin: 0.4rem 0 0;
	color: var(--dsc-text-muted);
}

.dsc-page__thumb { margin: 0 0 var(--dsc-space-xl); }

.dsc-page__thumb img {
	width: 100%;
	max-height: 420px;
	object-fit: cover;
	border-radius: var(--dsc-radius);
}

.dsc-page__comments {
	padding-top: var(--dsc-space-lg);
	border-top: 1px solid var(--dsc-border);
	margin-bottom: var(--dsc-space-2xl);
}

/* Full Width template: article sits flush (past the title block above)
   so its own full/wide blocks (Cover, Group, this theme's section
   blocks) can run edge-to-edge exactly as configured, same as the
   homepage. */
.dsc-page--full .dsc-page__article { padding-top: 0; }

/* Generic alignwide/alignfull fallback for anywhere else on the site
   that doesn't have its own width handling (e.g. inside .entry-content
   on the Full Width template, or a stray block on a custom page). */
.alignwide { max-width: var(--dsc-container); margin-left: auto; margin-right: auto; }
.alignfull {
	width: 100vw;
	max-width: 100vw;
	margin-left: 50%;
	transform: translateX(-50%);
}
.aligncenter { margin-left: auto; margin-right: auto; }

/* ---- entry-content typography (applies on both templates) -------- */
.entry-content ul,
.entry-content ol { margin: 0 0 var(--dsc-space-sm) 1.4rem; padding: 0; }
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content li { margin-bottom: 0.4rem; line-height: 1.6; }

.entry-content a { text-decoration: underline; text-underline-offset: 2px; }

.entry-content blockquote {
	margin: var(--dsc-space-md) 0;
	padding: var(--dsc-space-sm) var(--dsc-space-md);
	border-left: 4px solid var(--dsc-accent);
	background: var(--dsc-cream);
	font-style: italic;
	color: var(--dsc-ink);
	border-radius: 0 var(--dsc-radius-sm) var(--dsc-radius-sm) 0;
}
.entry-content blockquote p:last-child { margin-bottom: 0; }

.entry-content figure { margin: var(--dsc-space-md) 0; }
.entry-content figcaption {
	font-size: var(--dsc-fs-sm);
	color: var(--dsc-text-muted);
	text-align: center;
	margin-top: 0.5rem;
}
.entry-content img { border-radius: var(--dsc-radius-sm); }

.entry-content table {
	width: 100%;
	border-collapse: collapse;
	margin: var(--dsc-space-md) 0;
}
.entry-content th,
.entry-content td {
	border: 1px solid var(--dsc-border);
	padding: 0.6rem 0.9rem;
	text-align: left;
}
.entry-content th { background: var(--dsc-cream); font-weight: 700; }

.entry-content hr {
	border: none;
	border-top: 1px solid var(--dsc-border);
	margin: var(--dsc-space-lg) 0;
}

.entry-content .page-links {
	margin-top: var(--dsc-space-md);
	font-size: var(--dsc-fs-sm);
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.4rem;
}
.entry-content .page-links a {
	display: inline-flex;
	padding: 0.3rem 0.7rem;
	border: 1px solid var(--dsc-border);
	border-radius: var(--dsc-radius-sm);
	text-decoration: none;
}
.entry-content .page-links a:hover { border-color: var(--dsc-primary); color: var(--dsc-primary); }

.dsc-locations-cta{
    padding:var(--dsc-space-lg);
}

.wp-block-list{
    padding-left:var(--dsc-space-md);
}

@media (max-width: 720px) {
	.dsc-page__thumb img { max-height: 260px; }
}

.entry-content figure.dsc-staff-card__photo{
    margin-top:0;
}
/* ============================================================
   About page (paste into theme.css)
   Pairs with about-page-blocks.html -- five bands that alternate
   background (navy hero / cream facts / white brands / cream
   locations / red CTA) instead of stacking everything the same way.
   Uses the theme's existing --dsc-* design tokens.
   ============================================================ */

/* ---- Hero (Cover, navy) -------------------------------------- */
.dsc-about-hero .wp-block-cover__inner-container {
	max-width: 720px;
	margin: 0 auto;
	padding: 0 var(--dsc-space-md);
	text-align: center;
}

.dsc-about-hero__eyebrow {
	color: var(--dsc-gold);
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: var(--dsc-fs-sm);
	font-weight: 700;
	margin-bottom: var(--dsc-space-sm);
}

.dsc-about-hero__title {
	color: var(--dsc-white);
	font-size: var(--dsc-fs-2xl);
	line-height: 1.15;
	margin-bottom: var(--dsc-space-sm);
}

.dsc-about-hero__lede {
	color: rgba(255, 255, 255, 0.82);
	font-size: var(--dsc-fs-lg);
	line-height: 1.6;
	max-width: 620px;
	margin: 0 auto;
}

/* ---- Facts strip (5 quick badges, cream band) ------------------ */
.dsc-about-facts { padding: var(--dsc-space-xl) 0; }

.dsc-about-facts__inner {
	max-width: var(--dsc-container);
	margin: 0 auto;
	padding: 0 var(--dsc-space-md);
}

/* WordPress wraps a plain Group block's children in an extra
   .wp-block-group__inner-container div (block/"flow" layout by
   default) -- that wrapper sits between .dsc-about-facts__inner and
   the fact cards and would otherwise defeat the flex row below.
   Targeting both levels means this works whether or not that wrapper
   is present. */
.dsc-about-facts__inner,
.dsc-about-facts__inner > .wp-block-group__inner-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--dsc-space-lg) var(--dsc-space-md);
}

.dsc-about-fact {
	flex: 1 1 180px;
	max-width: 220px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.dsc-about-fact__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--dsc-white);
	box-shadow: var(--dsc-shadow);
	color: var(--dsc-accent);
	margin-bottom: var(--dsc-space-sm);
}

.dsc-about-fact__title {
	color: var(--dsc-ink);
	font-size: var(--dsc-fs-base);
	line-height: 1.35;
	margin-bottom: 0.25rem;
}

.dsc-about-fact__caption {
	color: var(--dsc-text-muted);
	font-size: var(--dsc-fs-sm);
	line-height: 1.5;
	margin: 0;
}

/* ---- Our Story (founder's letter, white band) --------------------
   Deliberately plain white, not an alternating cream band like Facts/
   Locations either side of it -- a colored callout box would read as a
   "stat" or "promo," which undercuts the personal, first-person voice of
   a founder's letter. It's set apart by typography and whitespace
   instead: a gold eyebrow + underline (matching the brand accent used in
   the hero), a narrow ~720px reading column for comfortable line length,
   and a signed, right-aligned closing signature line rather than another
   plain paragraph. */
.dsc-about-story {
	padding: var(--dsc-space-md) 0;
}
.dsc-about-story__inner {
	max-width: 720px;
	margin: 0 auto;
	padding: 0 var(--dsc-space-md);
}
.dsc-about-story__eyebrow {
	display: block;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: var(--dsc-fs-sm);
	font-weight: 700;
	color: var(--dsc-gold);
	margin-bottom: var(--dsc-space-xs);
}
.dsc-about-story__title {
	text-align: center;
	color: var(--dsc-ink);
	margin: 0 0 var(--dsc-space-lg);
}
.dsc-about-story__title::after {
	content: "";
	display: block;
	width: 56px;
	height: 3px;
	margin: var(--dsc-space-xs) auto 0;
	background: var(--dsc-gold);
	border-radius: 2px;
}
.dsc-about-story__inner p {
	color: var(--dsc-text);
	font-size: 1.05rem;
	line-height: 1.8;
	margin-bottom: var(--dsc-space-md);
}
.dsc-about-story__signature {
	margin-top: var(--dsc-space-lg) !important;
	padding-top: var(--dsc-space-md);
	border-top: 1px solid var(--dsc-border);
	text-align: right;
	font-size: 1.15rem;
	font-style: italic;
	color: var(--dsc-ink);
}
.dsc-about-story__signature span {
	display: block;
	margin-top: 0.25rem;
	font-size: var(--dsc-fs-sm);
	font-style: normal;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--dsc-text-muted);
}

/* ---- Split variant: founder's letter (left) + milestone timeline
   (right), per client request Sept 2026. Everything here is scoped
   under .dsc-about-story--split so the original single-column, centered
   treatment above is untouched and still available if this section is
   ever reused elsewhere without a timeline. -------------------------- */
.dsc-about-story--split .dsc-about-story__inner {
	max-width: var(--dsc-container);
}
.dsc-about-story__row {
	align-items: flex-start;
	gap: var(--dsc-space-xl);
}
.dsc-about-story__col-text .dsc-about-story__eyebrow,
.dsc-about-story__col-text .dsc-about-story__title {
	text-align: left;
}
.dsc-about-story__col-text .dsc-about-story__eyebrow {
	color: var(--dsc-accent);
}
.dsc-about-story__col-text .dsc-about-story__title::after {
	display: none;
}
.dsc-about-story__col-text .dsc-about-story__signature {
	text-align: left;
	border-top: none;
	padding-top: 0;
	font-style: normal;
	font-weight: 700;
	font-family: var(--dsc-font-display);
}
.dsc-about-story__col-text .dsc-about-story__signature span {
	text-transform: none;
	letter-spacing: normal;
	font-weight: 400;
}

/* Vertical milestone timeline (right column) */
.dsc-timeline {
	position: relative;
	padding-top: 0.4rem;
}
.dsc-timeline::before {
	content: "";
	position: absolute;
	left: 5px;
	top: 10px;
	bottom: 10px;
	width: 1px;
	background: var(--dsc-border);
}
.dsc-timeline__item {
	position: relative;
	padding-left: var(--dsc-space-lg);
	margin-bottom: var(--dsc-space-lg);
}
.dsc-timeline__item:last-child { margin-bottom: 0; }
.dsc-timeline__item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 7px;
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: var(--dsc-accent);
	box-shadow: 0 0 0 3px var(--dsc-warm-white);
}
.dsc-timeline__year {
	font-family: var(--dsc-font-display);
	font-weight: 700;
	font-size: 1.4rem;
	color: var(--dsc-ink);
	margin: 0 0 0.3rem;
}
.dsc-timeline__desc {
	color: var(--dsc-text-muted);
	line-height: 1.6;
	margin: 0;
}

@media (max-width: 767px) {
	.dsc-about-story__row { gap: var(--dsc-space-lg); }
	.dsc-about-story__col-timeline { margin-top: var(--dsc-space-md); }
}

/* ---- Brands teaser (white band) -------------------------------- */
.dsc-about-brands {
	text-align: center;
	padding: var(--dsc-space-xl) 0;
	max-width: 620px;
	margin-left: auto;
	margin-right: auto;
}

.dsc-about-brands__title { color: var(--dsc-ink); margin-bottom: var(--dsc-space-xs); }

.dsc-about-brands__text {
	color: var(--dsc-text-muted);
	font-size: var(--dsc-fs-lg);
	line-height: 1.6;
	margin-bottom: var(--dsc-space-md);
}

.dsc-about-brands__btn .wp-block-button__link {
	background: var(--dsc-primary);
	color: var(--dsc-white);
	border-radius: var(--dsc-radius-sm);
	padding: 0.75rem 1.75rem;
	font-weight: 700;
	text-decoration: none !important;
}
.dsc-about-brands__btn .wp-block-button__link:hover { background: var(--dsc-primary-dark); }

/* ---- Locations teaser (cream band) ------------------------------ */
.dsc-about-locations { padding: var(--dsc-space-xl) 0; }

.dsc-about-locations__inner {
	max-width: 760px;
	margin: 0 auto;
	padding: 0 var(--dsc-space-md);
	text-align: center;
}

.dsc-about-locations__title { color: var(--dsc-ink); margin-bottom: var(--dsc-space-xs); }

.dsc-about-locations__text {
	color: var(--dsc-text-muted);
	font-size: var(--dsc-fs-lg);
	line-height: 1.6;
	margin-bottom: var(--dsc-space-md);
}

.dsc-about-locations__chips,
.dsc-about-locations__chips > .wp-block-group__inner-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.6rem;
	margin-bottom: var(--dsc-space-lg);
}

.dsc-about-locations__chip {
	display: inline-flex;
	align-items: center;
	background: var(--dsc-white);
	border: 1px solid var(--dsc-border);
	color: var(--dsc-ink);
	font-size: var(--dsc-fs-sm);
	font-weight: 600;
	padding: 0.5rem 1rem;
	border-radius: 999px;
}

.dsc-about-locations__btn .wp-block-button__link {
	background: var(--dsc-ink);
	color: var(--dsc-white);
	border-radius: var(--dsc-radius-sm);
	padding: 0.75rem 1.75rem;
	font-weight: 700;
	text-decoration: none !important;
}
.dsc-about-locations__btn .wp-block-button__link:hover { background: var(--dsc-primary); }

/* ---- Final CTA (Cover, accent red) ------------------------------ */
.dsc-about-cta .wp-block-cover__inner-container {
	max-width: 620px;
	margin: 0 auto;
	padding: 0 var(--dsc-space-md);
	text-align: center;
}

.dsc-about-cta__title {
	color: var(--dsc-white);
	margin-bottom: var(--dsc-space-md);
}

.dsc-about-cta__buttons {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--dsc-space-sm);
}

.dsc-about-cta__btn .wp-block-button__link {
	border-radius: var(--dsc-radius-sm);
	padding: 0.75rem 1.75rem;
	font-weight: 700;
	text-decoration: none !important;
}

.dsc-about-cta__btn--light .wp-block-button__link {
	background: var(--dsc-white);
	color: var(--dsc-accent);
}
.dsc-about-cta__btn--light .wp-block-button__link:hover { background: var(--dsc-cream); }

.dsc-about-cta__btn--outline .wp-block-button__link {
	background: transparent;
	color: var(--dsc-white);
	border: 1px solid rgba(255, 255, 255, 0.6);
}
.dsc-about-cta__btn--outline .wp-block-button__link:hover { border-color: var(--dsc-white); }

/* ---- Responsive -------------------------------------------------- */
@media (max-width: 720px) {
	.dsc-about-hero__title { font-size: var(--dsc-fs-xl); }
	.dsc-about-hero__lede { font-size: var(--dsc-fs-base); }
	.dsc-about-fact { flex: 1 1 45%; max-width: none; }
	.dsc-about-brands__text,
	.dsc-about-locations__text { font-size: var(--dsc-fs-base); }
}

@media (max-width: 480px) {
	.dsc-about-fact { flex: 1 1 100%; }
}

/* ============================================================
   Single Location page (paste into theme.css)
   Pairs with location-page-blocks.html -- assign this Page's Template
   to "Full Width (No Title)" so the H1 in the hero is the only
   heading, and the bands run edge-to-edge.

   Note on flex rows below: WordPress wraps a plain Group block's
   children in an extra .wp-block-group__inner-container div by
   default -- every flex rule here targets both the outer class and
   that inner wrapper so the row layout survives regardless.
   ============================================================ */

/* ---- Hero (Cover, navy) ---------------------------------------- */
.dsc-location-hero .wp-block-cover__inner-container {
	margin: 0 auto;
	padding: 0 var(--dsc-space-md);
	text-align: center;
}

.dsc-location-hero__eyebrow {
	color: var(--dsc-gold);
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: var(--dsc-fs-lg);
	font-weight: 700;
	margin-bottom: var(--dsc-space-sm);
}

.dsc-location-hero__title {
	color: var(--dsc-white);
	font-size: var(--dsc-fs-2xl);
	line-height: 1.15;
	margin-bottom: var(--dsc-space-sm);
}

.dsc-location-hero__tagline {
	color: rgba(255, 255, 255, 0.82);
	font-size: var(--dsc-fs-lg);
	line-height: 1.6;
	max-width: 560px;
	margin: 0 auto var(--dsc-space-md);
}

.dsc-location-hero__actions,
.dsc-location-hero__actions > .wp-block-group__inner-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--dsc-space-sm);
}

/* Shared button look -- used in both the hero and the closing CTA. */
.dsc-location-btn .wp-block-button__link {
	border-radius: var(--dsc-radius-sm);
	padding: 0.75rem 1.75rem;
	font-weight: 700;
	text-decoration: none !important;
	transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.dsc-location-btn--light .wp-block-button__link {
	background: var(--dsc-white);
	color: var(--dsc-ink);
}
.dsc-location-btn--light .wp-block-button__link:hover { background: var(--dsc-cream); }
.dsc-location-btn--outline .wp-block-button__link {
    background: transparent;
    border-color: var(--dsc-primary);
    color: var(--dsc-primary);
    border:1px solid;
}

.dsc-location-hero__actions .dsc-location-btn--outline .wp-block-button__link {
    background: transparent;
    border-color: var(--dsc-white);
    color: var(--dsc-white);
    border:1px solid;
}
.dsc-location-btn--outline .wp-block-button__link:hover { background:var(--dsc-primary);color: var(--dsc-white); }

/* ---- Store details + map (white band) --------------------------- */
.dsc-location-info { padding: var(--dsc-space-xl) 0; }

.dsc-location-info__inner {
	max-width: var(--dsc-container);
	margin: 0 auto !important;
	padding: 0 var(--dsc-space-md);
	gap: var(--dsc-space-lg);
}

.dsc-location-info__col--details {
	background: var(--dsc-warm-white);
	border: 1px solid var(--dsc-border);
	border-radius: var(--dsc-radius);
	padding: var(--dsc-space-md);
}

.dsc-location-info__title { color: var(--dsc-ink); margin-bottom: var(--dsc-space-sm); }

.dsc-location-info__col--map {
	min-height: 320px;
}

.dsc-location-map {
	width: 100%;
	height: 100%;
	min-height: 320px;
	border-radius: var(--dsc-radius);
	overflow: hidden;
	box-shadow: var(--dsc-shadow);
}
.dsc-location-map iframe { display: block; width: 100%; height: 100%; min-height: 320px; }

/* ---- What We Carry Here (cream band, category grid) -------------- */
.dsc-location-shop { padding: var(--dsc-space-xl) 0; }

.dsc-location-shop__inner {
	max-width: var(--dsc-container);
	margin: 0 auto;
	padding: 0 var(--dsc-space-md);
	text-align: center;
}

.dsc-location-shop__title { color: var(--dsc-ink); margin-bottom: var(--dsc-space-md); }

.dsc-location-shop__grid,
.dsc-location-shop__grid > .wp-block-group__inner-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--dsc-space-md);
}

.dsc-location-shop__grid > .wp-block-group__inner-container {
    width:100%;
}

.dsc-location-shop__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	flex: 1 1 160px;
	max-width: 200px;
	background: var(--dsc-white);
	border: 1px solid var(--dsc-border);
	border-radius: var(--dsc-radius);
	padding: var(--dsc-space-md) var(--dsc-space-sm);
	text-decoration: none !important;
	color: var(--dsc-ink);
	font-weight: 600;
	transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.dsc-location-shop__card:hover {
	box-shadow: var(--dsc-shadow);
	border-color: var(--dsc-primary);
	transform: translateY(-2px);
}

.dsc-location-shop__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--dsc-cream);
	color: var(--dsc-accent);
}

.dsc-location-shop__label { font-size: var(--dsc-fs-sm); }

/* ---- About this store (long-form body copy, white band) ----------
   Two supported markups:
   1. Legacy: .dsc-location-about wraps a .dsc-location-about__inner div
      that holds all the prose (own max-width, so children are styled
      via descendant selectors below).
   2. Current (Bay Ridge Parkway and newer): .dsc-location-about IS the
      prose wrapper itself (also carries .dsc-container), so h2/p/ul sit
      as its direct children -- styled via child (>) selectors so a
      narrower reading column can be centered inside the wider container
      without also squeezing the wide breakout photo. */
.dsc-location-about { padding: var(--dsc-space-lg) 0 0; }

.dsc-location-about__inner {
	max-width: 820px;
	margin: 0 auto;
	padding: 0 var(--dsc-space-md);
}

/* Reading column -- centers text content at an editorial width inside
   the wider container while the photo (alignwide) stays full-bleed. */
.dsc-location-about > h2,
.dsc-location-about > p,
.dsc-location-about > ul {
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
}

.dsc-location-about__inner h2,
.dsc-location-about > h2 {
	color: var(--dsc-ink);
	margin-top: var(--dsc-space-xl);
	margin-bottom: var(--dsc-space-sm);
}
.dsc-location-about__inner h2:first-child,
.dsc-location-about > h2:first-child { margin-top: 0; }

/* Small gold accent rule under every section heading -- ties the copy
   back to the brand's metallic-gold accent used in the hero eyebrow. */
.dsc-location-about__inner h2::after,
.dsc-location-about > h2::after {
	content: "";
	display: block;
	width: 56px;
	height: 3px;
	margin-top: var(--dsc-space-xs);
	background: var(--dsc-gold);
	border-radius: 2px;
}

.dsc-location-about__inner p,
.dsc-location-about > p {
	color: var(--dsc-text);
	font-size: 1.05rem;
	line-height: 1.8;
	margin-bottom: var(--dsc-space-sm);
}

/* Lede -- the sentence right under the page's first heading reads a
   touch larger/darker so the section opens with a clear hook. */
.dsc-location-about__inner h2:first-child + p,
.dsc-location-about > h2:first-child + p {
	font-size: 1.15rem;
	color: var(--dsc-ink);
	line-height: 1.75;
}

/* Supplies checklist -- a two-column card of gold check-badges instead
   of default browser bullets, echoing the "Why Us" checklist styling
   used elsewhere on the site. */
.dsc-location-about__inner ul,
.dsc-location-about > ul {
	list-style: none;
	margin: var(--dsc-space-sm) auto var(--dsc-space-lg);
	padding: var(--dsc-space-md);
	background: var(--dsc-cream);
	border-radius: var(--dsc-radius);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.65rem 1.5rem;
}
.dsc-location-about__inner li,
.dsc-location-about > ul li {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
	margin: 0;
	line-height: 1.5;
	color: var(--dsc-text);
}
.dsc-location-about__inner li::before,
.dsc-location-about > ul li::before {
	content: "\2713";
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.2rem;
	height: 1.2rem;
	margin-top: 0.1rem;
	border-radius: 50%;
	background: var(--dsc-gold);
	color: var(--dsc-white);
	font-size: 0.68rem;
	line-height: 1;
}
@media (max-width: 640px) {
	.dsc-location-about__inner ul,
	.dsc-location-about > ul { grid-template-columns: 1fr; }
}

/* Closing note -- set off from the checklist with a hairline rule and
   quieter styling so it reads as a caveat, not another body paragraph. */
.dsc-location-about__inner ul + p,
.dsc-location-about > ul + p {
	margin-top: 0;
	padding-top: var(--dsc-space-sm);
	border-top: 1px solid var(--dsc-border);
	font-size: var(--dsc-fs-sm);
	font-style: italic;
	color: var(--dsc-text-muted);
}

/* Single storefront photo -- a wide banner-style image used as a visual
   break in the long-form copy. Swap the placeholder src for the real
   photo in the block editor (click the image, use Replace). */
.dsc-location-about__photo {
	margin: var(--dsc-space-lg) 0;
}
.dsc-location-about__photo img {
	display: block;
	width: 100%;
	height: 420px;
	object-fit: cover;
	border-radius: var(--dsc-radius);
	border: 1px solid var(--dsc-border);
	box-shadow: 0 8px 24px rgba(28, 43, 57, 0.08);
}
.dsc-location-about__photo figcaption {
	margin-top: 0.5rem;
	font-size: var(--dsc-fs-sm);
	color: var(--dsc-text-muted);
	text-align: center;
}
@media (max-width: 600px) {
	.dsc-location-about__photo img { height: 260px; }
}

/* ---- Brands at this location (white band) ------------------------ */
.dsc-location-brands {
	text-align: center;
	padding: var(--dsc-space-xl) 0;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.dsc-location-brands__title { color: var(--dsc-ink); margin-bottom: var(--dsc-space-xs); }

.dsc-location-brands__text {
	color: var(--dsc-text-muted);
	font-size: var(--dsc-fs-lg);
	line-height: 1.6;
	margin-bottom: var(--dsc-space-md);
}

.dsc-location-brands__chips,
.dsc-location-brands__chips > .wp-block-group__inner-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.6rem;
	margin-bottom: var(--dsc-space-md);
}

.dsc-location-brands__chip {
	display: inline-flex;
	align-items: center;
	background: var(--dsc-cream);
	color: var(--dsc-ink);
	font-size: var(--dsc-fs-sm);
	font-weight: 600;
	padding: 0.5rem 1rem;
	border-radius: 999px;
	text-decoration: none !important;
	transition: background 0.15s, color 0.15s;
}
.dsc-location-brands__chip:hover { background: var(--dsc-primary); color: var(--dsc-white); }

.dsc-location-brands__btn .wp-block-button__link {
	background: var(--dsc-primary);
	color: var(--dsc-white);
	border-radius: var(--dsc-radius-sm);
	padding: 0.75rem 1.75rem;
	font-weight: 700;
	text-decoration: none !important;
}
.dsc-location-brands__btn .wp-block-button__link:hover { background: var(--dsc-primary-dark); }

/* ---- FAQ (cream band) --------------------------------------------- */
.dsc-location-faq { padding: var(--dsc-space-xl) 0; }

.dsc-location-faq__inner {
	max-width: 760px;
	margin: 0 auto;
	padding: 0 var(--dsc-space-md);
}

.dsc-location-faq__title { color: var(--dsc-ink); margin-bottom: var(--dsc-space-md); text-align: center; }

.dsc-location-faq__item {
	background: var(--dsc-white);
	border: 1px solid var(--dsc-border);
	border-radius: var(--dsc-radius-sm);
	padding: var(--dsc-space-sm) var(--dsc-space-md);
	margin-bottom: var(--dsc-space-sm);
}

.dsc-location-faq__item summary {
	cursor: pointer;
	font-weight: 700;
	color: var(--dsc-ink);
}

.dsc-location-faq__item p { margin: var(--dsc-space-xs) 0 0; color: var(--dsc-text-muted); }

/* ---- Closing CTA (Cover, accent red) ------------------------------ */
.dsc-location-cta .wp-block-cover__inner-container {
	max-width: 620px;
	margin: 0 auto;
	padding: 0 var(--dsc-space-md);
	text-align: center;
}

.dsc-location-cta__title { color: var(--dsc-white); margin-bottom: var(--dsc-space-md); }

.dsc-location-cta__buttons,
.dsc-location-cta__buttons > .wp-block-group__inner-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--dsc-space-sm);
}

.dsc-location-cta__alt {
	margin-top: var(--dsc-space-md);
	color: rgba(255, 255, 255, 0.75);
	font-size: var(--dsc-fs-sm);
}
.dsc-location-cta__alt a { color: var(--dsc-white); text-decoration: underline; text-underline-offset: 2px; }

.dsc-location-cta__contact {
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: var(--dsc-space-md);
	font-size: var(--dsc-fs-base);
	line-height: 1.7;
}
.dsc-location-cta__contact strong { color: var(--dsc-white); }
.dsc-location-cta__contact a { color: var(--dsc-white); text-decoration: underline; text-underline-offset: 2px; }

/* ---- Responsive ----------------------------------------------------- */
@media (max-width: 782px) {
	.dsc-location-info__inner { flex-direction: column; }
	.dsc-location-info__col--details,
	.dsc-location-info__col--map { flex-basis: 100% !important; }
}

@media (max-width: 720px) {
	.dsc-location-hero__title { font-size: var(--dsc-fs-xl); }
	.dsc-location-hero__tagline { font-size: var(--dsc-fs-base); }
	.dsc-location-brands__text { font-size: var(--dsc-fs-base); }
	.dsc-location-shop__card { flex: 1 1 45%; max-width: none; }
}

@media (max-width: 480px) {
	.dsc-location-shop__card { flex: 1 1 100%; }
}

/* ============================================================
   Main Locations page (paste into theme.css)
   Pairs with locations-directory-blocks.html -- editorial alternating
   rows instead of a card grid. Assign the page's Template to
   "Full Width (No Title)" so the hero's H1 is the only heading.
   ============================================================ */

/* ---- Hero (Cover, navy) ---------------------------------------- */
.dsc-locations-hero .wp-block-cover__inner-container {
	max-width: 640px;
	margin: 0 auto;
	padding: 0 var(--dsc-space-md);
	text-align: center;
}

.dsc-locations-hero__eyebrow {
	color: var(--dsc-gold);
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: var(--dsc-fs-sm);
	font-weight: 700;
	margin-bottom: var(--dsc-space-sm);
}

.dsc-locations-hero__title {
	color: var(--dsc-white);
	font-size: var(--dsc-fs-2xl);
	line-height: 1.15;
	margin-bottom: var(--dsc-space-sm);
}

.dsc-locations-hero__tagline {
	color: rgba(255, 255, 255, 0.82);
	font-size: var(--dsc-fs-lg);
	line-height: 1.6;
	max-width: 560px;
	margin: 0 auto;
}

/* ---- List wrapper ------------------------------------------------- */
.dsc-locations-list {
	max-width: var(--dsc-container);
	margin: 0 auto;
	padding: var(--dsc-space-xl) var(--dsc-space-md);
}

/* ---- Each location row --------------------------------------------
   A Columns block, alternating media/content side via a reversed
   flex-direction on every other row (markup order stays the same --
   media column first -- only the visual order flips). */
.dsc-location-row {
	align-items: center;
	gap: var(--dsc-space-lg);
	margin-bottom: var(--dsc-space-xl);
	padding-bottom: var(--dsc-space-xl);
	border-bottom: 1px solid var(--dsc-border);
}
.dsc-location-row:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.dsc-location-row--reverse { flex-direction: row-reverse; }

.dsc-location-row__media { position: relative; }

.dsc-location-row__index {
	position: absolute;
	top: -1.4rem;
	left: -0.5rem;
	font-family: var(--dsc-font-display);
	font-size: 4rem;
	font-weight: 700;
	color: var(--dsc-cream);
	z-index: 0;
	line-height: 1;
}

.dsc-location-row__image {
	position: relative;
	z-index: 1;
	width: 100%;
	aspect-ratio: 4 / 3;
	border-radius: var(--dsc-radius);
	object-fit: cover;
	display: block;
}

.dsc-location-row__image--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--dsc-warm-white);
	border: 1px solid var(--dsc-border);
	color: var(--dsc-accent);
}

.dsc-location-row__badge {
	display: inline-block;
	background: var(--dsc-accent);
	color: var(--dsc-white);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	padding: 0.25rem 0.6rem;
	border-radius: 999px;
	margin-bottom: var(--dsc-space-xs);
}

.dsc-location-row__title { color: var(--dsc-ink); margin-bottom: var(--dsc-space-xs); }
.dsc-location-row__title a { color: inherit; text-decoration: none; }
.dsc-location-row__title a:hover { color: var(--dsc-accent); }

.dsc-location-row__address {
	color: var(--dsc-text-muted);
	font-size: var(--dsc-fs-base);
	margin-bottom: var(--dsc-space-sm);
}

.dsc-location-row__meta {
	list-style: none;
	margin: 0 0 var(--dsc-space-md);
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}
.dsc-location-row__meta li {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--dsc-text);
	font-size: var(--dsc-fs-sm);
}
.dsc-location-row__meta svg { color: var(--dsc-accent); flex-shrink: 0; }
.dsc-location-row__meta a { color: inherit; text-decoration: none; }
.dsc-location-row__meta a:hover { color: var(--dsc-accent); }

.dsc-location-row__actions,
.dsc-location-row__actions > .wp-block-group__inner-container {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
}

/* ---- Shared button look -- hero/rows/CTA all reuse this ---------- */
.dsc-location-btn .wp-block-button__link {
	border-radius: var(--dsc-radius-sm);
	padding: 0.65rem 1.5rem;
	font-weight: 700;
	text-decoration: none !important;
}
.dsc-location-btn--primary .wp-block-button__link {
	background: var(--dsc-primary);
	color: var(--dsc-white);
}
.dsc-location-btn--primary .wp-block-button__link:hover { background: var(--dsc-primary-dark); }

/* ---- Closing CTA (Cover, accent red) ------------------------------- */
.dsc-locations-cta .wp-block-cover__inner-container {
	max-width: 560px;
	margin: 0 auto;
	padding: 0 var(--dsc-space-md);
	text-align: center;
}
.dsc-locations-cta__title { color: var(--dsc-white); margin-bottom: var(--dsc-space-sm); }
.dsc-locations-cta__text {
	color: rgba(255, 255, 255, 0.82);
	margin-bottom: var(--dsc-space-md);
	line-height: 1.6;
}

/* ---- Responsive ------------------------------------------------------ */
@media (max-width: 782px) {
	.dsc-location-row,
	.dsc-location-row--reverse { flex-direction: column; }
	.dsc-location-row__media,
	.dsc-location-row__content { flex-basis: 100% !important; }
	.dsc-location-row__index { top: -1rem; font-size: 3rem; }
}

@media (max-width: 720px) {
	.dsc-locations-hero__title { font-size: var(--dsc-fs-xl); }
	.dsc-locations-hero__tagline { font-size: var(--dsc-fs-base); }
}

/* ---- Hero logo badge (client addition) -------------------------------- */
.dsc-hero {
	position: relative;
}

.hero-bm-logo {
	position: absolute;
	left: 32px;
	bottom: 10px;
	z-index: 5;
	max-width: 160px;
	margin: 0;
}

/* ============================================================
   Staff / Team page (paste into theme.css)
   Pairs with staff-page-blocks.html -- hero (navy) / photo band (white) /
   staff-by-location (cream) / CTA (red) / areas of expertise (white) /
   locations grid (cream). Reuses .dsc-location-btn and .dsc-about-cta__btn
   button styles already defined above so the buttons match the rest of
   the site exactly. No CPT/ACF involved -- every staff card here is plain
   Gutenberg content, edited directly on the page.
   ============================================================ */

/* ---- Hero (Cover, navy) -------------------------------------- */
.dsc-staff-hero .wp-block-cover__inner-container {
	max-width: 720px;
	margin: 0 auto;
	padding: 0 var(--dsc-space-md);
	text-align: center;
}
.dsc-staff-hero__title {
	color: var(--dsc-white);
	font-size: var(--dsc-fs-2xl);
	line-height: 1.15;
	margin-bottom: var(--dsc-space-sm);
}
.dsc-staff-hero__headline {
	color: var(--dsc-gold);
	font-size: var(--dsc-fs-lg);
	font-weight: 700;
	margin-bottom: var(--dsc-space-sm);
}
.dsc-staff-hero__lede {
	color: rgba(255, 255, 255, 0.82);
	font-size: var(--dsc-fs-base);
	line-height: 1.6;
	max-width: 620px;
	margin: 0 auto var(--dsc-space-md);
}
.dsc-staff-hero__actions,
.dsc-staff-hero__actions > .wp-block-group__inner-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--dsc-space-sm);
}

/* ---- Hero visual (white band, wide photo) ------------------------- */
.dsc-staff-visual-band {
	padding: var(--dsc-space-lg) 0;
}
.dsc-staff-visual img {
	display: block;
	width: 100%;
	height: 440px;
	object-fit: cover;
	border-radius: var(--dsc-radius);
	border: 1px solid var(--dsc-border);
	box-shadow: var(--dsc-shadow);
}
@media (max-width: 600px) {
	.dsc-staff-visual img { height: 260px; }
}

/* ---- Staff by location (cream band) -------------------------------- */
.dsc-staff-band { padding: var(--dsc-space-xl) 0; }
.dsc-staff-band__inner {
	max-width: var(--dsc-container);
	margin: 0 auto;
	padding: 0 var(--dsc-space-md);
}
.dsc-staff-band__title {
	color: var(--dsc-ink);
	margin-bottom: var(--dsc-space-lg);
}

.dsc-staff-store {
	padding: var(--dsc-space-lg) 0;
	border-top: 1px solid var(--dsc-border);
}
.dsc-staff-store:first-of-type {
	border-top: none;
	padding-top: 0;
}
.dsc-staff-store--last {
	padding-bottom: 0;
}
.dsc-staff-store__title {
	color: var(--dsc-ink);
	margin-bottom: 0.25rem;
}
.dsc-staff-store__address {
	color: var(--dsc-text-muted);
	margin-bottom: var(--dsc-space-sm);
}
.dsc-staff-store__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--dsc-space-sm);
	margin-bottom: var(--dsc-space-lg) !important;
}
.dsc-staff-store__btn .wp-block-button__link {
	background: var(--dsc-primary);
	color: var(--dsc-white);
	border-radius: var(--dsc-radius-sm);
	padding: 0.65rem 1.4rem;
	font-weight: 700;
	font-size: var(--dsc-fs-sm);
	text-decoration: none !important;
}
.dsc-staff-store__btn .wp-block-button__link:hover { background: var(--dsc-primary-dark); }
.dsc-staff-store__btn--outline .wp-block-button__link {
	background: transparent;
	color: var(--dsc-primary);
	border: 1px solid var(--dsc-navy);
}
.dsc-staff-store__btn--outline .wp-block-button__link:hover { border-color: var(--dsc-primary); color:var(--dsc-white); transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;}

.dsc-staff-hero .dsc-location-btn--outline .wp-block-button__link{
    border-color: var(--dsc-white);
    color: var(--dsc-white);
}

/* ---- Employee cards -------------------------------------------------- */
.dsc-staff-grid{
        justify-content: center;
}
.dsc-staff-grid,
.dsc-staff-grid > .wp-block-group__inner-container {
	display: flex;
	flex-wrap: wrap;
	gap: var(--dsc-space-md);
}
.dsc-staff-card {
	flex: 1 1 260px;
	max-width: 320px;
	background: var(--dsc-white);
	border: 1px solid var(--dsc-border);
	border-radius: var(--dsc-radius);
	padding: var(--dsc-space-md);
	box-shadow: var(--dsc-shadow);
}
.dsc-staff-card__photo {
	margin: 0 0 var(--dsc-space-sm);
}
.dsc-staff-card__photo img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	border-radius: var(--dsc-radius-sm);
}
.dsc-staff-card__name {
	color: var(--dsc-ink);
	font-weight: 700;
	margin: 0 0 0.15rem;
}
.dsc-staff-card__title {
	color: var(--dsc-accent);
	font-size: var(--dsc-fs-sm);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin: 0 0 var(--dsc-space-sm);
}
.dsc-staff-card__bio {
	color: var(--dsc-text-muted);
	font-size: var(--dsc-fs-sm);
	font-style: italic;
	line-height: 1.55;
	margin: 0 0 var(--dsc-space-sm);
}
.dsc-staff-card__expertise {
	list-style: none;
	margin: 0 0 var(--dsc-space-sm);
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}
.dsc-staff-card__expertise li {
	position: relative;
	padding-left: 1rem;
	color: var(--dsc-text);
	font-size: var(--dsc-fs-sm);
	line-height: 1.4;
}
.dsc-staff-card__expertise li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.5em;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--dsc-gold);
}
.dsc-staff-card__call {
	margin: var(--dsc-space-sm) 0 0;
	padding-top: var(--dsc-space-sm);
	border-top: 1px solid var(--dsc-border);
}
.dsc-staff-card__call a {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	color: var(--dsc-primary);
	font-weight: 700;
	font-size: var(--dsc-fs-sm);
	text-decoration: none;
}
.dsc-staff-card__call a::before {
	content: "";
	width: 14px;
	height: 14px;
	background-color: currentColor;
	flex: none;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.6 10.8c1.4 2.8 3.8 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.3.6 3.6.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.6 21 3 13.4 3 4c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.5.6 3.6.1.3 0 .7-.2 1L6.6 10.8Z'/%3E%3C/svg%3E") no-repeat center / contain;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.6 10.8c1.4 2.8 3.8 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.3.6 3.6.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.6 21 3 13.4 3 4c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.5.6 3.6.1.3 0 .7-.2 1L6.6 10.8Z'/%3E%3C/svg%3E") no-repeat center / contain;
}
.dsc-staff-card__call a:hover { color: var(--dsc-accent); }

/* On mobile, cards go single column and the Call link becomes a full
   tappable button -- client spec: mobile card = photo/name/title/Call. */
@media (max-width: 640px) {
	.dsc-staff-card { flex: 1 1 100%; max-width: none; }
	.dsc-staff-card__bio,
	.dsc-staff-card__expertise { display: none; }
	.dsc-staff-card__call {
		border-top: none;
		padding-top: 0;
		margin-top: var(--dsc-space-xs);
	}
	.dsc-staff-card__call a {
		justify-content: center;
		width: 100%;
		background: var(--dsc-primary);
		color: var(--dsc-white);
		border-radius: var(--dsc-radius-sm);
		padding: 0.65rem 1rem;
	}
	.dsc-staff-card__call a:hover { color: var(--dsc-white); background: var(--dsc-primary-dark); }
}

/* ---- "Not sure what you need" CTA (Cover, accent red) --------------- */
.dsc-staff-cta .wp-block-cover__inner-container {
	max-width: 680px;
	margin: 0 auto;
	padding: 0 var(--dsc-space-md);
	text-align: center;
}
.dsc-staff-cta__title { color: var(--dsc-white); margin-bottom: var(--dsc-space-md); }
.dsc-staff-cta__lede {
	color: rgba(255, 255, 255, 0.88);
	line-height: 1.6;
	margin-bottom: var(--dsc-space-sm);
}
.dsc-staff-cta__lede strong { color: var(--dsc-white); }
.dsc-staff-cta__buttons { margin-top: var(--dsc-space-md) !important; }

/* ---- Areas of Expertise (white band, icon grid) ---------------------- */
.dsc-staff-expertise { padding: var(--dsc-space-xl) 0; }
.dsc-staff-expertise__inner {
	max-width: var(--dsc-container);
	margin: 0 auto;
	padding: 0 var(--dsc-space-md);
}
.dsc-staff-expertise__title {
	color: var(--dsc-ink);
	margin-bottom: var(--dsc-space-lg);
}
.dsc-staff-expertise__grid,
.dsc-staff-expertise__grid > .wp-block-group__inner-container {
	display: flex;
	flex-wrap: wrap;
	gap: var(--dsc-space-md);
	justify-content: center;
}
.dsc-staff-expertise__card {
	flex: 1 1 260px;
	max-width: 320px;
	text-align: center;
	background: var(--dsc-warm-white);
	border: 1px solid var(--dsc-border);
	border-radius: var(--dsc-radius);
	padding: var(--dsc-space-md);
}
.dsc-staff-expertise__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--dsc-white);
	box-shadow: var(--dsc-shadow);
	color: var(--dsc-accent);
	margin-bottom: var(--dsc-space-sm);
}
.dsc-staff-expertise__card-title { color: var(--dsc-ink); margin: 0 0 0.35rem; }
.dsc-staff-expertise__card-text {
	color: var(--dsc-text-muted);
	font-size: var(--dsc-fs-sm);
	line-height: 1.5;
	margin: 0;
}

/* ---- Locations grid (cream band; reuses .dsc-about-locations for the
   outer band + heading, adds its own 4-card grid) ----------------------- */
.dsc-staff-locations__inner {
	max-width: var(--dsc-container);
	margin: 0 auto;
	padding: 0 var(--dsc-space-md);
	text-align: center;
}
.dsc-staff-locations__grid,
.dsc-staff-locations__grid > .wp-block-group__inner-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--dsc-space-md);
	margin-top: var(--dsc-space-lg);
}
.dsc-staff-locations__card {
	flex: 1 1 220px;
	max-width: 260px;
	background: var(--dsc-white);
	border: 1px solid var(--dsc-border);
	border-radius: var(--dsc-radius);
	padding: var(--dsc-space-md);
}
.dsc-staff-locations__name { color: var(--dsc-ink); margin: 0 0 0.35rem; }
.dsc-staff-locations__address {
	color: var(--dsc-text-muted);
	font-size: var(--dsc-fs-sm);
	line-height: 1.5;
	margin: 0 0 var(--dsc-space-sm);
}
.dsc-staff-locations__actions,
.dsc-staff-locations__actions > .wp-block-group__inner-container {
	display: flex;
	gap: 0.5rem;
	justify-content: center;
}
.dsc-staff-locations__btn .wp-block-button__link {
	background: var(--dsc-primary);
	color: var(--dsc-white);
	border-radius: var(--dsc-radius-sm);
	padding: 0.55rem 1rem;
	font-size: var(--dsc-fs-sm);
	font-weight: 700;
	text-decoration: none !important;
}
.dsc-staff-locations__btn .wp-block-button__link:hover { background: var(--dsc-primary-dark); }
.dsc-staff-locations__btn--outline .wp-block-button__link {
	background: transparent;
	color: var(--dsc-primary);
	border: 1px solid var(--dsc-border);
}
.dsc-staff-locations__btn--outline .wp-block-button__link:hover { border-color: var(--dsc-primary); }

/* ---- Responsive ------------------------------------------------------- */
@media (max-width: 720px) {
	.dsc-staff-hero__title { font-size: var(--dsc-fs-xl); }
	.dsc-staff-hero__lede { font-size: var(--dsc-fs-base); }
}

/* =========================================================================
   Blog: index.php (listing), archive.php (category/tag/date), single.php,
   search.php, 404.php.

   Shares the site's existing design tokens/patterns rather than
   introducing new ones: .dsc-page-title for the title band (already used
   by page.php/page-shop.php/page-brands.php), .dsc-pagination for paged
   results (already used by the Shop grid -- duplicated here as a global
   copy so it doesn't depend on shop-style.css being enqueued on a blog
   page), and the ~720-760px narrow reading column used by the About
   Story section for the actual post body.
   ========================================================================= */

.dsc-blog { padding-bottom: var(--dsc-space-2xl); }

.dsc-blog__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--dsc-space-md);
	margin-bottom: var(--dsc-space-xl);
}

.dsc-blog__grid--related { margin-bottom: 0; }

.dsc-blog-card {
	display: flex;
	flex-direction: column;
	background: var(--dsc-white);
	border: 1px solid var(--dsc-border);
	border-radius: var(--dsc-radius);
	overflow: hidden;
	box-shadow: var(--dsc-shadow);
	text-decoration: none !important;
	color: inherit;
	transition: box-shadow 0.2s, transform 0.2s;
}
.dsc-blog-card:hover { box-shadow: var(--dsc-shadow-hover); transform: translateY(-3px); }

.dsc-blog-card__media {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 10;
	background: var(--dsc-surface-alt, #f5f2ea);
	overflow: hidden;
}
.dsc-blog-card__media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.dsc-blog-card__placeholder {
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(
		45deg,
		var(--dsc-border),
		var(--dsc-border) 10px,
		transparent 10px,
		transparent 20px
	);
	opacity: 0.35;
}
.dsc-blog-card__badge {
	position: absolute;
	top: var(--dsc-space-xs);
	left: var(--dsc-space-xs);
	background: var(--dsc-ink);
	color: var(--dsc-white);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding: 0.3rem 0.6rem;
	border-radius: 999px;
}

.dsc-blog-card__body {
	padding: var(--dsc-space-md);
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	flex: 1;
}
.dsc-blog-card__meta {
	font-size: var(--dsc-fs-sm);
	color: var(--dsc-text-muted);
}
.dsc-blog-card__title {
	font-weight: 700;
	font-size: var(--dsc-fs-lg);
	color: var(--dsc-ink);
	line-height: 1.35;
}
.dsc-blog-card__excerpt {
	margin: 0;
	color: var(--dsc-text-muted);
	line-height: 1.6;
	font-size: var(--dsc-fs-sm);
}
.dsc-blog-card__readmore {
	margin-top: auto;
	padding-top: 0.5rem;
	font-weight: 700;
	color: var(--dsc-accent);
}

.dsc-blog__empty {
	text-align: center;
	color: var(--dsc-text-muted);
	padding: var(--dsc-space-xl) 0;
}
.dsc-blog__empty-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
	margin-top: var(--dsc-space-md);
}
.dsc-blog__empty-links .dsc-btn { width: auto; }

/* ---- Global pagination (also used by the Shop grid via shop-style.css --
   same class names/visual treatment there, this is the copy available on
   any page that doesn't load that stylesheet) --------------------------- */
.dsc-pagination { display: flex; justify-content: center; }
.dsc-pagination__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}
.dsc-pagination__list .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 0.5rem;
	border-radius: 999px;
	border: 1px solid var(--dsc-border);
	background: var(--dsc-white);
	color: var(--dsc-ink);
	font-weight: 600;
	font-size: var(--dsc-fs-sm);
	text-decoration: none !important;
	transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.15s;
}
.dsc-pagination__list a.page-numbers:hover { border-color: var(--dsc-primary); color: var(--dsc-primary); transform: translateY(-1px); }
.dsc-pagination__list .page-numbers.current { background: var(--dsc-primary); border-color: var(--dsc-primary); color: var(--dsc-white); }
.dsc-pagination__list .page-numbers.dots { background: transparent; border-color: transparent; color: var(--dsc-text-muted); }
.dsc-pagination__list .page-numbers.prev,
.dsc-pagination__list .page-numbers.next { font-size: 1rem; background: var(--dsc-primary); border-color: var(--dsc-primary); color: var(--dsc-white); }
.dsc-pagination__list .page-numbers.prev:hover,
.dsc-pagination__list .page-numbers.next:hover { background: var(--dsc-primary-dark, var(--dsc-primary)); color: var(--dsc-white); }

/* ---- On-page search form (search.php + 404.php) ------------------------ */
.dsc-search-page-form {
	display: flex;
	gap: 0.5rem;
	max-width: 560px;
	margin: 0 0 var(--dsc-space-xl);
}
.dsc-search-page-form input[type="search"] {
	flex: 1;
	padding: 0.7rem 1rem;
	border: 1px solid var(--dsc-border);
	border-radius: var(--dsc-radius-sm);
	font-size: var(--dsc-fs-base);
}
.dsc-search-page-form .dsc-btn { width: auto; }

/* =========================================================================
   single.php -- single blog post
   ========================================================================= */
.dsc-single-post__header {
	padding: var(--dsc-space-lg) 0 var(--dsc-space-md);
	text-align: center;
}
.dsc-single-post__badge {
	display: inline-block;
	background: var(--dsc-ink);
	color: var(--dsc-white);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding: 0.3rem 0.7rem;
	border-radius: 999px;
	text-decoration: none !important;
	margin-bottom: var(--dsc-space-sm);
}
.dsc-single-post__badge:hover { background: var(--dsc-accent); }
.dsc-single-post__title {
	max-width: 820px;
	margin: 0 auto;
	color: var(--dsc-ink);
}
.dsc-single-post__title::after {
	content: "";
	display: block;
	width: 56px;
	height: 3px;
	margin: var(--dsc-space-sm) auto 0;
	background: var(--dsc-gold);
	border-radius: 2px;
}
.dsc-single-post__meta {
	margin-top: var(--dsc-space-sm);
	color: var(--dsc-text-muted);
	font-size: var(--dsc-fs-sm);
}
.dsc-single-post__meta a { color: var(--dsc-text-muted); text-decoration: underline; text-underline-offset: 2px; }
.dsc-single-post__meta-sep { margin: 0 0.4rem; }

.dsc-single-post__thumb { margin: 0 0 var(--dsc-space-xl); }
.dsc-single-post__thumb img {
	width: 100%;
	max-height: 460px;
	object-fit: cover;
	border-radius: var(--dsc-radius);
}

/* Single Brand page (single-dsc_brand.php) -- logo at its natural size,
   never cropped/stretched into a banner like .dsc-single-post__thumb
   above. Same bounded-box + object-fit: contain approach already used
   for the smaller logo on the Brand directory cards (.dsc-brand-card__logo
   in brands-style.css), just larger since it's the hero of its own page. */
.dsc-single-brand__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 320px;
    max-height: 140px;
    margin: 0 auto var(--dsc-space-lg);
}
.dsc-single-brand__logo img {
	max-width: 100%;
	max-height: 140px;
	width: auto;
	height: auto;
	object-fit: contain;
}

.dsc-single-post__body {
	max-width: 720px;
	margin: 0 auto var(--dsc-space-lg);
	font-size: 1.05rem;
	line-height: 1.8;
	color: var(--dsc-text);
}
.dsc-single-post__body > *:first-child { margin-top: 0; }
.dsc-single-post__body h2,
.dsc-single-post__body h3 { color: var(--dsc-ink); }
.dsc-single-post__body p { margin: 0 0 var(--dsc-space-md); }

.dsc-single-post__tags {
	max-width: 720px;
	margin: 0 auto var(--dsc-space-lg);
	padding-top: var(--dsc-space-sm);
	border-top: 1px solid var(--dsc-border);
	font-size: var(--dsc-fs-sm);
	color: var(--dsc-text-muted);
}
.dsc-single-post__tags-label { font-weight: 700; color: var(--dsc-ink); margin-right: 0.4rem; }
.dsc-single-post__tags a { color: var(--dsc-text-muted); }
.dsc-single-post__tags a:hover { color: var(--dsc-accent); }

.dsc-single-post__nav {
	max-width: 720px;
	margin: 0 auto var(--dsc-space-xl);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--dsc-space-sm);
}
.dsc-single-post__nav-link {
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
	padding: var(--dsc-space-sm) var(--dsc-space-md);
	border: 1px solid var(--dsc-border);
	border-radius: var(--dsc-radius);
	text-decoration: none !important;
	transition: border-color 0.15s, box-shadow 0.15s;
}
.dsc-single-post__nav-link:hover { border-color: var(--dsc-primary); box-shadow: var(--dsc-shadow); }
.dsc-single-post__nav-link--next { text-align: right; align-items: flex-end; }
.dsc-single-post__nav-label { font-size: var(--dsc-fs-sm); font-weight: 700; color: var(--dsc-accent); }
.dsc-single-post__nav-title { color: var(--dsc-ink); font-weight: 600; line-height: 1.4; }

.dsc-single-post__related {
	background: var(--dsc-warm-white);
	padding: var(--dsc-space-xl) 0;
	margin-top: var(--dsc-space-lg);
}
.dsc-single-post__related-title {
	text-align: center;
	color: var(--dsc-ink);
	margin: 0 0 var(--dsc-space-lg);
}

.dsc-single-post__comments {
	max-width: 720px;
	margin: 0 auto;
	padding-top: var(--dsc-space-lg);
	border-top: 1px solid var(--dsc-border);
	padding-bottom: var(--dsc-space-2xl);
}

/* =========================================================================
   404.php
   ========================================================================= */
.dsc-404 { padding: var(--dsc-space-2xl) 0; }
.dsc-404__inner { max-width: 640px; margin: 0 auto; text-align: center; }
.dsc-404__eyebrow {
	font-family: var(--dsc-font-display);
	font-size: 5rem;
	line-height: 1;
	font-weight: 700;
	color: var(--dsc-gold);
	margin: 0 0 var(--dsc-space-sm);
}
.dsc-404__title { color: var(--dsc-ink); margin: 0 0 var(--dsc-space-sm); }
.dsc-404__lede { color: var(--dsc-text-muted); margin: 0 0 var(--dsc-space-lg); }
.dsc-404__search { margin: 0 auto var(--dsc-space-xl); }
.dsc-404__links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
}
.dsc-404__links .dsc-btn { width: auto; }


.aioseo-location>[class*=col] {
    padding: 0 15px;
}

/* ---- Responsive --------------------------------------------------------- */
@media (max-width: 992px) {
	.dsc-blog__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
	.dsc-blog { padding: var(--dsc-space-lg) 0 var(--dsc-space-xl); }
	.dsc-blog__grid { grid-template-columns: 1fr; gap: var(--dsc-space-sm); }
	.dsc-single-post__thumb img { max-height: 260px; }
	.dsc-single-post__nav { grid-template-columns: 1fr; }
	.dsc-single-post__nav-link--next { text-align: left; align-items: flex-start; }
	.dsc-404__eyebrow { font-size: 3.5rem; }
	.dsc-search-page-form,
	.dsc-404__search { flex-direction: column; max-width: 100%; }
	.dsc-search-page-form .dsc-btn,
	.dsc-404__search .dsc-btn { width: 100%; }
}

/* =========================================================================
   Mobile-specific refinements (wireframe: sticky header, 2-col categories,
   horizontal-swipe products/brands, thumb-friendly tap targets)
   ========================================================================= */
@media (max-width: 767px) {
	:root { --dsc-header-h: var(--dsc-header-h-mobile); }
	.dsc-utility-bar .dsc-container { height: 36px; }
	.dsc-utility-bar__links li:not(:first-child) { display: none; }
	.dsc-site-header .dsc-container { height: var(--dsc-header-h-mobile); }
	.dsc-logo img { max-height: 40px; }
	.dsc-logo-type__primary { font-size: var(--dsc-fs-xl); }
	.dsc-logo-type__secondary { font-size: 0.7rem; }
	.dsc-logo-type__tagline { display: none; }
	.dsc-logo--dual { gap: var(--dsc-space-xs); }
	.dsc-logo__bm img { max-height: 28px; }
	.dsc-logo__divider { height: 30px; }
	.dsc-section { padding: var(--dsc-space-md) 0; }
	.dsc-section--tight { padding: var(--dsc-space-md) 0; }
	.dsc-container { padding: 0 var(--dsc-space-sm); }
	h1 { font-size: 2rem; }
	h2 { font-size: 1.6rem; }
	.dsc-hero { padding: var(--dsc-space-xl) 0; }
	.dsc-hero__actions .dsc-btn { flex: 1 1 auto; }
	.dsc-btn { width: 100%; }
	.dsc-hero__actions { flex-direction: column; }
	.dsc-hero__actions .dsc-btn { width: 100%; }
	.dsc-cta-row .dsc-btn { width: auto; min-width: 220px; }
	.dsc-color-center .dsc-btn { width: auto; }
	.dsc-split-cta .dsc-btn { width: auto; }
	.dsc-card-grid-section .dsc-card-item .dsc-btn { width: auto; }
	.dsc-paint-recommender{
	    padding: var(--dsc-space-lg) var(--dsc-space-md);
    }
    .dsc-split-cta--full .dsc-split-cta__media {
    aspect-ratio: auto;
}
.dsc-mobile-nav__panel ul{
    padding-left:0;
}

.dsc-mobile-nav__panel .dsc-btn{
     padding: 0.9rem 1.9rem;
}
.dsc-mobile-nav__panel .dsc-btn--primary{
    color: var(--dsc-white);
    margin-bottom:20px;
   
}
.dsc-locations-list {
        padding: var(--dsc-space-md) var(--dsc-space-md);
    }
    
.dsc-location-row {
    margin-bottom: var(--dsc-space-lg);
    padding-bottom: var(--dsc-space-lg);
}   

    .dsc-shop {
        padding: var(--dsc-space-md) 0 var(--dsc-space-lg);
    }
    
    .dsc-location-info {
    padding: var(--dsc-space-md) 0;
}

.aioseo-location-box .col {
    padding: 0;
}

.aioseo-location-box>[class*=col] {
    padding: 0;
}

.aioseo-location>[class*=col] {
    padding: 0;
}

.dsc-location-info__col--details {
    padding: var(--dsc-space-sm);
}

.aioseo-location-box .aioseo-address-details {
    padding-bottom: 15px;
}
}

@media (max-width: 768px){
    .dsc-location-about { padding: var(--dsc-space-lg) var(--dsc-space-sm) 0; }
    .aioseo-location-box {
        display: block;
    }
    .dsc-location-about__photo {
        margin: var(--dsc-space-mg) 0;
    }
}