/**
 * Layout helpers for Elemetal blocks and template parts (loads after vendor site CSS).
 */

/* Let the main shell fill the viewport; block theme wrappers stay out of the way */
.wp-site-blocks {
	padding-left: 0;
	padding-right: 0;
	max-width: none;
	/* Sticky footer layout: footer sits at the bottom when content is short (not position:sticky) */
	min-height: 100vh;
	min-height: 100dvh;
	display: flex;
	flex-direction: column;
}

body.admin-bar .wp-site-blocks {
	min-height: calc(100vh - var(--wp-admin--admin-bar--height, 32px));
	min-height: calc(100dvh - var(--wp-admin--admin-bar--height, 32px));
}

/* Templates without #elemetal-site-root: header, main, footer as siblings under .wp-site-blocks */
.wp-site-blocks > main {
	flex: 1 0 auto;
}

/* Front page / 404: one shell wraps header + main + footer */
.wp-site-blocks > #elemetal-site-root.site-wrapper {
	flex: 1 0 auto;
	display: flex;
	flex-direction: column;
	min-height: 0;
	width: 100%;
}

#elemetal-site-root.site-wrapper > main {
	flex: 1 0 auto;
}

#elemetal-site-root,
.site-wrapper {
	box-sizing: border-box;
	max-width: none;
}

/* Shared section title scale + readable contrast (vendor CSS often forces dark h2 on image bands) */
#elemetal-site-root,
.editor-styles-wrapper {
	--elemetal-content-max-width: 1200px;
	--elemetal-bullion-content-inset: max(
		var(--elemetal-content-pad-x),
		calc((100vw - var(--elemetal-content-max-width)) / 2)
	);
	--elemetal-content-pad-x: clamp(1rem, 4vw, 2rem);
	--elemetal-section-heading-size: clamp(1.5rem, 2.75vw, 2rem);
	--elemetal-section-heading-weight: 600;
	--elemetal-section-heading-line-height: 1.25;
	--elemetal-section-heading-margin-bottom: clamp(1rem, 2.5vh, 1.5rem);
	--elemetal-heading-on-dark: #ffffff;
	--elemetal-body-on-dark: rgba(255, 255, 255, 0.95);
	--elemetal-heading-on-light: #1a1a1a;
	--elemetal-body-on-light: #333333;
	--elemetal-section-sub-size: clamp(1.0625rem, 1.85vw, 1.25rem);
}

/* Shared section shell (block root wrappers) */
.elemetal-section {
	display: block;
	width: 100%;
	box-sizing: border-box;
}

/* Full-bleed sections: avoid constrained layout shrinking band blocks */
#elemetal-site-root .alignfull,
#elemetal-site-root .wp-block-elemetal-hero,
#elemetal-site-root [class^="wp-block-elemetal-"] {
	max-width: none;
}

/*
 * Main column width + gutters. Homepage uses .elemetal-main--home so band blocks and alignfull
 * sections can span edge-to-edge inside #elemetal-site-root.
 */
#elemetal-site-root > main#page.container {
	max-width: 1170px;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	box-sizing: border-box;
	padding-left: 30px;
	padding-right: 30px;
}

#elemetal-site-root > main#page.container.elemetal-main--home {
	max-width: none;
	padding-left: 0;
	padding-right: 0;
}

/* Bullion archive & category: full-bleed hero + band CTAs; inner column matches 1200px */
#elemetal-site-root > main#page.elemetal-main--bullion-archive,
#elemetal-site-root > main#page.elemetal-main--bullion-category,
#elemetal-site-root > main#page.elemetal-main--bullion-single,
#elemetal-site-root > main#page.elemetal-main--industry-single,
#elemetal-site-root > main#page.elemetal-main--refining-single,
#elemetal-site-root > main#page.elemetal-main--knowledge-post,
#elemetal-site-root > main#page.elemetal-main--knowledge-center,
#elemetal-site-root > main#page.elemetal-main--landing-marketing,
#elemetal-site-root > main#page.elemetal-main--landing-omaha {
	max-width: none;
	margin-left: 0;
	margin-right: 0;
	padding-left: 0;
	padding-right: 0;
	width: 100%;
}

#elemetal-site-root .elemetal-bullion-archive__body,
#elemetal-site-root .elemetal-bullion-cat__body {
	display: block;
	max-width: 1300px;
	margin: 0 auto;
	width: 100%;
	padding-left: var(--elemetal-content-pad-x);
	padding-right: var(--elemetal-content-pad-x);
	box-sizing: border-box;
}

article.sections {
	display: block;
}

/* Hero — first fold: full viewport height; background fills section */
.elemetal-hero {
	position: relative;
	min-height: 100vh;
	min-height: 100dvh;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

/*
 * Vendor CSS adds top padding under the header for the first section.
 * Remove that for the hero so the first fold is flush.
 */
main .sections:first-child .elemetal-section:first-child.elemetal-hero,
main#page .sections:first-child .elemetal-section:first-child.elemetal-hero,
#sections > .wp-block-elemetal-hero:first-child .elemetal-hero,
#sections > .alignfull.wp-block-elemetal-hero:first-child .elemetal-hero {
	padding-top: 0 !important;
}

/* Site header: main bar + N Fusion live prices strip (see parts/header.html). */
:root {
	--elemetal-header-nav-h: 4.75rem;
	--elemetal-nfusion-ticker-band: 2.5rem;
	--elemetal-header-offset: calc(var(--elemetal-header-nav-h) + var(--elemetal-nfusion-ticker-band));
	--elemetal-spot-ticker-band: 3.35rem;
}

body.admin-bar {
	--elemetal-header-offset: calc(
		var(--elemetal-header-nav-h) + var(--elemetal-nfusion-ticker-band) + var(--wp-admin--admin-bar--height, 32px)
	);
}

/* Non-home: keep inside hero stack */
.elemetal-hero .elemetal-spot-ticker {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 3;
	pointer-events: none;
}

/* Front-page hero: bar is fixed so it is not covered by the site header (class set in render.php) */
#elemetal-site-root .elemetal-hero .elemetal-spot-ticker--below-header {
	position: fixed;
	top: var(--elemetal-header-offset);
	left: 0;
	right: 0;
	width: 100%;
	z-index: 100120;
	pointer-events: none;
}

.elemetal-hero .elemetal-spot-ticker__inner {
	pointer-events: auto;
	max-width: none;
	margin: 0;
	padding: 0.4rem clamp(0.75rem, 3vw, 1.5rem);
	background: #ffffff;
	border-bottom: 1px solid rgba(15, 35, 55, 0.12);
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

/* Match elemetal.com: navy label, blue-grey price, red/green change */
.elemetal-spot-ticker__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: clamp(0.5rem, 2vw, 1.5rem) clamp(1rem, 3vw, 2.5rem);
	list-style: none;
	margin: 0;
	padding: 0;
}

.elemetal-spot-ticker__item {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: center;
	gap: 0.35rem 0.5rem;
	text-align: left;
}

.elemetal-spot-ticker__label {
	font-size: clamp(0.7rem, 1.1vw, 0.8125rem);
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #0f2338;
	white-space: nowrap;
}

.elemetal-spot-ticker__value-group {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35rem 0.5rem;
}

.elemetal-spot-ticker__price {
	font-size: clamp(0.8rem, 1.2vw, 0.9375rem);
	font-weight: 500;
	color: #5a6d82;
	font-variant-numeric: tabular-nums;
}

.elemetal-spot-ticker__change {
	display: inline-flex;
	align-items: center;
	gap: 0.2rem;
	font-size: clamp(0.75rem, 1.1vw, 0.875rem);
	font-weight: 500;
	font-variant-numeric: tabular-nums;
	white-space: nowrap;
}

.elemetal-spot-ticker__change--down {
	color: #a53e45;
}

.elemetal-spot-ticker__change--up {
	color: #1f7a4a;
}

/* Filled triangle — down */
.elemetal-spot-ticker__change--down .elemetal-spot-ticker__arrow {
	width: 0;
	height: 0;
	margin-right: 0.1rem;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 6px solid #a53e45;
}

/* Up */
.elemetal-spot-ticker__change--up .elemetal-spot-ticker__arrow {
	width: 0;
	height: 0;
	margin-right: 0.1rem;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-bottom: 6px solid #1f7a4a;
}

/* Inner pages: ticker sits inside hero only */
.elemetal-hero:has(.elemetal-spot-ticker:not(.elemetal-spot-ticker--below-header))
	.elemetal-hero__frame {
	padding-top: clamp(3.25rem, 7vh, 5rem);
}

/* Static front: clear fixed site header + spot bar (class from hero render.php) */
#elemetal-site-root .elemetal-hero:has(.elemetal-spot-ticker--below-header) .elemetal-hero__frame {
	padding-top: calc(
		var(--elemetal-header-offset) + var(--elemetal-spot-ticker-band) + 0.75rem
	) !important;
}

/* N Fusion ticker — iframe: full live widget in cross-origin document (widget.nfusionsolutions.com) */
#elemetal-site-root .elemetal-nfusion-ticker,
:is(#elemetal-site-root) .elemetal-nfusion-ticker {
	width: 100%;
	box-sizing: border-box;
	background: #ffffff;
	border-top: 1px solid rgba(10, 95, 102, 0.12);
	display: block;
	visibility: visible;
}

#elemetal-site-root .elemetal-nfusion-ticker__inner,
:is(#elemetal-site-root) .elemetal-nfusion-ticker__inner {
	display: block;
	width: 100%;
	max-width: none;
	margin: 0;
	/* Full-width band under the header, same side padding as the rest of the shell */
	padding: 0.25rem var(--elemetal-content-pad-x, clamp(1rem, 4vw, 2rem));
	min-height: var(--elemetal-nfusion-ticker-band, 2.5rem);
	box-sizing: border-box;
}

#elemetal-site-root .elemetal-nfusion-ticker__inner--iframe,
:is(#elemetal-site-root) .elemetal-nfusion-ticker__inner--iframe {
	display: flex;
	align-items: center;
	text-align: left;
}

#elemetal-site-root .elemetal-nfusion-ticker__iframe,
:is(#elemetal-site-root) .elemetal-nfusion-ticker__iframe {
	width: 100% !important;
	max-width: 100%;
	height: 32px;
	box-sizing: border-box;
	display: block;
	border: 0;
	color-scheme: light;
	/* Desktop one-line bar; mobile height overridden below */
}

/* Spacer only: hostname not in widget frame-ancestors — keeps layout band without loading widget.nfusionsolutions.com */
#elemetal-site-root .elemetal-nfusion-ticker--csp-skip,
:is(#elemetal-site-root) .elemetal-nfusion-ticker--csp-skip {
	background: rgba(255, 255, 255, 0.92);
	border-top: 1px solid rgba(10, 95, 102, 0.08);
}

#elemetal-site-root .elemetal-nfusion-ticker__inner--csp-skip,
:is(#elemetal-site-root) .elemetal-nfusion-ticker__inner--csp-skip {
	min-height: var(--elemetal-nfusion-ticker-band, 2.5rem);
	padding-block: 0.125rem;
}

/* Placeholder ticker strip only when ELEMETAL_NFUSION_TICKER_PLACEHOLDER is true */
#elemetal-site-root .elemetal-nfusion-ticker--placeholder,
:is(#elemetal-site-root) .elemetal-nfusion-ticker--placeholder {
	--em-tk-teal: #0a5f66;
	--em-tk-muted: #5a6a6a;
	--em-tk-price: #2a7a82;
}

#elemetal-site-root .elemetal-nfusion-ticker__inner--placeholder,
:is(#elemetal-site-root) .elemetal-nfusion-ticker__inner--placeholder {
	padding: 0.35rem var(--elemetal-content-pad-x, clamp(1rem, 4vw, 2rem)) 0.5rem;
	min-height: auto;
}

#elemetal-site-root .elemetal-nfusion-ticker__placeholder-note,
:is(#elemetal-site-root) .elemetal-nfusion-ticker__placeholder-note {
	margin: 0 0 0.35rem;
	font-size: clamp(0.7rem, 1.1vw, 0.8rem);
	line-height: 1.3;
	color: var(--em-tk-muted);
}

#elemetal-site-root .elemetal-nfusion-ticker__placeholder-row,
:is(#elemetal-site-root) .elemetal-nfusion-ticker__placeholder-row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 9.5rem), 1fr));
	align-items: center;
	justify-items: center;
	gap: 0.5rem clamp(0.75rem, 2vw, 1.5rem);
	width: 100%;
}

#elemetal-site-root .elemetal-nfusion-ticker__ph-item,
:is(#elemetal-site-root) .elemetal-nfusion-ticker__ph-item {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: center;
	gap: 0.35rem 0.5rem;
	font-size: clamp(0.75rem, 1.1vw, 0.88rem);
	white-space: nowrap;
}

#elemetal-site-root .elemetal-nfusion-ticker__ph-label,
:is(#elemetal-site-root) .elemetal-nfusion-ticker__ph-label {
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--em-tk-teal);
}

#elemetal-site-root .elemetal-nfusion-ticker__ph-value,
:is(#elemetal-site-root) .elemetal-nfusion-ticker__ph-value {
	font-variant-numeric: tabular-nums;
	color: var(--em-tk-price);
	font-weight: 500;
}

#elemetal-site-root .elemetal-nfusion-ticker__ph-change,
:is(#elemetal-site-root) .elemetal-nfusion-ticker__ph-change {
	font-variant-numeric: tabular-nums;
	color: var(--em-tk-muted);
	font-weight: 500;
}

#elemetal-site-root .elemetal-nfusion-ticker__ph-change--up,
:is(#elemetal-site-root) .elemetal-nfusion-ticker__ph-change--up {
	color: #1a7a4a;
}

#elemetal-site-root .elemetal-nfusion-ticker__ph-change--down,
:is(#elemetal-site-root) .elemetal-nfusion-ticker__ph-change--down {
	color: #a63d3d;
}

#elemetal-site-root .elemetal-nfusion-ticker__ph-change--flat,
:is(#elemetal-site-root) .elemetal-nfusion-ticker__ph-change--flat {
	color: var(--em-tk-muted);
}

#elemetal-site-root .elemetal-nfusion-ticker__ph-change--up::before,
:is(#elemetal-site-root) .elemetal-nfusion-ticker__ph-change--up::before {
	content: '\25b2';
	margin-right: 0.15em;
	font-size: 0.82em;
	vertical-align: 0.05em;
}

#elemetal-site-root .elemetal-nfusion-ticker__ph-change--down::before,
:is(#elemetal-site-root) .elemetal-nfusion-ticker__ph-change--down::before {
	content: '\25bc';
	margin-right: 0.15em;
	font-size: 0.82em;
	vertical-align: 0.05em;
}

@media screen and (max-width: 799px) {
	/*
	 * Live iframe (mobile): 80px tall embed matches nFusion mobile ticker markup; band tracks iframe + inner padding.
	 */
	#elemetal-site-root .elemetal-nfusion-ticker[data-elemetal-nfusion-delivery='iframe']
		.elemetal-nfusion-ticker__inner--iframe,
	:is(#elemetal-site-root)
		.elemetal-nfusion-ticker[data-elemetal-nfusion-delivery='iframe']
		.elemetal-nfusion-ticker__inner--iframe {
		padding-top: 0.45rem;
		padding-bottom: 0.55rem;
		min-height: calc(80px + 1rem);
		align-items: stretch;
	}

	#elemetal-site-root .elemetal-nfusion-ticker[data-elemetal-nfusion-delivery='iframe'] .elemetal-nfusion-ticker__iframe,
	:is(#elemetal-site-root)
		.elemetal-nfusion-ticker[data-elemetal-nfusion-delivery='iframe']
		.elemetal-nfusion-ticker__iframe {
		height: 80px !important;
		min-height: 80px !important;
		max-height: 100%;
		max-width: 100%;
	}

	:root:has(#elemetal-site-root .elemetal-nfusion-ticker[data-elemetal-nfusion-delivery='iframe']) {
		--elemetal-nfusion-ticker-band: calc(80px + 1.05rem);
	}

	/* Placeholder strip (wp-config illustration): four columns, stacked label / price / change */
	#elemetal-site-root .elemetal-nfusion-ticker--placeholder .elemetal-nfusion-ticker__inner,
	:is(#elemetal-site-root) .elemetal-nfusion-ticker--placeholder .elemetal-nfusion-ticker__inner {
		padding-top: 0.45rem;
		padding-bottom: 0.55rem;
		min-height: 5rem;
	}

	#elemetal-site-root .elemetal-nfusion-ticker__placeholder-row,
	:is(#elemetal-site-root) .elemetal-nfusion-ticker__placeholder-row {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 0.35rem 0.2rem;
	}

	#elemetal-site-root .elemetal-nfusion-ticker__ph-item,
	:is(#elemetal-site-root) .elemetal-nfusion-ticker__ph-item {
		flex-direction: column;
		flex-wrap: nowrap;
		align-items: center;
		justify-content: flex-start;
		gap: 0.12rem;
		white-space: normal;
		text-align: center;
		font-size: clamp(0.62rem, 2.65vw, 0.76rem);
	}

	#elemetal-site-root .elemetal-nfusion-ticker__ph-label,
	:is(#elemetal-site-root) .elemetal-nfusion-ticker__ph-label {
		color: #1e5a7a;
		letter-spacing: 0.04em;
	}

	#elemetal-site-root .elemetal-nfusion-ticker__ph-value,
	:is(#elemetal-site-root) .elemetal-nfusion-ticker__ph-value {
		color: #1e5a7a;
		font-weight: 600;
	}

	html:has(.elemetal-nfusion-ticker--placeholder) {
		--elemetal-nfusion-ticker-band: 5.75rem;
	}
}

/* Ticker strip is taller in placeholder mode (note + row) */
html:has(.elemetal-nfusion-ticker--placeholder) {
	--elemetal-nfusion-ticker-band: 4.25rem;
}

/* Knowledge Center / Hub — post grid (template page-knowledge-center) */
#elemetal-site-root main.elemetal-main--knowledge-center {
	padding-top: 2rem;
	padding-bottom: 2.5rem;
	background: #ffffff;
}

#elemetal-site-root main.elemetal-main--knowledge-center .sections,
:is(#elemetal-site-root) main.elemetal-main--knowledge-center .sections {
	display: block;
	width: 100%;
	max-width: none;
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--elemetal-content-pad-x, clamp(1rem, 4vw, 2rem));
	padding-right: var(--elemetal-content-pad-x, clamp(1rem, 4vw, 2rem));
	box-sizing: border-box;
}

#elemetal-site-root main.elemetal-main--knowledge-center .elemetal-knowledge-center__page-blocks,
#elemetal-site-root main.elemetal-main--knowledge-center .elemetal-knowledge-center__query-wrap,
:is(#elemetal-site-root) main.elemetal-main--knowledge-center .elemetal-knowledge-center__page-blocks,
:is(#elemetal-site-root) main.elemetal-main--knowledge-center .elemetal-knowledge-center__query-wrap {
	max-width: none;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}

/* Template uses constrained layout (contentSize 1200px) — span full main width on the hub page. */
#elemetal-site-root main.elemetal-main--knowledge-center .elemetal-knowledge-center__page-blocks.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)),
:is(#elemetal-site-root) main.elemetal-main--knowledge-center .elemetal-knowledge-center__page-blocks.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)),
#elemetal-site-root main.elemetal-main--knowledge-center .elemetal-knowledge-center__query-wrap.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)),
:is(#elemetal-site-root) main.elemetal-main--knowledge-center .elemetal-knowledge-center__query-wrap.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
	max-width: none;
	width: 100%;
	margin-left: 0;
	margin-right: 0;
}

#elemetal-site-root .elemetal-knowledge-center__intro {
	margin-bottom: 1.75rem;
}

#elemetal-site-root .elemetal-knowledge-center__intro .wp-block-post-title,
:is(#elemetal-site-root) .elemetal-knowledge-center__intro .wp-block-post-title {
	margin: 0 0 0.75rem;
	font-size: clamp(1.75rem, 2.5vw, 2.25rem);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

#elemetal-site-root .elemetal-knowledge-center__query-wrap .wp-block-post-template,
:is(#elemetal-site-root) .elemetal-knowledge-center__query-wrap .wp-block-post-template {
	gap: 1.5rem clamp(1rem, 2.5vw, 1.75rem);
}

@media (max-width: 781px) {
	#elemetal-site-root .elemetal-knowledge-center__query-wrap .wp-block-post-template.is-layout-grid,
	:is(#elemetal-site-root) .elemetal-knowledge-center__query-wrap .wp-block-post-template.is-layout-grid {
		grid-template-columns: 1fr !important;
	}
}

#elemetal-site-root .elemetal-kh-card,
:is(#elemetal-site-root) .elemetal-kh-card {
	background: #ffffff;
	height: 100%;
	display: flex;
	flex-direction: column;
	border-color: #e0e0e0 !important;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
	overflow: hidden;
}

#elemetal-site-root .elemetal-kh-card__image a,
#elemetal-site-root .elemetal-kh-card__image,
:is(#elemetal-site-root) .elemetal-kh-card__image a,
:is(#elemetal-site-root) .elemetal-kh-card__image {
	display: block;
	width: 100%;
	overflow: hidden;
	aspect-ratio: 4 / 3;
}

#elemetal-site-root .elemetal-kh-card__image img,
:is(#elemetal-site-root) .elemetal-kh-card__image img {
	width: 100%;
	height: 100% !important;
	object-fit: cover;
}

#elemetal-site-root .elemetal-kh-card__body,
:is(#elemetal-site-root) .elemetal-kh-card__body {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	gap: 0.4rem 0.5rem;
}

#elemetal-site-root .elemetal-kh-card__category,
:is(#elemetal-site-root) .elemetal-kh-card__category,
#elemetal-site-root .elemetal-kh-card__category a,
:is(#elemetal-site-root) .elemetal-kh-card__category a {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #6a6a6a;
	text-decoration: none;
}

#elemetal-site-root .elemetal-kh-card__category a:hover,
:is(#elemetal-site-root) .elemetal-kh-card__category a:hover {
	text-decoration: underline;
}

#elemetal-site-root .elemetal-kh-card__body .wp-block-post-title,
#elemetal-site-root .elemetal-kh-card__title.wp-block-post-title,
:is(#elemetal-site-root) .elemetal-kh-card__body .wp-block-post-title,
:is(#elemetal-site-root) .elemetal-kh-card__title.wp-block-post-title {
	margin: 0;
	font-size: clamp(1rem, 1.2vw, 1.1rem);
	font-weight: 700;
	line-height: 1.3;
}

#elemetal-site-root .elemetal-kh-card__excerpt,
#elemetal-site-root .elemetal-kh-card__body .wp-block-post-excerpt,
:is(#elemetal-site-root) .elemetal-kh-card__excerpt {
	margin: 0;
	font-size: 0.9rem;
	color: #404040;
	flex: 1 1 auto;
}

#elemetal-site-root .elemetal-kh-card__excerpt .wp-block-post-excerpt__excerpt,
:is(#elemetal-site-root) .elemetal-kh-card__excerpt .wp-block-post-excerpt__excerpt {
	margin: 0;
}

#elemetal-site-root .elemetal-kh-card__excerpt .wp-block-post-excerpt__excerpt p,
:is(#elemetal-site-root) .elemetal-kh-card__excerpt .wp-block-post-excerpt__excerpt p {
	margin: 0 0 0.75rem;
}

#elemetal-site-root .elemetal-kh-card__excerpt .wp-block-post-excerpt__excerpt p:last-child,
:is(#elemetal-site-root) .elemetal-kh-card__excerpt .wp-block-post-excerpt__excerpt p:last-child {
	margin-bottom: 0;
}

#elemetal-site-root a.elemetal-kh-card__read,
#elemetal-site-root .elemetal-kh-card__read a,
:is(#elemetal-site-root) a.elemetal-kh-card__read {
	font-size: 0.9rem;
	font-weight: 600;
	color: #0a5f66;
	text-decoration: none;
	margin-top: 0.25rem;
}

#elemetal-site-root a.elemetal-kh-card__read:hover,
#elemetal-site-root .elemetal-kh-card__read a:hover,
:is(#elemetal-site-root) a.elemetal-kh-card__read:hover {
	text-decoration: underline;
}

#elemetal-site-root .elemetal-knowledge-center__query-wrap .wp-block-query-pagination,
:is(#elemetal-site-root) .elemetal-knowledge-center__query-wrap .wp-block-query-pagination {
	margin-top: 2rem;
	gap: 0.5rem 1rem;
}

/* Next-only pagination (default): right-align and hide prev + numbers */
body.elemetal-kc-pag--next:not(.elemetal-kc-pag--full) #elemetal-site-root .elemetal-knowledge-center__query-wrap .wp-block-query-pagination-previous,
body.elemetal-kc-pag--next:not(.elemetal-kc-pag--full) #elemetal-site-root .elemetal-knowledge-center__query-wrap .wp-block-query-pagination-numbers {
	display: none !important;
}

body.elemetal-kc-pag--next:not(.elemetal-kc-pag--full) #elemetal-site-root .elemetal-knowledge-center__query-wrap .wp-block-query-pagination,
:is(body.elemetal-kc-pag--next:not(.elemetal-kc-pag--full)) #elemetal-site-root .elemetal-knowledge-center__query-wrap .wp-block-query-pagination {
	justify-content: flex-end;
}

/* Full pagination: centered row */
body.elemetal-kc-pag--full #elemetal-site-root .elemetal-knowledge-center__query-wrap .wp-block-query-pagination,
:is(body.elemetal-kc-pag--full) #elemetal-site-root .elemetal-knowledge-center__query-wrap .wp-block-query-pagination {
	justify-content: center;
}

/* Knowledge Center — single post (template: single-post) */
#elemetal-site-root main.elemetal-main--knowledge-post {
	padding-top: 2rem;
	padding-bottom: 3rem;
	background: #ffffff;
}

#elemetal-site-root main.elemetal-main--knowledge-post .elemetal-kc-single {
	display: block;
	width: 100%;
	max-width: 50%;
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--elemetal-content-pad-x, clamp(1rem, 4vw, 2rem));
	padding-right: var(--elemetal-content-pad-x, clamp(1rem, 4vw, 2rem));
	box-sizing: border-box;
	min-width: 0;
}

body.elemetal-knowledge-post #elemetal-site-root main.elemetal-main--knowledge-post {
	margin-left: auto;
	margin-right: auto;
}

#elemetal-site-root main.elemetal-main--knowledge-post .elemetal-kc-single__inner,
#elemetal-site-root main.elemetal-main--knowledge-post .elemetal-kc-entry-wrap,
#elemetal-site-root main.elemetal-main--knowledge-post .elemetal-kc-post-nav-wrap,
:is(#elemetal-site-root) main.elemetal-main--knowledge-post .elemetal-kc-single__inner,
:is(#elemetal-site-root) main.elemetal-main--knowledge-post .elemetal-kc-entry-wrap,
:is(#elemetal-site-root) main.elemetal-main--knowledge-post .elemetal-kc-post-nav-wrap {
	max-width: var(--elemetal-content-max-width, 1200px);
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}

#elemetal-site-root .elemetal-kc-single.elemetal-kc-single,
:is(#elemetal-site-root) .elemetal-kc-single {
	max-width: 100%;
}

#elemetal-site-root .elemetal-kc-single__inner .elemetal-kc-single__title,
:is(#elemetal-site-root) .elemetal-kc-single__title {
	margin: 0 0 0.5rem;
	font-family: "DIN Pro", sans-serif;
	font-size: clamp(1.75rem, 2.8vw, 2.8rem);
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: 0;
	color: #000;
}

#elemetal-site-root .elemetal-kc-byline,
:is(#elemetal-site-root) .elemetal-kc-byline {
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 0.95rem;
	font-weight: 400;
	line-height: 1.5;
	color: #666666;
}

#elemetal-site-root .elemetal-kc-byline .wp-block-post-author,
:is(#elemetal-site-root) .elemetal-kc-byline .wp-block-post-author {
	border: none;
	padding: 0;
	margin: 0;
}

#elemetal-site-root .elemetal-kc-byline .wp-block-post-author__name,
:is(#elemetal-site-root) .elemetal-kc-byline .wp-block-post-author__name {
	font-weight: 400;
	color: #666666;
}

#elemetal-site-root .elemetal-kc-byline .wp-block-post-author__content,
:is(#elemetal-site-root) .elemetal-kc-byline .wp-block-post-author__content {
	font-size: inherit;
}

#elemetal-site-root .elemetal-kc-featured,
:is(#elemetal-site-root) .elemetal-kc-featured {
	margin-top: 0.5rem !important;
	margin-bottom: 1.75rem !important;
}

#elemetal-site-root .elemetal-kc-featured img,
:is(#elemetal-site-root) .elemetal-kc-featured img {
	width: 100%;
	height: auto;
	display: block;
	vertical-align: middle;
}

#elemetal-site-root .elemetal-kc-entry-wrap,
:is(#elemetal-site-root) .elemetal-kc-entry-wrap {
	padding-top: 0;
}

#elemetal-site-root .elemetal-kc-entry__content,
:is(#elemetal-site-root) .elemetal-kc-entry__content {
	font-family: "DIN Light", sans-serif;
	font-size: 1.1rem;
	line-height: 1.8;
	color: #000;
	max-width: 100%;
	min-width: 0;
	overflow-wrap: break-word;
}

/* Editorial byline (live Squarespace sqsrte-large: DIN Light, larger than body). */
#elemetal-site-root .elemetal-kc-entry__content .elemetal-kc-entry__byline,
:is(#elemetal-site-root) .elemetal-kc-entry__content .elemetal-kc-entry__byline,
#elemetal-site-root .elemetal-kc-entry__content .wp-block-paragraph.elemetal-kc-entry__byline,
:is(#elemetal-site-root) .elemetal-kc-entry__content .wp-block-paragraph.elemetal-kc-entry__byline {
	margin: 0 0 1.25rem;
	font-family: "DIN Light", sans-serif;
	font-size: clamp(1.05rem, 1.2vw, 1.2rem);
	font-weight: 400;
	line-height: 1.8;
	color: #000;
}

/* FAQ section title — live blog h3 after section rule (DIN Pro, black, 1.8rem scale). */
#elemetal-site-root .elemetal-kc-entry__content .elemetal-kc-entry__faq-heading,
:is(#elemetal-site-root) .elemetal-kc-entry__content .elemetal-kc-entry__faq-heading,
#elemetal-site-root .elemetal-kc-entry__content h3.elemetal-kc-entry__faq-heading,
:is(#elemetal-site-root) .elemetal-kc-entry__content h3.elemetal-kc-entry__faq-heading {
	margin: 1.0625rem 0 0.75rem;
	font-family: "DIN Pro", sans-serif;
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: 0;
	color: #000;
}

#elemetal-site-root .elemetal-kc-entry__content hr + .elemetal-kc-entry__faq-heading,
:is(#elemetal-site-root) .elemetal-kc-entry__content hr + .elemetal-kc-entry__faq-heading,
#elemetal-site-root .elemetal-kc-entry__content hr + h3.elemetal-kc-entry__faq-heading,
:is(#elemetal-site-root) .elemetal-kc-entry__content hr + h3.elemetal-kc-entry__faq-heading {
	margin-top: 0;
}

/* FAQ question labels — live sqsrte-large + accent (theme teal). */
#elemetal-site-root .elemetal-kc-entry__content .elemetal-kc-entry__faq-q,
:is(#elemetal-site-root) .elemetal-kc-entry__content .elemetal-kc-entry__faq-q,
#elemetal-site-root .elemetal-kc-entry__content .wp-block-paragraph.elemetal-kc-entry__faq-q,
:is(#elemetal-site-root) .elemetal-kc-entry__content .wp-block-paragraph.elemetal-kc-entry__faq-q {
	margin: 1.0625rem 0 0;
	font-family: "DIN Light", sans-serif;
	font-size: clamp(1.05rem, 1.2vw, 1.2rem);
	font-weight: 400;
	line-height: 1.8;
	color: #4cc2bb;
}

#elemetal-site-root .elemetal-kc-entry__content .elemetal-kc-entry__faq-q:first-of-type,
:is(#elemetal-site-root) .elemetal-kc-entry__content .elemetal-kc-entry__faq-q:first-of-type {
	margin-top: 0.35rem;
}

#elemetal-site-root .elemetal-kc-entry__content .elemetal-kc-entry__faq-q strong,
:is(#elemetal-site-root) .elemetal-kc-entry__content .elemetal-kc-entry__faq-q strong {
	font-weight: 500;
	color: inherit;
}

/* In-content CTA buttons (live Squarespace sqs-block-button primary). */
#elemetal-site-root .elemetal-kc-entry__content .elemetal-kc-entry__cta,
:is(#elemetal-site-root) .elemetal-kc-entry__content .elemetal-kc-entry__cta,
#elemetal-site-root .elemetal-kc-entry__content .wp-block-paragraph.elemetal-kc-entry__cta,
:is(#elemetal-site-root) .elemetal-kc-entry__content .wp-block-paragraph.elemetal-kc-entry__cta {
	margin: 1.0625rem 0;
	text-align: center;
}

#elemetal-site-root .elemetal-kc-entry__content .elemetal-kc-entry__cta a,
:is(#elemetal-site-root) .elemetal-kc-entry__content .elemetal-kc-entry__cta a,
#elemetal-site-root .elemetal-kc-entry__content a.elemetal-button.elemetal-button--primary,
:is(#elemetal-site-root) .elemetal-kc-entry__content a.elemetal-button.elemetal-button--primary {
	color: var(--elemetal-btn-color, #fff) !important;
	text-decoration: none !important;
}

#elemetal-site-root .elemetal-kc-entry__content :is(figure, .wp-block-image),
:is(#elemetal-site-root) .elemetal-kc-entry__content :is(figure, .wp-block-image) {
	max-width: 100%;
	margin: 1.5rem 0;
}

#elemetal-site-root .elemetal-kc-entry__content :is(figure, .wp-block-image) img,
:is(#elemetal-site-root) .elemetal-kc-entry__content img {
	display: block;
	max-width: 100%;
	height: auto;
	width: auto;
}

#elemetal-site-root .elemetal-kc-entry__content .elemetal-kc-infogram-embed,
:is(#elemetal-site-root) .elemetal-kc-entry__content .elemetal-kc-infogram-embed {
	position: relative;
	width: 100%;
	max-width: 100%;
	height: 0;
	margin: 1.5rem 0;
	padding-top: var(--elemetal-kc-embed-aspect, 100%);
	overflow: hidden;
}

#elemetal-site-root .elemetal-kc-entry__content .elemetal-kc-infogram-embed iframe,
:is(#elemetal-site-root) .elemetal-kc-entry__content .elemetal-kc-infogram-embed iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

#elemetal-site-root .elemetal-kc-entry__content .wp-block-table,
:is(#elemetal-site-root) .elemetal-kc-entry__content .wp-block-table,
#elemetal-site-root .elemetal-kc-entry__content table,
:is(#elemetal-site-root) .elemetal-kc-entry__content table {
	width: 100%;
	margin: 1.5rem 0;
	border-collapse: collapse;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}

#elemetal-site-root .elemetal-kc-entry__content .wp-block-table th,
:is(#elemetal-site-root) .elemetal-kc-entry__content .wp-block-table th,
#elemetal-site-root .elemetal-kc-entry__content table th,
:is(#elemetal-site-root) .elemetal-kc-entry__content table th {
	text-align: left;
	padding: 0.75rem 0.875rem;
	font-size: 0.75rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-weight: 600;
	border-bottom: 1px solid #d8d8d8;
	color: #666;
}

#elemetal-site-root .elemetal-kc-entry__content .wp-block-table td,
:is(#elemetal-site-root) .elemetal-kc-entry__content .wp-block-table td,
#elemetal-site-root .elemetal-kc-entry__content table td,
:is(#elemetal-site-root) .elemetal-kc-entry__content table td {
	padding: 0.875rem;
	border-bottom: 1px solid #e6e6e6;
	vertical-align: top;
}

/* Section dividers — live Squarespace horizontal rules are full content width (#bbb, 1px). */
#elemetal-site-root .elemetal-kc-entry__content :is(.wp-block-separator, hr),
:is(#elemetal-site-root) .elemetal-kc-entry__content :is(.wp-block-separator, hr),
#elemetal-site-root .elemetal-kc-entry__content .wp-block-separator.has-alpha-channel-opacity,
:is(#elemetal-site-root) .elemetal-kc-entry__content .wp-block-separator.has-alpha-channel-opacity {
	display: block;
	width: 100%;
	max-width: 100%;
	height: 1px;
	margin: 2.25rem 0;
	padding: 0;
	border: none;
	border-top: none;
	border-bottom: none;
	background-color: #bbb;
	opacity: 1;
	color: #bbb;
}

#elemetal-site-root .elemetal-kc-entry__content > .wp-block-paragraph:first-child,
:is(#elemetal-site-root) .elemetal-kc-entry__content > p:first-child,
#elemetal-site-root .elemetal-kc-entry__content p,
:is(#elemetal-site-root) .elemetal-kc-entry__content p {
	margin-top: 0;
	margin-bottom: 1.25rem;
}

#elemetal-site-root .elemetal-kc-entry__content p:last-child,
:is(#elemetal-site-root) .elemetal-kc-entry__content p:last-child {
	margin-bottom: 0;
}

#elemetal-site-root .elemetal-kc-entry__content h2,
#elemetal-site-root .elemetal-kc-entry__content h3,
:is(#elemetal-site-root) .elemetal-kc-entry__content h2,
:is(#elemetal-site-root) .elemetal-kc-entry__content h3 {
	font-family: "DIN Pro", sans-serif;
	color: #000;
	margin-top: 2rem;
	margin-bottom: 1rem;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: 0;
}

#elemetal-site-root .elemetal-kc-entry__content h2,
:is(#elemetal-site-root) .elemetal-kc-entry__content h2 {
	font-size: clamp(1.5rem, 2.8vw, 2.8rem);
}

#elemetal-site-root .elemetal-kc-entry__content h3,
:is(#elemetal-site-root) .elemetal-kc-entry__content h3 {
	font-size: clamp(1.35rem, 1.8vw, 1.8rem);
}

#elemetal-site-root .elemetal-kc-entry__content ul,
#elemetal-site-root .elemetal-kc-entry__content ol,
:is(#elemetal-site-root) .elemetal-kc-entry__content ul,
:is(#elemetal-site-root) .elemetal-kc-entry__content ol {
	margin: 1rem 0 1.25rem 1.25rem;
	padding-left: 1rem;
}

#elemetal-site-root .elemetal-kc-entry__content a,
:is(#elemetal-site-root) .elemetal-kc-entry__content a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 0.12em;
}

#elemetal-site-root .elemetal-kc-entry__content a:hover,
:is(#elemetal-site-root) .elemetal-kc-entry__content a:hover,
#elemetal-site-root .elemetal-kc-entry__content a:focus-visible,
:is(#elemetal-site-root) .elemetal-kc-entry__content a:focus-visible {
	color: inherit;
}

#elemetal-site-root .elemetal-kc-post-nav-wrap,
:is(#elemetal-site-root) .elemetal-kc-post-nav-wrap {
	width: 100%;
}

#elemetal-site-root .elemetal-kc-post-nav,
:is(#elemetal-site-root) .elemetal-kc-post-nav {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	max-width: 1200px;
	margin-top: 0;
	gap: 2rem;
}

#elemetal-site-root .elemetal-kc-post-nav .wp-block-post-navigation-link,
:is(#elemetal-site-root) .elemetal-kc-post-nav .wp-block-post-navigation-link {
	flex: 0 1 50%;
	max-width: 50%;
	min-width: 0;
	margin: 0;
}

#elemetal-site-root .elemetal-kc-post-nav .elemetal-kc-nav-prev,
:is(#elemetal-site-root) .elemetal-kc-post-nav .elemetal-kc-nav-prev {
	margin-right: auto;
	text-align: left;
}

#elemetal-site-root .elemetal-kc-post-nav .elemetal-kc-nav-next,
:is(#elemetal-site-root) .elemetal-kc-post-nav .elemetal-kc-nav-next {
	margin-left: auto;
	text-align: right;
}

#elemetal-site-root .elemetal-kc-post-nav .wp-block-post-navigation-link a,
:is(#elemetal-site-root) .elemetal-kc-post-nav .wp-block-post-navigation-link a {
	display: inline-flex;
	align-items: center;
	max-width: 100%;
	font-family: "DIN Light", sans-serif;
	font-weight: 500;
	font-size: 1.5rem;
	line-height: 1.3;
	color: #000;
	text-decoration: none;
}

#elemetal-site-root .elemetal-kc-post-nav .wp-block-post-navigation-link a:hover,
:is(#elemetal-site-root) .elemetal-kc-post-nav .wp-block-post-navigation-link a:hover,
#elemetal-site-root .elemetal-kc-post-nav .wp-block-post-navigation-link a:focus-visible,
:is(#elemetal-site-root) .elemetal-kc-post-nav .wp-block-post-navigation-link a:focus-visible {
	color: #000;
	text-decoration: none;
}

#elemetal-site-root .elemetal-kc-post-nav .elemetal-kc-nav-prev a,
:is(#elemetal-site-root) .elemetal-kc-post-nav .elemetal-kc-nav-prev a {
	text-align: left;
}

#elemetal-site-root .elemetal-kc-post-nav .elemetal-kc-nav-next a,
:is(#elemetal-site-root) .elemetal-kc-post-nav .elemetal-kc-nav-next a {
	margin-left: auto;
	text-align: right;
}

#elemetal-site-root .elemetal-kc-nav-prev a::before,
#elemetal-site-root .elemetal-kc-nav-next a::after,
:is(#elemetal-site-root) .elemetal-kc-nav-prev a::before,
:is(#elemetal-site-root) .elemetal-kc-nav-next a::after {
	content: "";
	flex: 0 0 auto;
	width: 18px;
	height: 32px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

#elemetal-site-root .elemetal-kc-nav-prev a::before,
:is(#elemetal-site-root) .elemetal-kc-nav-prev a::before {
	margin-right: 1.5625rem;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 9 16'%3E%3Cpolyline fill='none' stroke='%23000' stroke-miterlimit='10' points='7.3,14.7 2.5,8 7.3,1.2'/%3E%3C/svg%3E");
}

#elemetal-site-root .elemetal-kc-nav-next a::after,
:is(#elemetal-site-root) .elemetal-kc-nav-next a::after {
	margin-left: 1.5625rem;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 9 16'%3E%3Cpolyline fill='none' stroke='%23000' stroke-miterlimit='10' points='1.6,1.2 6.5,7.9 1.6,14.7'/%3E%3C/svg%3E");
}

@media (max-width: 767px) {
	#elemetal-site-root .elemetal-kc-post-nav,
	:is(#elemetal-site-root) .elemetal-kc-post-nav {
		flex-direction: column;
		align-items: stretch;
		gap: 1.25rem;
	}

	#elemetal-site-root .elemetal-kc-post-nav .wp-block-post-navigation-link,
	:is(#elemetal-site-root) .elemetal-kc-post-nav .wp-block-post-navigation-link {
		flex: 1 1 auto;
		max-width: 100%;
	}

	#elemetal-site-root .elemetal-kc-post-nav .elemetal-kc-nav-next,
	:is(#elemetal-site-root) .elemetal-kc-post-nav .elemetal-kc-nav-next {
		margin-left: 0;
		text-align: left;
	}

	#elemetal-site-root .elemetal-kc-post-nav .elemetal-kc-nav-next a,
	:is(#elemetal-site-root) .elemetal-kc-post-nav .elemetal-kc-nav-next a {
		margin-left: 0;
		text-align: left;
	}

	#elemetal-site-root .elemetal-kc-post-nav .wp-block-post-navigation-link a,
	:is(#elemetal-site-root) .elemetal-kc-post-nav .wp-block-post-navigation-link a {
		font-size: 1.25rem;
	}
}

/* ═══════════════════════════════════════════════════════════════════════════
   Spot / Prices pages  (template: page-spot-price)
   Targets: .elemetal-main--spot-price main, .elemetal-spot-price__page-content
   ─────────────────────────────────────────────────────────────────────────── */

#elemetal-site-root main.elemetal-main--spot-price {
	--elemetal-sp-blue: #1e5a7a;
	--elemetal-sp-teal: #0a5f66;
	padding-top: 1.25rem;
	padding-bottom: 0;
}

/* Full-width main; 1200px column is .elemetal-spot-price__content-shell (see spot-price.css). */
#elemetal-site-root > main#page.container.elemetal-main--spot-price {
	max-width: none;
	width: 100%;
	margin-left: 0;
	margin-right: 0;
	padding-left: 0;
	padding-right: 0;
}

/* ── Title row (breadcrumb + H1) ─────────────────────────────────────────── */
#elemetal-site-root .elemetal-spot-price__title-row {
	margin-bottom: 0.75rem;
}

#elemetal-site-root .elemetal-spot-price__title-row .elemetal-locations-page__breadcrumbs,
#elemetal-site-root .elemetal-spot-price__content-shell .elemetal-locations-page__breadcrumbs {
	margin: 0 0 1rem;
}

#elemetal-site-root .elemetal-spot-price__title-row .wp-block-post-title {
	font-size: clamp(1.75rem, 2.8vw, 2.25rem);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.02em;
	margin: 0 0 0.9rem;
	color: #111;
}

/* ── Chart iframe ─────────────────────────────────────────────────────────── */
#elemetal-site-root .elemetal-spot-price__chart-wrap,
#elemetal-site-root .elemetal-nfusion-chart-wrap {
	width: 100%;
	margin: 0 0 2rem;
	clear: both;
	display: flow-root;
	/* intentionally no border — nFusion widget has its own frame */
}

#elemetal-site-root .elemetal-spot-price__chart-wrap iframe {
	display: block;
	width: 100% !important;
	min-height: 580px;
	border: 0;
	color-scheme: light;
}

/* ── Content sections (H2, paragraphs, lists) ─────────────────────────────── */
/* Target every direct descendant of the post-content wrapper.
   wp:paragraph → .wp-block-paragraph; wp:heading → .wp-block-heading;
   wp:list → .wp-block-list (also catches freeform <ul> inside classic blocks) */

#elemetal-site-root .elemetal-spot-price__page-content .wp-block-heading,
#elemetal-site-root .elemetal-spot-price__page-content h2,
#elemetal-site-root .elemetal-spot-price__page-content h3 {
	font-size: clamp(1.2rem, 1.55vw, 1.4rem);
	font-weight: 700;
	line-height: 1.25;
	color: #111;
	margin: 2rem 0 0.6rem;
}

/* First heading right after the chart gets no extra top margin */
#elemetal-site-root .elemetal-spot-price__page-content .wp-block-html + .wp-block-heading,
#elemetal-site-root .elemetal-spot-price__page-content .wp-block-html + h2,
#elemetal-site-root .elemetal-spot-price__page-content .wp-block-elemetal-nfusion-price-chart + .wp-block-heading,
#elemetal-site-root .elemetal-spot-price__page-content .wp-block-elemetal-nfusion-price-chart + h2,
#elemetal-site-root .elemetal-spot-price__page-content .wp-block-elemetal-nfusion-price-chart + .wp-block-paragraph,
#elemetal-site-root .elemetal-spot-price__page-content .wp-block-elemetal-nfusion-spot-table + .wp-block-heading,
#elemetal-site-root .elemetal-spot-price__page-content .wp-block-elemetal-nfusion-spot-table + h2,
#elemetal-site-root .elemetal-spot-price__page-content .elemetal-nfusion-chart-wrap + .wp-block-heading,
#elemetal-site-root .elemetal-spot-price__page-content .elemetal-nfusion-chart-wrap + h2,
#elemetal-site-root .elemetal-spot-price__page-content .elemetal-nfusion-table-wrap + .wp-block-heading,
#elemetal-site-root .elemetal-spot-price__page-content .elemetal-nfusion-table-wrap + h2 {
	margin-top: 0;
}

#elemetal-site-root .elemetal-spot-price__page-content .wp-block-paragraph,
#elemetal-site-root .elemetal-spot-price__page-content p {
	font-size: clamp(0.9rem, 1.05vw, 1rem);
	line-height: 1.72;
	color: #222;
	margin: 0 0 0.9rem;
}

#elemetal-site-root .elemetal-spot-price__page-content .wp-block-list,
#elemetal-site-root .elemetal-spot-price__page-content ul {
	margin: 0.15rem 0 1.25rem 1.35rem;
	padding: 0;
}

#elemetal-site-root .elemetal-spot-price__page-content .wp-block-list li,
#elemetal-site-root .elemetal-spot-price__page-content ul li {
	font-size: clamp(0.9rem, 1.05vw, 1rem);
	line-height: 1.65;
	margin-bottom: 0.45rem;
	color: #222;
}

/* Gutenberg/export lists use <li><p>…</p></li>; keep paragraph margins from stacking between bullets */
:is(#elemetal-site-root, .editor-styles-wrapper) ul:not([class*="wpcf7"]) li > p,
:is(#elemetal-site-root, .editor-styles-wrapper) ol:not([class*="wpcf7"]) li > p,
:is(#elemetal-site-root, .editor-styles-wrapper) .wp-block-list li > p {
	margin-top: 0;
	margin-bottom: 0;
}

#elemetal-site-root .elemetal-spot-price__page-content a {
	color: var(--elemetal-sp-blue);
}

/* ── Historical charts band ─────────────────────────────────────────────── */
#elemetal-site-root .elemetal-spot-price__historical {
	padding: 0 0 2.5rem;
}

#elemetal-site-root .elemetal-spot-price__historical .wp-block-heading,
#elemetal-site-root .elemetal-spot-price__historical h3 {
	font-size: clamp(1.2rem, 1.5vw, 1.45rem);
	font-weight: 700;
	line-height: 1.25;
	margin: 0 0 0.85rem;
	color: #111;
}

#elemetal-site-root .elemetal-spot-price__historical .wp-block-paragraph,
#elemetal-site-root .elemetal-spot-price__historical p {
	font-size: clamp(0.88rem, 1.05vw, 1rem);
	line-height: 1.65;
	color: #333;
	margin: 0 0 1rem;
}

#elemetal-site-root .elemetal-spot-price__historical a {
	color: var(--elemetal-sp-teal);
	font-weight: 600;
}

/* ── Calculators intro (white band above gold CTA) ──────────────────────── */
#elemetal-site-root .elemetal-spot-price__calculators-intro {
	text-align: left;
	padding: 0;
	margin: 0 0 1.5rem;
}

#elemetal-site-root .elemetal-spot-price__calculators-intro h3.wp-block-heading,
#elemetal-site-root .elemetal-spot-price__calculators-intro h3 {
	font-size: clamp(1.2rem, 1.6vw, 1.45rem);
	font-weight: 700;
	margin: 0 0 0.85rem;
	color: #111;
}

#elemetal-site-root .elemetal-spot-price__calculators-intro p {
	margin: 0 0 1.5rem !important;
	color: #333;
	max-width: none;
}

#elemetal-site-root .elemetal-spot-price__calculators-intro a {
	color: rgb(76, 194, 187);
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* ── Precious-metals hub — Buy Wholesale Bullion band ────────────────────── */
#elemetal-site-root .elemetal-spot-price__bullion-cta {
	position: relative;
	isolation: isolate;
	background:
		linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
		var(--elemetal-vis-spot-gold-band, var(--elemetal-vis-gold-bullion)) center / cover no-repeat;
	text-align: center;
	margin-left: calc(50% - 50vw) !important;
	margin-right: calc(50% - 50vw) !important;
	margin-top: 0 !important;
	width: 100vw !important;
	max-width: 100vw !important;
	padding: clamp(3rem, 8vh, 4.5rem) clamp(1.25rem, 5vw, 5rem);
	box-sizing: border-box;
	min-height: clamp(320px, 42vh, 460px);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

#elemetal-site-root .elemetal-spot-price__bullion-cta > * {
	position: relative;
	z-index: 1;
	max-width: 52rem;
	width: 100%;
}

#elemetal-site-root .elemetal-spot-price__bullion-cta > .wp-block-group {
	max-width: 1200px;
	margin: 0 auto;
}

#elemetal-site-root .elemetal-spot-price__bullion-cta .wp-block-heading,
#elemetal-site-root .elemetal-spot-price__bullion-cta h2,
#elemetal-site-root .elemetal-spot-price__bullion-cta h3 {
	color: #fff;
}

#elemetal-site-root .elemetal-spot-price__bullion-cta h2.wp-block-heading,
#elemetal-site-root .elemetal-spot-price__bullion-cta h2 {
	font-size: clamp(1.75rem, 3vw, 3rem);
	font-weight: 700;
	margin: 0 auto 1rem;
}

#elemetal-site-root .elemetal-spot-price__bullion-cta .wp-block-paragraph,
#elemetal-site-root .elemetal-spot-price__bullion-cta p {
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 1.25rem;
}

#elemetal-site-root .elemetal-spot-price__bullion-cta .wp-block-button__link {
	background: #76c1b9;
	color: #fff;
	font-weight: 600;
	padding: 1.1rem 2.75rem;
	font-size: 1.05rem;
	border-radius: 0;
	text-decoration: none;
}

#elemetal-site-root .elemetal-spot-price__bullion-cta .wp-block-buttons {
	justify-content: center;
}

/* ── Precious-metals hub — Get the Most for Your Scrap band ──────────────── */
#elemetal-site-root .elemetal-spot-price__scrap-banner {
	position: relative;
	isolation: isolate;
	margin-left: calc(50% - 50vw) !important;
	margin-right: calc(50% - 50vw) !important;
	width: 100vw !important;
	max-width: 100vw !important;
	padding: clamp(3rem, 8vh, 4rem) clamp(1.25rem, 5vw, 5rem);
	box-sizing: border-box;
	text-align: center;
	min-height: clamp(280px, 42vh, 420px);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: var(--elemetal-vis-scrap-banner) center / cover no-repeat;
}

#elemetal-site-root .elemetal-spot-price__scrap-banner::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	z-index: 0;
	pointer-events: none;
}

#elemetal-site-root .elemetal-spot-price__scrap-banner > * {
	position: relative;
	z-index: 1;
}

#elemetal-site-root .elemetal-spot-price__scrap-banner .wp-block-heading,
#elemetal-site-root .elemetal-spot-price__scrap-banner .wp-block-paragraph,
#elemetal-site-root .elemetal-spot-price__scrap-banner p {
	color: #fff;
}

#elemetal-site-root .elemetal-spot-price__scrap-banner .wp-block-heading {
	font-size: clamp(1.4rem, 2vw, 1.75rem);
	margin: 0 0 0.75rem;
}

#elemetal-site-root .elemetal-spot-price__scrap-banner .wp-block-paragraph,
#elemetal-site-root .elemetal-spot-price__scrap-banner p {
	color: rgba(255, 255, 255, 0.92);
	margin-bottom: 1.25rem;
	max-width: 80vw;
	margin-left: auto;
	margin-right: auto;
}

#elemetal-site-root .elemetal-spot-price__scrap-banner .wp-block-buttons {
	justify-content: center;
}

#elemetal-site-root .elemetal-spot-price__scrap-banner .wp-block-button__link {
	background: #76c1b9;
	color: #fff;
	font-weight: 600;
}

/* Block editor — CTA band backgrounds (no #elemetal-site-root wrapper in iframe). */
.editor-styles-wrapper .elemetal-spot-price__bullion-cta,
.block-editor-block-list__block .elemetal-spot-price__bullion-cta {
	position: relative;
	isolation: isolate;
	background:
		linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
		var(--elemetal-vis-spot-gold-band, var(--elemetal-vis-gold-bullion)) center / cover no-repeat;
	text-align: center;
	margin-left: calc(50% - 50vw) !important;
	margin-right: calc(50% - 50vw) !important;
	width: 100vw !important;
	max-width: 100vw !important;
	padding: clamp(3rem, 8vh, 4rem) clamp(1.25rem, 5vw, 5rem);
	box-sizing: border-box;
	min-height: clamp(320px, 42vh, 460px);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.editor-styles-wrapper .elemetal-spot-price__scrap-banner,
.block-editor-block-list__block .elemetal-spot-price__scrap-banner {
	position: relative;
	isolation: isolate;
	margin-left: calc(50% - 50vw) !important;
	margin-right: calc(50% - 50vw) !important;
	width: 100vw !important;
	max-width: 100vw !important;
	padding: clamp(3rem, 8vh, 4rem) clamp(1.25rem, 5vw, 5rem);
	box-sizing: border-box;
	text-align: center;
	min-height: clamp(280px, 42vh, 420px);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background:
		linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
		var(--elemetal-vis-scrap-banner) center / cover no-repeat;
}

.editor-styles-wrapper .elemetal-spot-price__scrap-banner::before,
.block-editor-block-list__block .elemetal-spot-price__scrap-banner::before {
	content: none;
}

.editor-styles-wrapper .elemetal-spot-price__bullion-cta .wp-block-heading,
.editor-styles-wrapper .elemetal-spot-price__bullion-cta h2,
.editor-styles-wrapper .elemetal-spot-price__scrap-banner .wp-block-heading,
.editor-styles-wrapper .elemetal-spot-price__scrap-banner p,
.block-editor-block-list__block .elemetal-spot-price__bullion-cta .wp-block-heading,
.block-editor-block-list__block .elemetal-spot-price__scrap-banner .wp-block-heading,
.block-editor-block-list__block .elemetal-spot-price__scrap-banner p {
	color: #fff;
}

/* Scrap block on spot-price pages — break out of constrained content width */
#elemetal-site-root main.elemetal-main--spot-price .elemetal-scrap,
#elemetal-site-root main.elemetal-main--spot-price .wp-block-elemetal-scrap {
	margin-left: calc(50% - 50vw) !important;
	margin-right: calc(50% - 50vw) !important;
	width: 100vw !important;
	max-width: 100vw !important;
}

/* ── FAQ (wp:details) ─────────────────────────────────────────────────────── */
#elemetal-site-root .elemetal-spot-price__faq {
	padding: 0.25rem 0 1rem;
}

#elemetal-site-root .elemetal-spot-price__faq > .wp-block-heading {
	margin-top: 0;
}

#elemetal-site-root .elemetal-spot-price__faq .wp-block-details {
	border-bottom: 1px solid #e0e0e0;
	padding: 0.85rem 0;
}

#elemetal-site-root .elemetal-spot-price__faq .wp-block-details summary {
	font-weight: 600;
	font-size: clamp(0.9rem, 1.05vw, 0.98rem);
	cursor: pointer;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0.5rem;
}

/* Hide default marker in Chromium / Safari */
#elemetal-site-root .elemetal-spot-price__faq summary::-webkit-details-marker { display: none; }
#elemetal-site-root .elemetal-spot-price__faq summary::marker { content: ''; }

#elemetal-site-root .elemetal-spot-price__faq .wp-block-details summary::after {
	content: '+';
	font-size: 1.3rem;
	font-weight: 400;
	line-height: 1;
	flex-shrink: 0;
	color: var(--elemetal-sp-teal);
}

#elemetal-site-root .elemetal-spot-price__faq .wp-block-details[open] summary::after {
	content: '\2212'; /* minus sign */
}

#elemetal-site-root .elemetal-spot-price__faq .wp-block-details .wp-block-paragraph,
#elemetal-site-root .elemetal-spot-price__faq .wp-block-details p {
	padding: 0.6rem 0 0.3rem;
	margin: 0;
	font-size: clamp(0.88rem, 1vw, 0.95rem);
	color: #404040;
	line-height: 1.65;
}

/* ── Mobile ───────────────────────────────────────────────────────────────── */
@media (max-width: 781px) {
	#elemetal-site-root .elemetal-spot-price__prefooter.wp-block-columns {
		flex-direction: column;
		gap: 1rem 0;
		padding-bottom: 2.5rem;
	}

	#elemetal-site-root .elemetal-spot-price__bullion-cta {
		padding: 2rem 1rem;
	}

	#elemetal-site-root .elemetal-spot-price__scrap-banner {
		padding: 2rem 1rem;
	}

	#elemetal-site-root .elemetal-spot-price__chart-wrap iframe {
		min-height: 480px;
	}
}

/* Hero logo mark: white for contrast on photo/video */
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-hero__logo-img {
	filter: brightness(0) invert(1);
}

/* Header logo: do not invert here — template uses solid white bar (parts/header.html); brightness(0) invert(1) made the mark white-on-white on homepage. Hero lockup still uses .elemetal-hero__logo-img above. */

.elemetal-hero .elemetal-hero__background {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}

.elemetal-hero__video,
.elemetal-hero__poster {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.elemetal-hero__video {
	opacity: var(--elemetal-hero-video-opacity, 1);
}

.elemetal-hero__poster {
	background-image: var(--elemetal-hero-poster, none);
	background-size: cover;
	background-position: center center;
}

.elemetal-hero__overlay {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 1;
	background-color: var(--elemetal-hero-overlay-color, #000);
	opacity: var(--elemetal-hero-overlay-opacity, 0);
}

.elemetal-hero .elemetal-hero__content {
	max-width: var(--elemetal-hero-content-max-width, 720px);
}

.elemetal-hero__logo-img {
	max-width: var(--elemetal-hero-logo-max-width, 200px);
	height: auto;
	display: block;
}

.elemetal-hero__cta-row {
	margin-top: 1.5rem;
}

.elemetal-hero .elemetal-hero__frame {
	position: relative;
	z-index: 2;
	flex: 1 1 auto;
	width: 100%;
	max-width: 1140px;
	margin-left: auto;
	margin-right: auto;
	padding-left: clamp(1rem, 4vw, 3rem);
	padding-right: clamp(1rem, 4vw, 3rem);
	min-height: 100vh;
	min-height: 100dvh;
	display: flex;
	align-items: center;
}

.elemetal-hero__content {
	text-align: left;
	color: #fff;
	padding: clamp(2rem, 4vh, 3rem) 0;
	max-width: 100%;
	margin-left: 0;
	margin-right: auto;
	width: 100%;
}

.elemetal-hero__heading {
	color: inherit;
	font-size: clamp(2.25rem, 5.5vw, 3.75rem);
	line-height: 1.15;
	margin: 0 0 1rem;
	max-width: 100%;
	text-align: inherit;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-hero__heading {
	color: var(--elemetal-block-heading-color, var(--elemetal-heading-on-dark)) !important;
	font-size: var(--elemetal-block-heading-size, clamp(2.25rem, 5.5vw, 3.75rem)) !important;
}

.elemetal-hero__subheading,
.elemetal-hero p {
	font-size: clamp(1.125rem, 2.1vw, 1.375rem);
	line-height: 1.6;
	max-width: 720px;
	margin-left: 0;
	margin-right: auto;
	text-align: inherit;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-hero__subheading {
	color: var(--elemetal-block-sub-color, var(--elemetal-body-on-dark)) !important;
	font-size: var(--elemetal-block-sub-size, clamp(1.125rem, 2.1vw, 1.375rem)) !important;
}

.elemetal-hero__logo {
	margin: 0 0 1.5rem;
	text-align: inherit;
}

.elemetal-hero__logo img {
	max-width: 200px;
	height: auto;
	display: block;
}

/* Bands with background image (bullion/scrap set min-height inline; others use this fallback) */
.elemetal-bullion,
.elemetal-scrap {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 48vh;
	overflow: hidden;
}

.elemetal-locations-teaser {
	position: relative;
	min-height: 48vh;
	overflow: hidden;
}

.elemetal-bullion__bg,
.elemetal-scrap__bg,
.elemetal-locations-teaser__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-size: cover;
	background-position: center;
	background-image: var(--elemetal-bg-image, none);
}

.elemetal-text-align--left {
	text-align: left !important;
}

.elemetal-text-align--center {
	text-align: center !important;
}

.elemetal-text-align--right {
	text-align: right !important;
}

.elemetal-band__cta-row {
	margin-top: 1.5rem;
}

/* Industries: scoped like buttons so Squarespace vendor CSS cannot override sizes/layout */
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industries {
	--elemetal-industries-ring: 120px;
	--elemetal-industries-gap-icon-title: 1.125rem;
	--elemetal-industries-gap-title-cta: 1.5rem;
	--elemetal-industries-cta-bg: #6cc2b6;
	--elemetal-industries-cta-bg-hover: #5cb0a4;
	--elemetal-industries-cols: 6;
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 48vh;
	overflow: hidden;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industries__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-image: var(--elemetal-industries-bg, none);
	background-size: cover;
	background-position: center;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industries__overlay {
	background-color: var(--elemetal-industries-overlay-color, #073b4c);
	opacity: var(--elemetal-industries-overlay-opacity, 0.75);
}

.elemetal-bullion__overlay,
.elemetal-scrap__overlay,
.elemetal-locations-teaser__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: #000;
	opacity: var(--elemetal-overlay, 0.43);
	pointer-events: none;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industries .elemetal-industries__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
}

/* Vertically center copy in bullion/scrap when band is taller than content */
.elemetal-bullion .elemetal-bullion__container,
.elemetal-scrap .elemetal-scrap__container {
	flex: 1 1 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 0;
	position: relative;
	z-index: 2;
	max-width: 1140px;
	margin-left: auto;
	margin-right: auto;
	padding-left: clamp(1rem, 4vw, 3rem);
	padding-right: clamp(1rem, 4vw, 3rem);
}

.elemetal-locations-teaser .elemetal-locations-teaser__container {
	position: relative;
	z-index: 2;
	max-width: 1140px;
	margin-left: auto;
	margin-right: auto;
	padding-left: clamp(1rem, 4vw, 3rem);
	padding-right: clamp(1rem, 4vw, 3rem);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industries .elemetal-industries__container {
	flex: 1 1 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 0;
	position: relative;
	z-index: 2;
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
	padding-left: clamp(1rem, 4vw, 3rem);
	padding-right: clamp(1rem, 4vw, 3rem);
}

.elemetal-bullion__inner,
.elemetal-scrap__inner,
.elemetal-locations-teaser__inner {
	padding: clamp(3rem, 8vh, 6rem) 0;
	color: #fff;
	text-align: center;
	max-width: 880px;
	margin-left: auto;
	margin-right: auto;
}

/* Dark image bands: heading/sub/body colors & sizes from block attributes via CSS variables */
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion__heading,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-scrap__heading,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-locations-teaser__heading,
:is(#elemetal-site-root, .editor-styles-wrapper)
	.elemetal-section.elemetal-industries
	.elemetal-industries__heading {
	font-size: var(--elemetal-block-heading-size, var(--elemetal-section-heading-size)) !important;
	font-weight: var(--elemetal-section-heading-weight) !important;
	line-height: var(--elemetal-section-heading-line-height) !important;
	color: var(--elemetal-block-heading-color, var(--elemetal-heading-on-dark)) !important;
	margin: 0 auto var(--elemetal-section-heading-margin-bottom) !important;
	max-width: 36rem;
	width: 100%;
}

/* Industries: heading → grid spacing matches locations heading → body (flex gap, no double margin) */
:is(#elemetal-site-root, .editor-styles-wrapper)
	.elemetal-section.elemetal-industries
	.elemetal-industries__heading {
	margin-bottom: 0 !important;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion__sub,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-locations-teaser__sub {
	font-size: var(--elemetal-block-sub-size, var(--elemetal-section-sub-size)) !important;
	line-height: 1.65 !important;
	color: var(--elemetal-block-sub-color, var(--elemetal-body-on-dark)) !important;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-scrap__body {
	font-size: var(--elemetal-block-body-size, var(--elemetal-section-sub-size)) !important;
	line-height: 1.65 !important;
	color: var(--elemetal-block-body-color, var(--elemetal-body-on-dark)) !important;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion__sub a,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-scrap__body a,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-locations-teaser__sub a {
	color: inherit !important;
	text-decoration: underline;
}

.elemetal-bullion__text,
.elemetal-scrap__text,
.elemetal-locations-teaser__text {
	font-size: clamp(1rem, 1.8vw, 1.125rem);
	line-height: 1.65;
	max-width: 70ch;
	margin: 0 auto 1.5rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industries__inner {
	width: 100%;
	padding: clamp(3rem, 8vh, 6rem) 0;
	color: #fff;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: var(--elemetal-section-heading-margin-bottom);
}

/* Column count from block (--elemetal-industries-cols on section); full count from 992px up */
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industries__grid {
	display: grid !important;
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding-top: 3rem;
	padding-bottom: 3rem;
	padding-left: 0;
	padding-right: 0;
	list-style: none;
	gap: clamp(1.25rem, 3vw, 2.25rem) clamp(1rem, 2.5vw, 1.75rem);
	grid-template-columns: repeat(var(--elemetal-industries-cols), minmax(0, 1fr)) !important;
	justify-items: stretch;
	align-items: start;
}

@media (max-width: 991px) {
	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industries__grid {
		grid-template-columns: repeat(
				min(4, var(--elemetal-industries-cols)),
				minmax(0, 1fr)
			) !important;
	}
}

@media (max-width: 782px) {
	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industries__grid {
		grid-template-columns: repeat(
				min(3, var(--elemetal-industries-cols)),
				minmax(0, 1fr)
			) !important;
	}
}

@media (max-width: 560px) {
	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industries {
		--elemetal-industries-ring: 100px;
		--elemetal-industries-gap-icon-title: 1rem;
		--elemetal-industries-gap-title-cta: 1.25rem;
	}

	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industries__grid {
		grid-template-columns: repeat(
				min(2, var(--elemetal-industries-cols)),
				minmax(0, 1fr)
			) !important;
	}
}

@media (max-width: 380px) {
	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industries__grid {
		grid-template-columns: 1fr !important;
	}
}

/* Single item on last row (e.g. 7 tiles with 6 columns): center the orphan */
:is(#elemetal-site-root, .editor-styles-wrapper)
	.elemetal-industries__grid--orphan-last
	.elemetal-industries__item:last-child {
	grid-column: 1 / -1;
	justify-self: center;
	width: 100%;
	max-width: 220px;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industries__item {
	margin: 0;
}

/* Tile stack: large white ring → title → mint CTA (reference UI) */
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industries__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 0;
	height: 100%;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industries__icon-ring {
	width: var(--elemetal-industries-ring) !important;
	height: var(--elemetal-industries-ring) !important;
	max-width: var(--elemetal-industries-ring) !important;
	max-height: var(--elemetal-industries-ring) !important;
	border-radius: 50%;
	border: 2px solid #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-sizing: border-box;
	padding: 14px;
	background: rgba(0, 0, 0, 0.12);
	margin-bottom: var(--elemetal-industries-gap-icon-title);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industries__icon-ring img {
	max-width: 100% !important;
	max-height: 100% !important;
	width: auto !important;
	height: auto !important;
	object-fit: contain;
	object-position: center;
	display: block;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industries__item-title {
	margin: 0 0 var(--elemetal-industries-gap-title-cta) !important;
	font-size: clamp(0.9375rem, 1.35vw, 1rem) !important;
	font-weight: 500 !important;
	line-height: 1.35 !important;
	letter-spacing: 0.01em;
	color: #ffffff !important;
	max-width: 22ch;
}

:is(#elemetal-site-root, .editor-styles-wrapper)
	.elemetal-industries__cta.elemetal-button.elemetal-button--primary {
	font-size: 0.875rem !important;
	font-weight: 600 !important;
	line-height: 1.2 !important;
	padding: 0.625rem 1.5rem !important;
	border-radius: 8px !important;
	background: var(--elemetal-industries-cta-bg) !important;
	color: #ffffff !important;
	min-width: 9.5rem;
	text-align: center !important;
}

:is(#elemetal-site-root, .editor-styles-wrapper)
	.elemetal-industries__cta.elemetal-button.elemetal-button--primary:hover,
:is(#elemetal-site-root, .editor-styles-wrapper)
	.elemetal-industries__cta.elemetal-button.elemetal-button--primary:focus-visible {
	background: var(--elemetal-industries-cta-bg-hover) !important;
	color: #ffffff !important;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industries__cta {
	display: inline-block;
	width: auto;
	max-width: min(100%, 200px);
	margin-top: 0;
	margin-bottom: 0;
	box-sizing: border-box;
}

/* Features — “Refining made better” */
.elemetal-section.elemetal-features-six {
	background-color: #f2f2f2;
	color: #000;
	width: 100%;
	box-sizing: border-box;
}

.elemetal-features-six .elemetal-features-six__container {
	max-width: 1140px;
	margin-left: auto;
	margin-right: auto;
	padding-left: clamp(1rem, 4vw, 3rem);
	padding-right: clamp(1rem, 4vw, 3rem);
}

.elemetal-features-six__heading {
	text-align: center;
	padding: clamp(2rem, 6vh, 4rem) 0 0;
	margin: 0 auto 0.5rem;
	font-size: var(--elemetal-section-heading-size) !important;
	font-weight: var(--elemetal-section-heading-weight) !important;
	line-height: var(--elemetal-section-heading-line-height) !important;
	color: var(--elemetal-heading-on-light) !important;
}

.elemetal-features-six__grid {
	--elemetal-features-cols: 3;
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2rem);
	list-style: none;
	margin: 0 auto;
	padding: clamp(1.5rem, 4vh, 2.5rem) 0 clamp(2rem, 5vh, 3rem);
	max-width: 100%;
	justify-items: center;
}

@media (min-width: 600px) {
	.elemetal-features-six__grid {
		grid-template-columns: repeat(
			min(2, max(1, var(--elemetal-features-cols, 3))),
			minmax(0, 1fr)
		);
	}
}

@media (min-width: 900px) {
	.elemetal-features-six__grid {
		grid-template-columns: repeat(
			var(--elemetal-features-cols, 3),
			minmax(0, 1fr)
		);
		padding: 2.5rem 0 3rem;
	}
}

.elemetal-features-six__item {
	text-align: center;
	width: 100%;
	max-width: 100%;
	margin: 0;
	justify-self: center;
}

.elemetal-features-six__image {
	width: 90px;
	height: 90px;
	max-width: 90px;
	max-height: 90px;
	margin: 0 auto 1.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-sizing: border-box;
}

.elemetal-features-six__image img {
	max-width: 90px;
	max-height: 90px;
	width: auto;
	height: auto;
	display: block;
	margin: 0;
	object-fit: contain;
	object-position: center;
}

.elemetal-features-six__title {
	margin: 0 0 0.75rem;
	font-size: var(--elemetal-section-sub-size) !important;
	font-weight: var(--elemetal-section-heading-weight) !important;
	line-height: 1.3;
	color: var(--elemetal-heading-on-light) !important;
	text-align: center;
}

.elemetal-features-six__text {
	margin: 0;
	font-size: clamp(1.0625rem, 1.75vw, 1.1875rem);
	line-height: 1.6;
	color: var(--elemetal-body-on-light) !important;
	text-align: center;
	max-width: 45ch;
	margin-left: auto;
	margin-right: auto;
}

.elemetal-features-six__text p {
	margin: 0 0 0.75rem;
	text-align: center;
}

.elemetal-features-six__text p:last-child {
	margin-bottom: 0;
}

.elemetal-features-six__text a {
	color: inherit;
	text-decoration: underline;
}

.elemetal-features-six__cta {
	text-align: center;
	padding: 0 0 clamp(2.5rem, 6vh, 4rem);
}

/* Metals quad — full-width 2×2 image tiles, flush columns, white hairline row dividers */
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-metals-quad {
	--elemetal-metals-overlay: #000000;
	--elemetal-metals-overlay-opacity: 0.42;
	--elemetal-metals-cta-bg: #6cc2b6;
	--elemetal-metals-cta-hover: #5cb0a4;
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-metals-quad__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 0;
	row-gap: 1px;
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
	background: #ffffff;
	box-sizing: border-box;
}

/* Live LPs use full-bleed rows for single-tile sections (Locations, Wholesale Bullion, etc.). */
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-metals-quad--single .elemetal-metals-quad__grid {
	grid-template-columns: 1fr;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-metals-quad__item {
	position: relative;
	display: flex;
	align-items: stretch;
	min-height: clamp(300px, 42vw, 480px);
	overflow: hidden;
	margin: 0;
	text-align: center;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-metals-quad__bg {
	position: absolute;
	inset: 0;
	background-image: var(--elemetal-metals-quad-item-bg, none);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.elemetal-features-six {
	--elemetal-features-cols: 3;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-metals-quad__overlay {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-color: var(--elemetal-metals-overlay);
	opacity: var(--elemetal-metals-overlay-opacity);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-metals-quad__content {
	position: relative;
	z-index: 2;
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	box-sizing: border-box;
	padding: 3rem clamp(1.25rem, 4vw, 2.5rem);
	gap: clamp(0.875rem, 2vw, 1.25rem);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-metals-quad__title {
	margin: 0 !important;
	font-size: clamp(1.5rem, 3vw, 2.25rem) !important;
	font-weight: 700 !important;
	line-height: 1.2 !important;
	color: #ffffff !important;
	max-width: 22ch;
	text-align: center !important;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.55);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-metals-quad__subtitle {
	margin: 0 !important;
	font-size: clamp(1.0625rem, 1.75vw, 1.1875rem) !important;
	font-weight: 400 !important;
	line-height: 1.55 !important;
	color: rgba(255, 255, 255, 0.95) !important;
	max-width: 38ch;
	text-align: center !important;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-metals-quad__cta {
	margin: 0.25rem 0 0 !important;
}

:is(#elemetal-site-root, .editor-styles-wrapper)
	.elemetal-metals-quad__button.elemetal-button.elemetal-button--primary {
	display: inline-block !important;
	font-size: 0.875rem !important;
	font-weight: 600 !important;
	line-height: 1.2 !important;
	padding: 0.625rem 1.5rem !important;
	border-radius: 8px !important;
	background: var(--elemetal-metals-cta-bg) !important;
	color: #ffffff !important;
	border: none !important;
	text-decoration: none !important;
	text-align: center !important;
	min-width: 9.5rem;
	box-sizing: border-box;
}

:is(#elemetal-site-root, .editor-styles-wrapper)
	.elemetal-metals-quad__button.elemetal-button.elemetal-button--primary:hover,
:is(#elemetal-site-root, .editor-styles-wrapper)
	.elemetal-metals-quad__button.elemetal-button.elemetal-button--primary:focus-visible {
	background: var(--elemetal-metals-cta-hover) !important;
	color: #ffffff !important;
}

@media (max-width: 640px) {
	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-metals-quad__grid {
		grid-template-columns: 1fr;
		row-gap: 1px;
	}

	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-metals-quad__item {
		min-height: clamp(260px, 72vw, 380px);
	}
}

/* About: full-bleed band, left column on dark photo (scoped like industries) */
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-about {
	--elemetal-about-cta-bg: #57c1bb;
	--elemetal-about-cta-hover: #4aafaa;
	position: relative;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-about__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-color: #0d1b24;
	background-image: var(--elemetal-about-bg, none);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-about__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background-color: var(--elemetal-about-overlay-color, #073b4c);
	opacity: var(--elemetal-about-overlay-opacity, 0);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-about .elemetal-about__container {
	flex: 1 1 auto;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	min-height: 0;
	position: relative;
	z-index: 2;
	max-width: none;
	margin: 0;
	padding: clamp(3rem, 8vh, 5rem) clamp(1.25rem, 9vw, 10%);
	box-sizing: border-box;
	background-color: #000000ba;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-about__inner {
	max-width: min(42rem, 100%);
	width: 100%;
	margin: 0;
	padding: 0;
	text-align: left !important;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-about__heading {
	font-size: var(--elemetal-block-heading-size, var(--elemetal-section-heading-size)) !important;
	font-weight: var(--elemetal-section-heading-weight) !important;
	line-height: var(--elemetal-section-heading-line-height) !important;
	color: var(--elemetal-block-heading-color, #ffffff) !important;
	margin: 0 0 1.25rem !important;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-about__sub {
	font-size: var(--elemetal-block-sub-size, var(--elemetal-section-sub-size)) !important;
	font-weight: 600 !important;
	line-height: 1.55 !important;
	color: var(--elemetal-block-sub-color, #ffffff) !important;
	margin: 0 0 1rem !important;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-about__body {
	font-size: var(--elemetal-block-body-size, clamp(1.125rem, 1.85vw, 1.3125rem)) !important;
	font-weight: 400 !important;
	line-height: 1.7 !important;
	color: var(--elemetal-block-body-color, rgba(255, 255, 255, 0.96)) !important;
	max-width: 65ch;
	margin: 0 0 1.75rem !important;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-about__body p {
	margin: 0 0 1rem !important;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-about__body p:last-child {
	margin-bottom: 0 !important;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-about__cta {
	margin: 0 !important;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-about__button {
	display: inline-block !important;
	font-size: var(--elemetal-block-btn-size, 0.9375rem) !important;
	font-weight: 600 !important;
	line-height: 1.2 !important;
	padding: 0.65rem 1.65rem !important;
	border-radius: 6px !important;
	background: var(--elemetal-block-btn-bg, var(--elemetal-about-cta-bg)) !important;
	color: var(--elemetal-block-btn-color, #ffffff) !important;
	border: none !important;
	text-decoration: none !important;
	text-align: center !important;
	box-sizing: border-box;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-about__button:hover,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-about__button:focus-visible,
:is(#elemetal-site-root, .editor-styles-wrapper)
	.elemetal-about__button.elemetal-button.elemetal-button--primary:hover,
:is(#elemetal-site-root, .editor-styles-wrapper)
	.elemetal-about__button.elemetal-button.elemetal-button--primary:focus-visible {
	background: var(--elemetal-about-cta-hover) !important;
	color: var(--elemetal-block-btn-color, #ffffff) !important;
}

/* Header: block theme wrapper must not clip or narrow the header layout */
#elemetal-site-root > .wp-block-template-part {
	margin: 0;
	padding: 0;
	max-width: none;
	width: 100%;
	display: block;
}

#header {
	position: relative;
	width: 100%;
	box-sizing: border-box;
}

/* Theme dynamic nav blocks: avoid extra wrapper affecting flex/grid */
.wp-block-elemetal-theme-header-menu,
.wp-block-elemetal-theme-footer-menu {
	display: contents;
}

/* Global block styles add link underlines; header nav does not */
#header a {
	text-decoration: none;
}

#header .header-nav-item--folder {
	position: relative;
}

/* Folder buttons: strip WP global button styles */
#header .header-nav-folder-title {
	font: inherit;
	line-height: inherit;
	letter-spacing: inherit;
	text-transform: inherit;
	background: transparent;
	border: none;
	border-radius: 0;
	padding: 0;
	margin: 0;
	cursor: pointer;
	text-align: inherit;
	color: inherit;
}

#header .header-nav-folder-title:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 2px;
}

/* Menu item CSS class menu-item-no-link (non-navigating label) */
#header .header-nav-folder-title--no-nav {
	cursor: default;
}

a.elemetal-menu-no-nav,
a.elemetal-menu-no-nav:hover,
a.elemetal-menu-no-nav:focus {
	cursor: default;
	pointer-events: none;
	text-decoration: none;
}

/*
 * Mobile menu + header polish — Squarespace burger/menu JS is not bundled; drawer markup lives in parts/header.html.
 */
#header .burger-inner .top-bun,
#header .burger-inner .patty,
#header .burger-inner .bottom-bun {
	height: 2px;
	border-radius: 1px;
}

@media screen and (max-width: 799px) {
	#header .header-title--use-mobile-logo picture {
		display: block;
		line-height: 0;
	}

	#header .header-title--use-mobile-logo .header-mobile-logo a {
		max-height: 44px;
		display: inline-flex;
		align-items: center;
	}

	#header .header-title--use-mobile-logo .header-mobile-logo img {
		max-height: 44px;
		width: auto;
		height: auto;
		display: block;
	}
}

.elemetal-mobile-overlay {
	/* Vendor .header uses pointer-events: none; children inherit unless reset (Squarespace uses .header-menu { auto }). */
	pointer-events: auto;

	--em-drawer-pad-x: clamp(1.35rem, 5vw, 2rem);
	--em-drawer-text: #0f2338;
	--em-drawer-muted: #64748b;
	--em-drawer-accent: #0a5f66;
	--em-drawer-accent-soft: rgba(10, 95, 102, 0.2);
	--em-drawer-row-min-h: 3.35rem;

	position: fixed;
	inset: 0;
	z-index: 100002;
	display: flex;
	align-items: stretch;
	justify-content: flex-end;
	box-sizing: border-box;
	font-family:
		'DIN Pro',
		'DIN Light',
		system-ui,
		-apple-system,
		'Segoe UI',
		sans-serif;
}

/* Logged-in WP: drawer fills below admin bar so chrome stays usable */
body.admin-bar .elemetal-mobile-overlay {
	top: var(--wp-admin--admin-bar--height, 32px);
	bottom: 0;
	left: 0;
	right: 0;
	height: auto;
}

.elemetal-mobile-overlay[hidden] {
	display: none !important;
}

.elemetal-mobile-overlay__backdrop {
	flex: 1 1 auto;
	min-width: 0;
	background: rgba(15, 23, 42, 0.42);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}

.elemetal-mobile-overlay__panel {
	flex: 0 0 min(26rem, 92vw);
	max-width: 100%;
	height: 100%;
	max-height: 100%;
	display: flex;
	flex-direction: column;
	background: linear-gradient(180deg, #ffffff 0%, #f8fafb 48%, #f4f7f8 100%);
	box-shadow:
		-16px 0 48px rgba(15, 23, 42, 0.2),
		-1px 0 0 rgba(15, 23, 42, 0.06);
	border-left: 1px solid rgba(15, 23, 42, 0.06);
	overflow: hidden;
	box-sizing: border-box;
	padding: 0;
}

.elemetal-mobile-overlay__chrome {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding:
		max(0.85rem, env(safe-area-inset-top)) var(--em-drawer-pad-x)
		1rem;
	background: rgba(255, 255, 255, 0.92);
	border-bottom: 1px solid rgba(15, 23, 42, 0.09);
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.elemetal-mobile-overlay__title {
	margin: 0;
	font-size: 1.1875rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: var(--em-drawer-text);
	line-height: 1.2;
}

.elemetal-mobile-overlay__close {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.875rem;
	height: 2.875rem;
	min-width: 44px;
	min-height: 44px;
	padding: 0;
	border: none;
	cursor: pointer;
	color: var(--em-drawer-text);
	background: rgba(15, 23, 42, 0.06);
	border-radius: 12px;
	transition:
		background-color 0.15s ease,
		color 0.15s ease,
		transform 0.15s ease;
}

.elemetal-mobile-overlay__close:hover {
	background: rgba(10, 95, 102, 0.14);
	color: var(--em-drawer-accent);
}

.elemetal-mobile-overlay__close:active {
	transform: scale(0.96);
}

.elemetal-mobile-overlay__close-lines {
	position: relative;
	display: block;
	width: 1.125rem;
	height: 1.125rem;
}

.elemetal-mobile-overlay__close-lines::before,
.elemetal-mobile-overlay__close-lines::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	width: 1.125rem;
	height: 2px;
	border-radius: 1px;
	background: currentColor;
	transform-origin: center;
}

.elemetal-mobile-overlay__close-lines::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.elemetal-mobile-overlay__close-lines::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.elemetal-mobile-overlay__close:focus-visible {
	outline: 2px solid var(--em-drawer-accent);
	outline-offset: 3px;
}

.elemetal-mobile-overlay__scroll {
	flex: 1 1 auto;
	min-height: 0;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior: contain;
	padding-top: 0.35rem;
	padding-bottom: calc(1.75rem + env(safe-area-inset-bottom, 0px));
}

.elemetal-mobile-overlay .header-nav-list {
	display: flex;
	flex-direction: column;
	gap: 0;
	width: 100%;
	padding: 0 var(--em-drawer-pad-x);
	box-sizing: border-box;
	margin: 0;
}

.elemetal-mobile-overlay .header-nav-item--folder {
	border-bottom: 1px solid rgba(15, 23, 42, 0.075);
}

.elemetal-mobile-overlay .header-nav-item--folder:last-child {
	border-bottom: none;
}

.elemetal-mobile-overlay .header-nav-list > .header-nav-item--folder {
	white-space: normal;
}

/* Native accordion rows: summary (expandable), link (leaf), or label (no-link). */
.elemetal-mobile-overlay summary.header-nav-folder-title {
	list-style: none;
	cursor: pointer;
}

.elemetal-mobile-overlay summary.header-nav-folder-title::-webkit-details-marker {
	display: none;
}

.elemetal-mobile-overlay summary.header-nav-folder-title,
.elemetal-mobile-overlay a.header-nav-folder-title--link,
.elemetal-mobile-overlay .header-nav-folder-title--leaf-label {
	width: 100%;
	min-height: var(--em-drawer-row-min-h);
	text-align: left;
	padding: 0.85rem 0;
	padding-right: 0.25rem;
	margin: 0;
	font-size: 1.0625rem;
	font-weight: 600;
	line-height: 1.35;
	letter-spacing: 0.015em;
	font-family: inherit;
	color: var(--em-drawer-text);
	box-sizing: border-box;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	border: none;
	border-radius: 0;
	background: transparent;
	touch-action: manipulation;
	-webkit-tap-highlight-color: transparent;
	transition:
		color 0.15s ease,
		background-color 0.15s ease;
}

.elemetal-mobile-overlay a.header-nav-folder-title--link {
	text-decoration: none;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
	color: inherit;
	font: inherit;
}

.elemetal-mobile-overlay .header-nav-folder-title--leaf-label {
	cursor: default;
}

.elemetal-mobile-overlay .header-nav-folder-title-text {
	flex: 1 1 auto;
	min-width: 0;
	text-align: left;
}

.elemetal-mobile-overlay summary.header-nav-folder-title:hover,
.elemetal-mobile-overlay a.header-nav-folder-title--link:hover {
	color: var(--em-drawer-accent);
}

.elemetal-mobile-overlay summary.header-nav-folder-title:focus-visible {
	outline: 2px solid var(--em-drawer-accent);
	outline-offset: 3px;
}

.elemetal-mobile-overlay a.header-nav-folder-title--link:focus-visible {
	outline: 2px solid var(--em-drawer-accent);
	outline-offset: 3px;
}

.elemetal-mobile-overlay details.header-nav-item--folder {
	margin: 0;
	padding: 0;
	border: none;
}

.elemetal-mobile-overlay details.header-nav-item--folder > summary.header-nav-folder-title::after {
	content: '';
	flex-shrink: 0;
	width: 0.55rem;
	height: 0.55rem;
	margin-right: 0.25rem;
	border-right: 2px solid var(--em-drawer-muted);
	border-bottom: 2px solid var(--em-drawer-muted);
	transform: rotate(-45deg);
	transition:
		transform 0.22s ease,
		border-color 0.15s ease;
	opacity: 0.85;
	pointer-events: none;
}

.elemetal-mobile-overlay details.header-nav-item--folder[open] > summary.header-nav-folder-title::after {
	transform: rotate(45deg);
	border-right-color: var(--em-drawer-accent);
	border-bottom-color: var(--em-drawer-accent);
	opacity: 1;
	margin-top: -0.12rem;
}

.elemetal-mobile-overlay .header-nav-list--overlay-details .header-nav-folder-content {
	display: block;
	position: static !important;
	left: auto !important;
	right: auto !important;
	top: auto !important;
	margin: 0 0 0.35rem 0.25rem !important;
	padding: 0.35rem 0 1.15rem 1rem !important;
	pointer-events: auto !important;
	min-width: 0 !important;
	overflow: hidden;
	border-left: 3px solid var(--em-drawer-accent-soft);
	background: rgba(255, 255, 255, 0.55);
	border-radius: 0 10px 10px 0;
}

.elemetal-mobile-overlay .header-nav-folder-item {
	margin: 0;
	padding: 0;
}

.elemetal-mobile-overlay .header-nav-folder-item a {
	display: flex;
	align-items: center;
	min-height: 2.875rem;
	padding: 0.55rem 0.85rem 0.55rem 0.65rem;
	font-weight: 500;
	font-size: 0.98rem;
	line-height: 1.35;
	color: #334155;
	text-decoration: none;
	border-radius: 10px;
	transition:
		background-color 0.15s ease,
		color 0.15s ease;
}

.elemetal-mobile-overlay .header-nav-folder-item a:hover,
.elemetal-mobile-overlay .header-nav-folder-item a:focus-visible {
	background: rgba(10, 95, 102, 0.1);
	color: var(--em-drawer-accent);
	outline: none;
}

.elemetal-mobile-overlay .header-nav-folder-item a:focus-visible {
	box-shadow: 0 0 0 2px rgba(10, 95, 102, 0.35);
}

/* Footer — Squarespace-style: white band, logo + copyright | legal | company (underlined links) */
/* Works on all templates (footer is not always under #elemetal-site-root) */
#footer-sections.elemetal-footer {
	--elemetal-footer-text: #6a7b8c;
	--elemetal-footer-text-hover: #4a5c6d;
}

#footer-sections.elemetal-footer .elemetal-footer__surface {
	background-color: #ffffff !important;
}

#footer-sections.elemetal-footer .elemetal-footer__surface .section-background {
	background: transparent !important;
}

#footer-sections.elemetal-footer .elemetal-footer__content-wrap {
	padding-top: clamp(1.25rem, 2.5vw, 1.75rem) !important;
	padding-bottom: clamp(1.25rem, 2.5vw, 1.75rem) !important;
}

/*
 * Match header nav band: .header-announcement-bar-wrapper uses padding-left/right 4vw (6vw ≤799px).
 * Do not cap at 1200px alone — on wide viewports that is narrower than the header content area.
 */
#footer-sections.elemetal-footer .elemetal-footer__header-inner.header-inner {
	display: block;
	width: 100%;
	max-width: none;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
	padding-left: 4vw;
	padding-right: 4vw;
}

@media screen and (max-width: 799px) {
	#footer-sections.elemetal-footer .elemetal-footer__header-inner.header-inner {
		padding-left: 6vw;
		padding-right: 6vw;
	}
}

#footer-sections.elemetal-footer .elemetal-footer__header-inner .elemetal-footer__grid {
	width: 100%;
}

#footer-sections.elemetal-footer .elemetal-footer__grid {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: space-between;
	column-gap: clamp(0.75rem, 2vw, 1.75rem);
	row-gap: 0.75rem;
}

#footer-sections.elemetal-footer .elemetal-footer__start {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 0.875rem 1.25rem;
	flex: 1 1 auto;
	min-width: 0;
}

#footer-sections.elemetal-footer .elemetal-footer__logo {
	flex: 0 0 auto;
	line-height: 0;
}

#footer-sections.elemetal-footer .elemetal-footer__logo img {
	display: block;
	width: auto;
	height: auto;
	/* Footer mark should read at branding size — old 2.5rem × 3rem box ignored intrinsic 250×212 */
	max-height: clamp(4rem, 12vw, 7.5rem);
	max-width: min(100%, 15.625rem);
	object-fit: contain;
}

#footer-sections.elemetal-footer .elemetal-footer__copyright {
	margin: 0;
	flex: 1 1 auto;
	min-width: 0;
	font-size: 0.9375rem;
	font-weight: 300;
	line-height: 1.45;
	color: var(--elemetal-footer-text) !important;
	letter-spacing: 0.01em;
}

#footer-sections.elemetal-footer .elemetal-footer__nav {
	flex: 0 1 auto;
	min-width: 0;
	margin: 0;
}

#footer-sections.elemetal-footer .elemetal-footer__linklist {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
	column-gap: clamp(1rem, 2.5vw, 2rem);
	row-gap: 0.5rem;
}

#footer-sections.elemetal-footer .elemetal-footer__linklist li {
	margin: 0;
	padding: 0;
	flex: 0 0 auto;
}

#footer-sections.elemetal-footer .elemetal-footer__nav a {
	font-size: 0.9375rem;
	font-weight: 300;
	line-height: 1.45;
	color: var(--elemetal-footer-text) !important;
	text-decoration: underline !important;
	text-underline-offset: 0.15em;
	letter-spacing: 0.01em;
}

#footer-sections.elemetal-footer .elemetal-footer__nav a:hover,
#footer-sections.elemetal-footer .elemetal-footer__nav a:focus-visible {
	color: var(--elemetal-footer-text-hover) !important;
}

@media (max-width: 767px) {
	#footer-sections.elemetal-footer .elemetal-footer__grid {
		flex-wrap: wrap;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
	}

	#footer-sections.elemetal-footer .elemetal-footer__start {
		flex-wrap: wrap;
		width: 100%;
	}

	#footer-sections.elemetal-footer .elemetal-footer__copyright {
		flex: 1 1 100%;
	}

	#footer-sections.elemetal-footer .elemetal-footer__linklist {
		flex-wrap: wrap;
	}
}

/* --------------------------------------------------------------------------
   Universal primary buttons / CTAs (teal pill, white label — one theme UI)
   Tuned to match Elemetal reference; scoped under #elemetal-site-root to coexist with WP admin.
   -------------------------------------------------------------------------- */
#elemetal-site-root,
.editor-styles-wrapper,
.block-editor-block-list__layout {
	--elemetal-btn-bg: #76c1b9;
	--elemetal-btn-bg-hover: #5eb0a6;
	--elemetal-btn-color: #ffffff;
	--elemetal-btn-radius: 8px;
	--elemetal-btn-font-weight: 600;
	--elemetal-btn-pad-y: 0.75rem;
	--elemetal-btn-pad-x: 1.5rem;
}

/* Primary filled control (header CTA, in-content links) */
:is(#elemetal-site-root, .editor-styles-wrapper) a.elemetal-button.elemetal-button--primary,
:is(#elemetal-site-root, .editor-styles-wrapper) .header-actions-action--cta a.elemetal-button--primary {
	box-sizing: border-box;
	display: inline-block;
	background: var(--elemetal-btn-bg) !important;
	background-image: none !important;
	color: var(--elemetal-btn-color) !important;
	border: none !important;
	border-radius: var(--elemetal-btn-radius) !important;
	box-shadow: none !important;
	font-weight: var(--elemetal-btn-font-weight) !important;
	font-size: 0.9375rem !important;
	line-height: 1.2 !important;
	padding: var(--elemetal-btn-pad-y) var(--elemetal-btn-pad-x) !important;
	text-decoration: none !important;
	text-align: center;
	transition: background-color 0.15s ease, color 0.15s ease, opacity 0.15s ease;
}

:is(#elemetal-site-root, .editor-styles-wrapper) a.elemetal-button.elemetal-button--primary:hover,
:is(#elemetal-site-root, .editor-styles-wrapper) a.elemetal-button.elemetal-button--primary:focus-visible,
:is(#elemetal-site-root, .editor-styles-wrapper) .header-actions-action--cta a.elemetal-button--primary:hover,
:is(#elemetal-site-root, .editor-styles-wrapper) .header-actions-action--cta a.elemetal-button--primary:focus-visible {
	background: var(--elemetal-btn-bg-hover) !important;
	color: var(--elemetal-btn-color) !important;
	outline: none;
}

/* Elemetal dynamic blocks: button colors/sizes from block attributes via CSS variables */
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-hero__button,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion__button,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-scrap__button,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-locations-teaser__button,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-features-six__button,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-configurable-content__button {
	box-sizing: border-box;
	display: inline-block;
	background: var(--elemetal-block-btn-bg, var(--elemetal-btn-bg)) !important;
	background-image: none !important;
	color: var(--elemetal-block-btn-color, var(--elemetal-btn-color)) !important;
	border: none !important;
	border-radius: var(--elemetal-btn-radius) !important;
	box-shadow: none !important;
	font-weight: var(--elemetal-btn-font-weight) !important;
	font-size: var(--elemetal-block-btn-size, 0.9375rem) !important;
	line-height: 1.2;
	padding: var(--elemetal-btn-pad-y) var(--elemetal-btn-pad-x);
	text-decoration: none;
	text-align: center;
	transition: background-color 0.15s ease, color 0.15s ease, opacity 0.15s ease;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-hero__button:hover,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-hero__button:focus-visible,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion__button:hover,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion__button:focus-visible,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-scrap__button:hover,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-scrap__button:focus-visible,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-locations-teaser__button:hover,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-locations-teaser__button:focus-visible,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-features-six__button:hover,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-features-six__button:focus-visible,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-configurable-content__button:hover,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-configurable-content__button:focus-visible {
	filter: brightness(0.92);
}

/* Core block theme: filled primary-style links (default teal only when the block has no custom colors) */
:is(#elemetal-site-root, .editor-styles-wrapper) .wp-block-button.is-style-fill:not(.has-background) .wp-block-button__link:not(.has-background):not([class*="-background-color"]),
:is(#elemetal-site-root, .editor-styles-wrapper) .wp-block-button:not(.is-style-outline):not(.is-style-outline--1):not(.has-background) .wp-block-button__link:not(.has-background):not([class*="-background-color"]) {
	background: var(--elemetal-btn-bg);
	border: none !important;
	border-radius: var(--elemetal-btn-radius) !important;
	font-weight: var(--elemetal-btn-font-weight) !important;
	padding: var(--elemetal-btn-pad-y) var(--elemetal-btn-pad-x) !important;
	text-decoration: none !important;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .wp-block-button.is-style-fill:not(.has-background) .wp-block-button__link:not(.has-background):not([class*="-background-color"]):not(.has-text-color):not([class*="-color"]),
:is(#elemetal-site-root, .editor-styles-wrapper) .wp-block-button:not(.is-style-outline):not(.is-style-outline--1):not(.has-background) .wp-block-button__link:not(.has-background):not([class*="-background-color"]):not(.has-text-color):not([class*="-color"]) {
	color: var(--elemetal-btn-color) !important;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .wp-block-button.is-style-fill:not(.has-background) .wp-block-button__link:not(.has-background):not([class*="-background-color"]):hover,
:is(#elemetal-site-root, .editor-styles-wrapper) .wp-block-button.is-style-fill:not(.has-background) .wp-block-button__link:not(.has-background):not([class*="-background-color"]):focus-visible,
:is(#elemetal-site-root, .editor-styles-wrapper) .wp-block-button:not(.is-style-outline):not(.is-style-outline--1):not(.has-background) .wp-block-button__link:not(.has-background):not([class*="-background-color"]):hover,
:is(#elemetal-site-root, .editor-styles-wrapper) .wp-block-button:not(.is-style-outline):not(.is-style-outline--1):not(.has-background) .wp-block-button__link:not(.has-background):not([class*="-background-color"]):focus-visible {
	background: var(--elemetal-btn-bg-hover) !important;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .wp-block-button.is-style-fill:not(.has-background) .wp-block-button__link:not(.has-background):not([class*="-background-color"]):not(.has-text-color):not([class*="-color"]):hover,
:is(#elemetal-site-root, .editor-styles-wrapper) .wp-block-button.is-style-fill:not(.has-background) .wp-block-button__link:not(.has-background):not([class*="-background-color"]):not(.has-text-color):not([class*="-color"]):focus-visible,
:is(#elemetal-site-root, .editor-styles-wrapper) .wp-block-button:not(.is-style-outline):not(.is-style-outline--1):not(.has-background) .wp-block-button__link:not(.has-background):not([class*="-background-color"]):not(.has-text-color):not([class*="-color"]):hover,
:is(#elemetal-site-root, .editor-styles-wrapper) .wp-block-button:not(.is-style-outline):not(.is-style-outline--1):not(.has-background) .wp-block-button__link:not(.has-background):not([class*="-background-color"]):not(.has-text-color):not([class*="-color"]):focus-visible {
	color: var(--elemetal-btn-color) !important;
}

/* 404 template: minimal copy, teal links (reference layout) */
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-404 {
	box-sizing: border-box;
	max-width: 42rem;
	margin: clamp(2rem, 6vw, 4rem) 0 clamp(3rem, 10vw, 6rem);
	padding: 0 clamp(0.5rem, 3vw, 1.5rem);
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	font-size: 1rem;
	line-height: 1.6;
	color: #1a1a1a;
	background: #ffffff;
	text-align: left;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-404__title {
	margin: 0 0 1rem;
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.35;
	color: #1a1a1a;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-404__lead {
	margin: 0 0 1rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-404__list {
	margin: 0 0 1.25rem;
	padding-left: 1.25rem;
	list-style-type: disc;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-404__list li {
	margin-bottom: 0.5rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-404__list li:last-child {
	margin-bottom: 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-404__outro {
	margin: 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-404 a {
	color: #97e5e2;
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-404 a:hover,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-404 a:focus-visible {
	color: #6bc9c4;
	outline: none;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-404 a:focus-visible {
	box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #97e5e2;
	border-radius: 2px;
}

/* Services landing page (/services/): accordion list + two-column “near you” band */
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-services-page__accordions-wrap {
	margin: 0 auto;
	max-width: 960px;
	padding: clamp(1.5rem, 4vw, 2.5rem) clamp(0.75rem, 3vw, 1.25rem) clamp(2rem, 5vw, 3rem);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-services-page__accordions {
	border-top: 1px solid #d9d9d9;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-services-page__accordion {
	border-bottom: 1px solid #d9d9d9;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-services-page__accordion-summary,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-services-page__accordion > summary {
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.1rem 0.25rem 1.1rem 0;
	cursor: pointer;
	font-size: 1.0625rem;
	font-weight: 600;
	color: #111;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-services-page__accordion-summary::-webkit-details-marker,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-services-page__accordion > summary::-webkit-details-marker {
	display: none;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-services-page__accordion-summary::after,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-services-page__accordion > summary::after {
	content: "";
	display: block;
	flex-shrink: 0;
	width: 0.5rem;
	height: 0.5rem;
	margin-right: 0.35rem;
	border-right: 2px solid #333;
	border-bottom: 2px solid #333;
	transform: rotate(45deg);
	transition: transform 0.2s ease;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-services-page__accordion[open] .elemetal-services-page__accordion-summary::after,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-services-page__accordion[open] > summary::after {
	transform: rotate(-135deg);
	margin-top: 0.25rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-services-page__accordion-panel {
	padding: 0 2rem 1.25rem 0;
	margin-top: -0.25rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper)
	.elemetal-services-page__accordion-panel.wp-block-group {
	padding: 0 2rem 1.25rem 0;
	margin-top: -0.25rem;
	min-height: unset;
	max-width: none;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-services-page__accordion-panel p {
	margin: 0;
	font-size: 1rem;
	line-height: 1.65;
	color: #333;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-services-page__near {
	background: #fff;
	padding: clamp(2rem, 6vw, 3.5rem) clamp(0.75rem, 3vw, 1.5rem);
	border-top: 1px solid #e8e8e8;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-services-page__near-columns {
	max-width: 1100px;
	margin: 0 auto;
	align-items: flex-start;
	gap: clamp(1.5rem, 4vw, 3rem);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-services-page__near-columns h2 {
	margin: 0;
	font-size: clamp(1.35rem, 2.5vw, 1.75rem);
	font-weight: 700;
	line-height: 1.3;
	color: #111;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-services-page__near-columns p {
	margin: 0 0 1rem;
	font-size: 1rem;
	line-height: 1.65;
	color: #333;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-services-page__near-columns a {
	color: #76c1b9;
	font-weight: 600;
	text-decoration: none;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-services-page__near-columns a:hover,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-services-page__near-columns a:focus-visible {
	text-decoration: underline;
}

/* Locations landing (/locations/, archive, template part locations-marketing) */
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-locations-page {
	max-width: 1200px;
	margin: 0 auto;
	padding: clamp(0.75rem, 2vw, 1.25rem) clamp(0.75rem, 3vw, 1.5rem) clamp(2.5rem, 6vw, 4rem);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-locations-page__intro-wrap {
	margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-locations-page__breadcrumbs {
	font-size: 0.8125rem;
	color: #555;
	margin: 0 0 1rem;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-locations-page__breadcrumbs a {
	color: #1e5a7a;
	text-decoration: none;
	font-weight: 500;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-locations-page__breadcrumbs a:hover,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-locations-page__breadcrumbs a:focus-visible {
	text-decoration: underline;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-locations-page__bc-sep {
	margin: 0 0.35rem;
	color: #888;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-locations-page__bc-current {
	color: #333;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-locations-page__title {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 0.5rem;
	color: #111;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-locations-page__sub {
	font-size: clamp(1.125rem, 2.2vw, 1.5rem);
	font-weight: 600;
	line-height: 1.35;
	margin: 0 0 1rem;
	color: #76c1b9;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-locations-page__lede {
	font-size: 1rem;
	line-height: 1.65;
	color: #333;
	margin: 0;
	max-width: 52rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-locations-map-wrap {
	margin: clamp(1rem, 3vw, 2rem) 0 clamp(2rem, 5vw, 3rem);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-locations-map {
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
	border: 1px solid #e5e5e5;
	background: #f5f5f5;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-locations-map iframe {
	display: block;
	width: 100%;
	min-height: 600px;
	border: none;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-locations-map__note {
	font-size: 0.8125rem;
	color: #666;
	margin: 0.75rem 0 0;
	line-height: 1.5;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-locations-map--mapbox canvas {
	outline: none;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-locations-map__pin {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: #1e5a7a;
	border: 2px solid #fff;
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
	cursor: pointer;
}

/* Get Started + Contact Form 7 (matches reference: ~40/60 cols, square fields, teal CTA) */
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-main--get-started:not(.elemetal-main--landing-marketing):not(.elemetal-main--landing-omaha) .sections {
	--elemetal-gs-navy: #1a4a6e;
	--elemetal-gs-teal: #50c2bc;
	--elemetal-gs-teal-hover: #45b0aa;
	--elemetal-gs-field-bg: #f0f0f0;
	--elemetal-gs-field-border: #333333;
	--elemetal-gs-divider: #a3a3a3;
	--elemetal-gs-label: #000000;
	--elemetal-gs-req-muted: #888888;
	--elemetal-gs-body: #4a4a4a;
	padding-top: clamp(1.5rem, 3vw, 2.5rem);
	padding-bottom: clamp(2.25rem, 5vw, 4rem);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-get-started-hero {
	display: flex;
	justify-content: center;
	text-align: center;
	margin: 0 0 clamp(1.5rem, 3.5vw, 2.25rem);
	padding: 0 0 clamp(1.35rem, 2.8vw, 1.85rem);
	border-bottom: 1px solid var(--elemetal-gs-divider, #a3a3a3);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-get-started-hero__inner {
	width: 100%;
	max-width: none;
	margin: 0 auto;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-get-started-hero__heading {
	max-width: none;
	margin: 0;
	font-size: clamp(1.5rem, 2.5vw + 1rem, 2.25rem) !important;
	font-weight: 700 !important;
	line-height: 1.22;
	letter-spacing: -0.02em;
	color: #000000;
	font-family: inherit;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-get-started__columns {
	margin-bottom: clamp(2rem, 4vw, 3rem);
	align-items: flex-start;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-get-started__columns.wp-block-columns {
	gap: clamp(2.25rem, 5vw, 3.5rem);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-get-started__columns > .wp-block-column:first-child {
	flex-basis: 40% !important;
	max-width: 40%;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-get-started__columns > .wp-block-column:nth-child(2) {
	flex-basis: 60% !important;
	max-width: 60%;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-get-started__columns--group {
	display: grid !important;
	grid-template-columns: minmax(0, 40%) minmax(0, 60%);
	gap: clamp(2.25rem, 5vw, 3.5rem);
	align-items: start;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-get-started__col-features,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-get-started__col-form {
	min-width: 0;
}

@media (max-width: 782px) {
	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-get-started__columns.wp-block-columns {
		flex-wrap: wrap !important;
	}

	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-get-started__columns > .wp-block-column:first-child,
	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-get-started__columns > .wp-block-column:nth-child(2) {
		flex-basis: 100% !important;
		max-width: 100%;
		flex-grow: 0 !important;
	}

	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-get-started__columns--group {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 782px) {
	:is(#elemetal-site-root, .editor-styles-wrapper)
	.elemetal-get-started__columns.is-not-stacked-on-mobile {
		flex-wrap: wrap;
	}
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-get-started-features__list {
	display: flex;
	flex-direction: column;
	gap: clamp(1.6rem, 3.5vw, 2.35rem);
	margin: 0;
	padding: 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-get-started-features__item {
	display: flex;
	gap: 1.125rem;
	align-items: flex-start;
	max-width: min(32rem, 100%);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-get-started-features__icon {
	flex-shrink: 0;
	width: 3.5rem;
	height: 3.5rem;
	border-radius: 0;
	background: transparent;
	color: var(--elemetal-gs-navy, #1a4a6e);
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding-top: 0.1rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-get-started-features__icon svg {
	display: block;
	width: 2.75rem;
	height: 2.75rem;
	color: inherit;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-get-started-features__icon-img {
	display: block;
	width: 2.75rem;
	height: 2.75rem;
	max-width: 100%;
	object-fit: contain;
	object-position: left top;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-get-started-features__title {
	margin: 0 0 0.45rem;
	font-size: 1.0625rem !important;
	font-weight: 700 !important;
	color: #000000;
	line-height: 1.28;
	letter-spacing: -0.015em;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-get-started-features__text {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.58;
	color: var(--elemetal-gs-body, #4a4a4a);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-cf7-form-block {
	border-radius: 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-cf7-form-block .wpcf7-form {
	margin: 0;
	max-width: 100%;
	text-align: left;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-cf7-form-block__hint {
	padding: 0.75rem 1rem;
	background: #f6f7f9;
	border: 1px dashed #cfd4dc;
	border-radius: 6px;
	font-size: 0.875rem;
	line-height: 1.45;
	color: #555;
	margin: 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-get-started-form .wpcf7-form-control-wrap,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-get-started-form span.wpcf7-form-control-wrap {
	display: block;
	width: 100%;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-get-started-form label.elemetal-gs-field,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-get-started-form .elemetal-gs-field {
	display: block;
	margin: 0 0 1.05rem;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--elemetal-gs-label, #000000);
	line-height: 1.35;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-get-started-form .elemetal-gs-req {
	font-weight: 400;
	color: var(--elemetal-gs-req-muted, #888888);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-get-started-form select.elemetal-gs-control,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-get-started-form select.wpcf7-select,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-get-started-form input.elemetal-gs-control,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-get-started-form textarea.elemetal-gs-control {
	width: 100%;
	box-sizing: border-box;
	margin-top: 0.35rem;
	padding: 0.7rem 0.8rem;
	font-size: 0.9375rem;
	line-height: 1.45;
	border: 1px solid var(--elemetal-gs-field-border, #333333);
	border-radius: 0;
	background-color: var(--elemetal-gs-field-bg, #f0f0f0);
	box-shadow: none;
	color: #000000;
	transition: border-color 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-get-started-form select.elemetal-gs-control,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-get-started-form select.wpcf7-select {
	appearance: auto;
	cursor: pointer;
	min-height: 2.75rem;
	padding-right: 2rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-get-started-form textarea.elemetal-gs-control {
	min-height: 8rem;
	resize: vertical;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-get-started-form input.elemetal-gs-control::placeholder,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-get-started-form textarea.elemetal-gs-control::placeholder {
	color: #999999;
	opacity: 1;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-get-started-form select.elemetal-gs-control:focus,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-get-started-form select.wpcf7-select:focus,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-get-started-form input.elemetal-gs-control:focus,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-get-started-form textarea.elemetal-gs-control:focus {
	outline: none;
	border-color: var(--elemetal-gs-teal, #50c2bc);
	background-color: #ffffff;
	box-shadow: 0 0 0 1px rgba(80, 194, 188, 0.35);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-get-started-form label.elemetal-gs-consent {
	display: block;
	font-size: 0.75rem;
	line-height: 1.58;
	font-weight: 400;
	color: #333333;
	margin: 1.15rem 0 1.25rem;
	cursor: pointer;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-get-started-form span.wpcf7-list-item-label {
	vertical-align: top;
	display: inline-block;
	max-width: calc(100% - 1.75rem);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-get-started-form span.wpcf7-list-item {
	margin: 0;
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-get-started-form span.wpcf7-list-item input[type="checkbox"] {
	margin: 0.15rem 0 0;
	vertical-align: top;
	flex-shrink: 0;
	width: auto;
	min-width: 1rem;
	min-height: 1rem;
	accent-color: var(--elemetal-gs-teal, #50c2bc);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-get-started-form .wpcf7-form p {
	text-align: left;
	margin-top: 0;
	margin-bottom: 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-get-started-form .wpcf7-form p + p {
	margin-top: 0.5rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-get-started-form .wpcf7-form p:last-of-type {
	margin-bottom: 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-get-started-form button.elemetal-gs-submit,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-get-started-form input.elemetal-gs-submit[type="submit"] {
	appearance: none;
	display: inline-block !important;
	box-sizing: border-box;
	width: auto !important;
	min-width: 8.5rem;
	margin-top: 0.35rem;
	padding: 0.65rem 1.85rem !important;
	border: none !important;
	border-radius: 5px !important;
	background: var(--elemetal-gs-teal, #50c2bc) !important;
	color: #ffffff !important;
	font-weight: 600 !important;
	font-size: 0.9375rem !important;
	cursor: pointer;
	box-shadow: none !important;
	text-shadow: none !important;
	transition: background-color 0.15s ease, filter 0.15s ease;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-get-started-form button.elemetal-gs-submit:hover,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-get-started-form input.elemetal-gs-submit[type="submit"]:hover,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-get-started-form button.elemetal-gs-submit:focus-visible,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-get-started-form input.elemetal-gs-submit[type="submit"]:focus-visible {
	background-color: var(--elemetal-gs-teal-hover, #45b0aa) !important;
	filter: none !important;
	outline: none !important;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-get-started-form span.wpcf7-spinner {
	margin-left: 0.5rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-get-started-form .wpcf7-response-output {
	margin-top: 0.85rem !important;
	font-size: 0.875rem;
	border-radius: 5px !important;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-get-started-footnotes {
	text-align: center;
	margin-top: clamp(1.75rem, 5vw, 3rem);
	padding: 0 clamp(1rem, 3vw, 1.5rem);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-get-started-footnotes__inner {
	max-width: 40rem;
	margin: 0 auto;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-get-started-footnotes__line {
	margin: 0 0 0.75rem;
	font-size: 0.9375rem;
	line-height: 1.55;
	color: #4a4a4a;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-get-started-footnotes__line:last-child {
	margin-bottom: 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-get-started-footnotes__link {
	color: var(--elemetal-gs-teal, #50c2bc);
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 0.12em;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-get-started-footnotes__link:hover,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-get-started-footnotes__link:focus-visible {
	color: var(--elemetal-gs-teal-hover, #45b0aa);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-get-started-footnotes__phone {
	font-weight: 700;
	color: #000000;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-get-started-footnotes__muted {
	color: var(--elemetal-gs-teal, #50c2bc);
	font-weight: 600;
	cursor: default;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-locations-directory-wrap {
	margin-top: clamp(0.5rem, 2vw, 1rem);
	padding-top: clamp(1.5rem, 4vw, 2.5rem);
	border-top: 1px solid #e8e8e8;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-locations-directory-wrap > h2 {
	margin-bottom: 0.5rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-locations-directory-wrap > p {
	margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-locations-directory__grid {
	column-count: 6;
	column-gap: clamp(0.75rem, 2vw, 1.25rem);
}

@media (max-width: 1100px) {
	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-locations-directory__grid {
		column-count: 3;
	}
}

@media (max-width: 600px) {
	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-locations-directory__grid {
		column-count: 2;
	}
}

@media (max-width: 420px) {
	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-locations-directory__grid {
		column-count: 1;
	}
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-locations-directory__state {
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin: 0 0 0.35rem;
	color: #111;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-locations-directory__state-block {
	break-inside: avoid;
	-webkit-column-break-inside: avoid;
	page-break-inside: avoid;
	margin-bottom: 0.65rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-locations-directory__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-locations-directory__list li {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.35;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-locations-directory__list a {
	color: #76c1b9;
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 0.12em;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-locations-directory__list a:hover,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-locations-directory__list a:focus-visible {
	color: #5aa89f;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-locations-page__accordions-wrap {
	margin: 0 auto;
	max-width: 960px;
	padding: clamp(2rem, 5vw, 3rem) clamp(0.75rem, 3vw, 1.25rem) clamp(1rem, 3vw, 2rem);
	border-top: 1px solid #e8e8e8;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-locations-page__accordions-wrap > .wp-block-heading,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-locations-page__accordions-wrap > h2.wp-block-heading {
	margin-bottom: clamp(1.25rem, 4vw, 1.85rem);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-locations-faqs.elemetal-services-page__accordions {
	margin-top: 0;
}

/* Single location (elemetal/location-detail) */
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-location-single {
	max-width: 1100px;
	margin: 0 auto;
	padding: clamp(0.75rem, 2vw, 1.5rem) clamp(0.75rem, 3vw, 1.5rem) clamp(2.5rem, 6vw, 4rem);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-location-single__breadcrumbs {
	font-size: 0.875rem;
	margin: 0 0 1rem;
	color: #76c1b9;
	font-weight: 500;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-location-single__breadcrumbs a {
	color: #1e5a7a;
	text-decoration: none;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-location-single__breadcrumbs a:hover,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-location-single__breadcrumbs a:focus-visible {
	text-decoration: underline;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-location-single__bc-sep {
	margin: 0 0.35rem;
	color: #888;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-location-single__bc-current {
	color: #333;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-location-single__title {
	font-size: clamp(1.5rem, 3.5vw, 2.25rem);
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 1rem;
	color: #111;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-location-single__intro {
	font-size: 1rem;
	line-height: 1.65;
	color: #333;
	margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-location-single__intro p {
	margin: 0 0 1rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-location-single__split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(1rem, 3vw, 2rem);
	align-items: start;
	margin-bottom: clamp(2rem, 5vw, 3rem);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-location-contact-map__split--map-left .elemetal-location-contact-map__card,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-location-contact-map__split--map-left .elemetal-location-single__card {
	order: 2;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-location-contact-map__split--map-left .elemetal-location-contact-map__map,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-location-contact-map__split--map-left .elemetal-location-single__map {
	order: 1;
}

@media (max-width: 782px) {
	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-location-single__split {
		grid-template-columns: 1fr;
	}
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-location-single__card {
	background: #76c1b9;
	color: #fff;
	padding: clamp(1.25rem, 3vw, 2rem);
	border-radius: 4px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-location-single__card a {
	color: #fff;
	text-decoration: underline;
	font-weight: 600;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-location-single__card-hours {
	font-size: 0.9375rem;
	line-height: 1.5;
	margin: 0.75rem 0;
	white-space: pre-line;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-location-single__card-line {
	margin: 0.5rem 0;
	font-size: 1rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-location-single__card-cta {
	margin: 1.25rem 0 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-location-single__card-all {
	margin: 0.75rem 0 0;
	font-size: 0.9375rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-location-single__card-all a {
	text-decoration: underline;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-location-single__btn {
	display: inline-block;
	padding: 0.65rem 1.5rem;
	background: #97e5e2;
	color: #0d3d3a !important;
	font-weight: 700;
	text-decoration: none !important;
	border-radius: 3px;
	font-size: 0.9375rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-location-single__btn:hover,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-location-single__btn:focus-visible {
	filter: brightness(0.95);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-location-single__map {
	border-radius: 4px;
	overflow: hidden;
	border: 1px solid #e5e5e5;
	min-height: 280px;
	background: #f0f0f0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-location-single__map iframe {
	display: block;
	width: 100%;
	height: 420px;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-location-single__h2 {
	font-size: clamp(1.25rem, 2.5vw, 1.65rem);
	font-weight: 700;
	margin: 0 0 0.75rem;
	color: #111;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-location-single__h3 {
	font-size: 1.125rem;
	font-weight: 700;
	margin: 2rem 0 0.75rem;
	color: #111;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-location-single__lead {
	margin: 0 0 1rem;
	line-height: 1.65;
	color: #333;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-location-single__services {
	margin-bottom: clamp(2rem, 5vw, 3rem);
	padding-bottom: clamp(1rem, 3vw, 2rem);
	border-bottom: 1px solid #e8e8e8;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-location-single__service-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-location-single__service-item {
	margin: 0 0 1rem;
	line-height: 1.55;
	font-size: 1rem;
	color: #333;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-location-single__service-title {
	color: #76c1b9;
	font-weight: 700;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-location-single__seo {
	margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-location-single__prose p {
	margin: 0 0 1rem;
	line-height: 1.65;
	color: #333;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-location-single__nearby {
	margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-location-single__nearby-list {
	list-style: disc;
	padding-left: 1.25rem;
	margin: 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-location-single__nearby-list a {
	color: #76c1b9;
	font-weight: 600;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-location-single__nearby-all {
	margin: 1.25rem 0 0;
	font-size: 1.1rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-location-single__nearby-all a {
	color: #76c1b9;
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 3px;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-location-single__faq {
	margin-bottom: clamp(2rem, 5vw, 3rem);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-location-single:has(.elemetal-location-single__band) {
	overflow-x: visible;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-location-single__band {
	position: relative;
	min-height: 280px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100vw;
	max-width: 100vw;
	margin-top: clamp(2rem, 6vw, 4rem);
	margin-bottom: 0;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	box-sizing: border-box;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-location-single__band-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-location-single__band-inner {
	position: relative;
	z-index: 1;
	text-align: center;
	padding: clamp(2rem, 5vw, 3.5rem) 1rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-location-single__band-heading {
	font-size: clamp(1.25rem, 3vw, 1.75rem);
	font-weight: 800;
	letter-spacing: 0.06em;
	color: #fff;
	margin: 0 0 1.25rem;
	text-transform: uppercase;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-location-single__btn--on-dark {
	background: #76c1b9;
	color: #0d3d3a !important;
}

/* —— Refining single (elemetal/refining-detail) ——
 * Mirrors elemetal.com/refining/{material}.html: full-bleed hero, "what we refine"
 * sidebar+photo, intro, material rows (h2 + body 2-col, image full-width), full-bleed
 * dark teal Industries band, FAQ accordion, stacked prefooter rows (heading | body).
 * Hero/Industries break out of `main#page.container` (1170px) using the 100vw bleed trick.
 */
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__container {
	width: 100%;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__hero {
	position: relative;
	background-color: #1a1a1a;
	background-image: var(--elemetal-ref-hero-bg, none);
	background-size: var(--elemetal-ref-hero-bg-size, cover);
	background-position: var(--elemetal-ref-hero-bg-position, center center);
	background-repeat: no-repeat;
	min-height: var(--elemetal-ref-hero-min-height, clamp(380px, 56vh, 580px));
	width: var(--elemetal-ref-hero-section-width, 100vw);
	max-width: var(--elemetal-ref-hero-section-max-width, none);
	margin-top: var(--elemetal-ref-hero-section-margin-top, 0);
	margin-left: var(--elemetal-ref-hero-section-margin-left, calc(50% - 50vw));
	margin-right: var(--elemetal-ref-hero-section-margin-right, calc(50% - 50vw));
	margin-bottom: var(--elemetal-ref-hero-section-margin-bottom, clamp(1.5rem, 4vw, 2.5rem));
	padding-top: var(--elemetal-ref-hero-section-padding-top, 0);
	padding-bottom: var(--elemetal-ref-hero-section-padding-bottom, 0);
	padding-left: var(--elemetal-ref-hero-section-padding-inline, 0);
	padding-right: var(--elemetal-ref-hero-section-padding-inline, 0);
	color: #fff;
	display: flex;
	align-items: var(--elemetal-ref-hero-align-items, center);
	justify-content: var(--elemetal-ref-hero-justify-content, center);
	box-sizing: border-box;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__hero--section-contained {
	width: var(--elemetal-ref-hero-section-width, 100%);
	max-width: var(--elemetal-ref-hero-section-max-width, 100%);
	margin-left: var(--elemetal-ref-hero-section-margin-left, 0);
	margin-right: var(--elemetal-ref-hero-section-margin-right, 0);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__hero-overlay {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__hero-inner {
	position: relative;
	z-index: 1;
	max-width: var(--elemetal-ref-hero-inner-max-width, var(--elemetal-content-max-width, 1200px));
	width: 100%;
	margin: var(--elemetal-ref-hero-inner-margin-top, 0) auto var(--elemetal-ref-hero-inner-margin-bottom, 0);
	padding: var(--elemetal-ref-hero-inner-padding-block, clamp(2.5rem, 7vw, 5rem))
		var(--elemetal-ref-hero-inner-padding-inline, var(--elemetal-content-pad-x, 1.25rem));
	box-sizing: border-box;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__hero-inner--full {
	max-width: 100%;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__hero-kicker {
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: var(--elemetal-block-sub-size, 0.8125rem);
	margin: 0 0 0.6rem;
	color: var(--elemetal-block-sub-color, #cfeae6);
	opacity: 0.95;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__hero-title {
	font-size: var(--elemetal-block-heading-size, clamp(2rem, 5vw, 3.25rem));
	font-weight: 800;
	line-height: 1.1;
	margin: 0 0 1.5rem;
	color: var(--elemetal-block-heading-color, #ffffff);
	max-width: 22ch;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__hero-intro {
	margin: 0 0 1.5rem;
	max-width: min(42ch, 100%);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__hero-intro .elemetal-refining-single__intro-grid {
	display: block;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__hero-intro .elemetal-refining-single__intro-body {
	font-size: var(--elemetal-block-body-size, clamp(1rem, 2vw, 1.125rem));
	line-height: 1.55;
	color: var(--elemetal-block-body-color, rgba(255, 255, 255, 0.92));
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__hero-intro .elemetal-refining-single__intro-body p {
	margin: 0 0 0.75rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__hero-intro .elemetal-refining-single__intro-body p:last-child {
	margin-bottom: 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__hero-intro .elemetal-refining-single__intro-body strong {
	color: inherit;
	font-weight: 600;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__hero-cta {
	margin: 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__hero-cta .elemetal-refining-single__btn {
	color: var(--elemetal-block-btn-color, #ffffff) !important;
	background: var(--elemetal-block-btn-bg, #2ec4b6) !important;
	font-size: var(--elemetal-block-btn-size, 0.9375rem);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__hero-cta.elemetal-text-align--center {
	text-align: center;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__hero-cta.elemetal-text-align--right {
	text-align: right;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__hero--with-ticker .elemetal-refining-single__hero-layout {
	display: grid;
	gap: clamp(1.25rem, 3vw, 2rem);
	align-items: center;
}

@media (min-width: 768px) {
	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__hero--with-ticker .elemetal-refining-single__hero-layout {
		grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
	}
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__hero-ticker .elemetal-nfusion-ticker {
	margin: 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__material-body .elemetal-refining-inline-figure {
	margin: 1.25rem 0 0;
	max-width: 100%;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__material-body .elemetal-refining-inline-figure--timetable img {
	width: 100%;
	height: auto;
	display: block;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__assoc-logos {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
	margin-top: 1.5rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__assoc-logo {
	margin: 0;
	padding: clamp(1.5rem, 4vw, 2.5rem) 1rem;
	background: #f3f3f3;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	min-height: 180px;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__assoc-logo img {
	max-width: 120px;
	width: 100%;
	height: auto;
	display: block;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__assoc-logo figcaption {
	margin: 0;
	font-size: 0.75rem;
	line-height: 1.35;
	color: rgba(0, 0, 0, 0.72);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__material--layout-stacked .elemetal-refining-single__material-row,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__material-row--stacked {
	grid-template-columns: 1fr;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__material--layout-stacked .elemetal-refining-single__material-h,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__material-row--stacked .elemetal-refining-single__material-h {
	margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
	max-width: none;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__material--why .elemetal-refining-single__material-h {
	margin-bottom: 0.5rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-why-layout {
	display: grid;
	gap: clamp(2rem, 5vw, 3rem);
}

@media (min-width: 900px) {
	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-why-layout {
		grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
		align-items: start;
	}
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-why-layout__customer-cols {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem 1.5rem;
	align-items: start;
}

@media (min-width: 600px) {
	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-why-layout__customer-cols {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 900px) {
	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-why-layout__customer-cols {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-why-layout__customer-cols > .wp-block-list,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-why-layout__customer-cols > ul,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-why-layout__customer-cols > .wp-block-group > .wp-block-list,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-why-layout__customer-cols > .wp-block-group > ul {
	margin: 0;
	padding: 0 0 0 1.1rem;
	list-style: disc;
	list-style-position: outside;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-why-layout__customers h3,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-why-layout__details h3 {
	font-size: 1.125rem;
	font-weight: 700;
	margin: 0 0 0.75rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-why-layout__details h3:not(:first-child) {
	margin-top: 1.75rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-timetable {
	width: 100%;
	border-collapse: collapse;
	margin: 0.75rem 0 0;
	font-size: 0.9375rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-timetable th,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-timetable td {
	border: 1px solid #111;
	padding: 0.5rem 0.65rem;
	text-align: left;
	vertical-align: top;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-timetable th {
	font-weight: 700;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-inline-figure--timetable {
	display: none;
}

@media (max-width: 899px) {
	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__assoc-logos {
		grid-template-columns: 1fr;
	}
}

/* Buttons */
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__btn {
	display: inline-block;
	padding: 0.85rem 1.6rem;
	background: #2ec4b6;
	color: #ffffff !important;
	font-weight: 600;
	text-decoration: none !important;
	border-radius: 4px;
	font-size: 0.9375rem;
	line-height: 1;
	border: 1px solid transparent;
	transition: background-color 0.2s ease, opacity 0.2s ease;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__btn:hover,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__btn:focus-visible {
	background: #25a99c;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__btn--secondary {
	background: transparent;
	color: #1a5a62 !important;
	border-color: #1a5a62;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__btn--secondary:hover,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__btn--secondary:focus-visible {
	background: rgba(26, 90, 98, 0.08);
}

/* Breadcrumbs */
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__breadcrumbs {
	font-size: 0.8125rem;
	color: rgba(0, 0, 0, 0.55);
	margin: 0 0 1.25rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__breadcrumbs a {
	color: #1a5a62;
	text-decoration: underline;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__bc-sep {
	margin: 0 0.25rem;
	color: rgba(0, 0, 0, 0.4);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__bc-current {
	color: rgba(0, 0, 0, 0.7);
}

/* "What we refine" — sidebar nav + featured photo */
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__what {
	margin: clamp(1.5rem, 4vw, 2.5rem) 0 0;
	padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
	border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__what-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(1.5rem, 4vw, 2.5rem);
	align-items: start;
}

@media (min-width: 768px) {
	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__what-grid {
		grid-template-columns: minmax(280px, 42%) 1fr;
		gap: clamp(2rem, 4vw, 3rem);
	}
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__what-nav-title {
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 700;
	margin: 0 0 clamp(1.25rem, 3vw, 2rem);
	color: #111;
	line-height: 1.2;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__what-nav-links {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin: 0;
	padding: 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__what-nav-item {
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.4;
	margin: 0;
	color: inherit;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__what-nav-item + .elemetal-refining-single__what-nav-item {
	margin-top: 1.5rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__what-nav-item a {
	font-size: 1rem;
	color: #1a5a62;
	text-decoration: underline;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__what-nav-item a:hover,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__what-nav-item a:focus-visible {
	color: #0a3d44;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__what-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__what-list li {
	margin: 0.4rem 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__what-list a {
	font-size: 1rem;
	color: #1a5a62;
	text-decoration: underline;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__what-list a:hover,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__what-list a:focus-visible {
	color: #0a3d44;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__what-media {
	margin: 0;
	align-self: start;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__what-media img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 4px;
	aspect-ratio: 3 / 2;
	object-fit: cover;
}

/* Intro band ("What is a gold refinery?") — H2 left, body right */
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__intro {
	margin: 0;
	padding-top: clamp(2.5rem, 6vw, 4.5rem);
	padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
	border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__intro-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(1rem, 2.5vw, 1.5rem);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__intro--stacked .elemetal-refining-single__intro-grid,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__intro--full .elemetal-refining-single__intro-grid {
	grid-template-columns: 1fr;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__intro-h {
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 700;
	color: #111;
	margin: 0;
	line-height: 1.2;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__intro-body {
	font-size: 1rem;
	line-height: 1.65;
	color: rgba(0, 0, 0, 0.82);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__intro-body p {
	margin: 0 0 1rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__intro-body p:last-child {
	margin-bottom: 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__intro--full .elemetal-refining-single__intro-grid {
	grid-template-columns: 1fr;
}

/* Material rows — H2 + body 2-col, full-width image below */
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__material {
	margin: 0;
	padding-top: clamp(2.5rem, 6vw, 4.5rem);
	padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
	scroll-margin-top: var(--elemetal-header-offset, 96px);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__material--has-image,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__material--why {
	border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__material-row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	align-items: start;
	margin-bottom: clamp(2rem, 4vw, 3rem);
}

@media (min-width: 768px) {
	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__material:not(.elemetal-refining-single__material--layout-stacked) .elemetal-refining-single__material-row:not(.elemetal-refining-single__material-row--stacked):not(.elemetal-refining-single__material-row--has-image),
	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__material--layout-two-column .elemetal-refining-single__material-row:not(.elemetal-refining-single__material-row--has-image),
	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__material-row--two-column:not(.elemetal-refining-single__material-row--has-image) {
		grid-template-columns: minmax(280px, 42%) 1fr;
		gap: clamp(2rem, 4vw, 3rem);
	}
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__material--first {
	margin-top: 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__material-h {
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 700;
	color: #111;
	margin: 0;
	line-height: 1.2;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__material-body {
	font-size: 1rem;
	line-height: 1.65;
	color: rgba(0, 0, 0, 0.82);
	margin: 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__material-body p {
	margin: 0 0 1rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__material-body p:last-child {
	margin-bottom: 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__material-body h3,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__material-body h4 {
	display: block;
	margin: 1.25rem 0 0.75rem;
	font-size: clamp(1.25rem, 2.5vw, 1.5rem);
	font-weight: 700;
	color: #111;
	line-height: 1.2;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__material--layout-stacked .elemetal-refining-single__material-h,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__material-row--stacked .elemetal-refining-single__material-h,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__material--first:not(.elemetal-refining-single__material--has-image) .elemetal-refining-single__material-h {
	margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__material--first:not(.elemetal-refining-single__material--has-image) .elemetal-refining-single__material-row {
	grid-template-columns: 1fr !important;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__material-body .wp-block-list,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__material-body ul,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__material-body ol {
	margin: 0.15rem 0 1.25rem 0;
	padding: 0 0 0 1.35rem;
	list-style: disc;
	list-style-position: outside;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__material-body ol {
	list-style: decimal;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__material-body .wp-block-list li,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__material-body ul li,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__material-body ol li {
	margin-bottom: 0.45rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__material-body .wp-block-list li > p,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__material-body ul li > p,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__material-body ol li > p {
	margin: 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__material-img-wrap {
	margin: 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__material-img-wrap img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 0;
	aspect-ratio: 3 / 2;
	object-fit: cover;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__material-col--copy {
	display: flex;
	flex-direction: column;
	gap: 0;
}

@media (min-width: 768px) {
	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__material-row--has-image {
		grid-template-columns: 1fr 1fr;
		gap: clamp(2rem, 4vw, 3rem);
		align-items: start;
		margin-bottom: 0;
	}

	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__material-row--has-image .elemetal-refining-single__material-h {
		margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
	}

	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__material-row--has-image .elemetal-refining-single__material-img-wrap {
		margin: 0;
	}

	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__material-row--has-image .elemetal-refining-single__material-img-wrap img {
		aspect-ratio: auto;
		max-height: 28rem;
		object-fit: cover;
	}
}

/* Stone-removal process section: H2 + intro full width, 3 h3s beside image, tail h3s below */
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__material--process-split > .elemetal-refining-single__material-h {
	margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__material-body--process-intro {
	margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__material-body--process-tail {
	margin-top: clamp(1.25rem, 3vw, 2rem);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__material-row--process-grid {
	margin-bottom: 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__account-cta-band--inline {
	margin-top: clamp(1rem, 2.5vw, 1.5rem);
	text-align: center;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__account-cta-band--inline .elemetal-refining-single__faq-more {
	text-align: center;
}

/* Why Choose: heading overlaid on full-width banner image (live stone-removal layout) */
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__material--image-top {
	display: flex;
	flex-direction: column;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__material-banner {
	position: relative;
	display: block;
	width: 100%;
	margin: 0 0 clamp(1.5rem, 4vw, 2.5rem);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__material-banner .elemetal-refining-single__material-img-wrap--banner {
	margin: 0;
	width: 100%;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__material-banner .elemetal-refining-single__material-img-wrap--banner img {
	width: 100%;
	display: block;
	max-height: clamp(280px, 42vw, 420px);
	min-height: clamp(220px, 32vw, 320px);
	aspect-ratio: 2.4 / 1;
	object-fit: cover;
	object-position: center center;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__material-h--banner {
	position: absolute;
	inset: 0 auto 0 0;
	z-index: 2;
	display: flex;
	align-items: center;
	width: min(100%, 42%);
	max-width: 32rem;
	margin: 0;
	padding: clamp(1rem, 3vw, 2rem);
	box-sizing: border-box;
	color: #111;
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 700;
	line-height: 1.15;
	pointer-events: none;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__material--image-top .elemetal-refining-single__material-row {
	position: relative;
	z-index: 1;
}

@media (max-width: 767px) {
	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__material-h--banner {
		position: static;
		width: 100%;
		max-width: none;
		padding: 0 0 clamp(0.75rem, 2vw, 1.25rem);
	}
}

.editor-styles-wrapper .elemetal-refining-single__material-h--banner {
	pointer-events: auto;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__material--process-split .elemetal-refining-single__material-col--media .elemetal-refining-single__material-img-wrap img {
	max-height: clamp(240px, 34vw, 380px);
	min-height: clamp(200px, 28vw, 280px);
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

/* Industries — full-bleed dark teal band, circular icons + "Learn More" CTAs */
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__industries {
	position: relative;
	background-color: #073b4c;
	background-size: cover;
	background-position: center;
	color: #ffffff;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	margin-top: clamp(2rem, 6vw, 4rem);
	margin-bottom: clamp(2rem, 6vw, 4rem);
	width: 100vw;
	max-width: none;
	padding: clamp(2.5rem, 6vw, 4rem) var(--elemetal-content-pad-x, 1.25rem);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__industries-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(7, 59, 76, 0.85), rgba(7, 59, 76, 0.92));
	pointer-events: none;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__industries-inner {
	position: relative;
	z-index: 1;
	max-width: var(--elemetal-content-max-width, 1200px);
	margin: 0 auto;
	text-align: center;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__industries-h {
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 700;
	margin: 0 0 clamp(1.5rem, 4vw, 2.5rem);
	color: #ffffff;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__industries-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(1.5rem, 3vw, 2rem) clamp(1rem, 2vw, 1.5rem);
	justify-items: center;
}

@media (min-width: 600px) {
	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__industries-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (min-width: 992px) {
	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__industries-grid {
		grid-template-columns: repeat(6, minmax(0, 1fr));
	}
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__industries-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 200px;
	width: 100%;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__industries-thumb {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.85);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__industries-thumb img {
	width: 60px;
	height: 60px;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__industries-title {
	font-size: 1rem;
	font-weight: 700;
	margin: 0 0 0.85rem;
	color: #ffffff;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__industries-cta {
	display: inline-block;
	padding: 0.65rem 1.25rem;
	background: #2ec4b6;
	color: #ffffff !important;
	text-decoration: none !important;
	border-radius: 4px;
	font-size: 0.875rem;
	font-weight: 500;
	min-width: 120px;
	text-align: center;
	transition: opacity 0.2s ease;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__industries-cta:hover,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__industries-cta:focus-visible {
	opacity: 0.85;
}

/* FAQ — native <details>/<summary> for accessibility (no JS needed) */
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__faq {
	margin: clamp(2rem, 5vw, 3rem) 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__h2 {
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 700;
	color: #111;
	margin: 0 0 1.5rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__faq-list {
	list-style: none;
	margin: 0;
	padding: 0;
	border-top: 1px solid rgba(0, 0, 0, 0.12);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__faq-item {
	border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__faq-details {
	margin: 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__faq-summary {
	list-style: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.5rem 0;
	font-size: 1.0625rem;
	font-weight: 600;
	color: #111;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__faq-summary::-webkit-details-marker {
	display: none;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__faq-q {
	flex: 1 1 auto;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__faq-icon {
	flex: 0 0 auto;
	width: 14px;
	height: 14px;
	position: relative;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__faq-icon::before,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__faq-icon::after {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 14px;
	height: 1px;
	background: #111;
	transition: transform 0.2s ease;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__faq-icon::before {
	transform: translateY(-50%);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__faq-icon::after {
	transform: translateY(-50%) rotate(90deg);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__faq-details[open] .elemetal-refining-single__faq-icon::after {
	transform: translateY(-50%) rotate(0);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__faq-a {
	padding: 0 0 1.5rem;
	font-size: 1rem;
	line-height: 1.65;
	color: rgba(0, 0, 0, 0.82);
	max-width: 70ch;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__faq-a p {
	margin: 0 0 1rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__faq-a p:last-child {
	margin-bottom: 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__faq-more {
	margin-top: 2rem;
	text-align: center;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__account-cta-band,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__get-started-cta-band {
	margin-top: clamp(2rem, 4vw, 2.5rem);
	text-align: center;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__account-cta-band .elemetal-refining-single__faq-more,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__get-started-cta-band .elemetal-refining-single__faq-more {
	margin-top: 0;
	margin-bottom: 0;
}

/* Pre-footer (locations + optional services): stacked rows, each row is heading | body (live 2-col) */
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__prefooter {
	padding: clamp(2rem, 5vw, 3rem) 0;
	margin-top: clamp(1.5rem, 4vw, 2.5rem);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__prefooter-grid {
	display: flex;
	flex-direction: column;
	gap: clamp(2.5rem, 5vw, 3.5rem);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__prefooter-row {
	display: grid;
	grid-template-columns: minmax(280px, 42%) 1fr;
	gap: clamp(2rem, 4vw, 3rem);
	align-items: start;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__prefooter-row__heading,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__prefooter-row__body {
	min-width: 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__prefooter-h {
	font-size: clamp(1.25rem, 2.5vw, 1.5rem);
	font-weight: 700;
	color: #111;
	margin: 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__prefooter-body {
	font-size: 1.1rem;
	line-height: 1.65;
	color: rgba(0, 0, 0, 0.82);
}

@media (max-width: 767px) {
	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__prefooter-row {
		grid-template-columns: 1fr;
	}
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__prefooter-body p {
	margin: 0 0 1rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__prefooter-body p:last-child {
	margin-bottom: 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__prefooter-media {
	grid-column: 1 / -1;
	margin: 0 0 1rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__prefooter-media img {
	display: block;
	width: 100%;
	max-width: 20rem;
	height: auto;
	border-radius: 4px;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__prefooter-links {
	margin: 0.75rem 0 0;
	padding-left: 1.25rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

/* Resource calculator pages (seeded HTML: intro, iframe, about / how-to / FAQ / CTA) */
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-calculator-page {
	width: 100%;
	max-width: var(--elemetal-content-max-width, 1200px);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--elemetal-content-pad-x);
	padding-right: var(--elemetal-content-pad-x);
	padding-bottom: clamp(1.5rem, 4vw, 3rem);
	box-sizing: border-box;
}

/* Shell above — head + iframe + prose share one column; inner blocks don’t re-narrow */
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-calculator-page .elemetal-resource-head {
	max-width: none;
	margin-left: 0;
	margin-right: 0;
	padding-left: 0;
	padding-right: 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-resource-head {
	max-width: 56rem;
	margin: 0 auto clamp(1rem, 3vw, 1.75rem);
	padding: 0 clamp(0.75rem, 3vw, 1.5rem);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-breadcrumbs {
	font-size: 0.8125rem;
	color: rgba(0, 0, 0, 0.55);
	margin: 0 0 0.75rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-breadcrumbs a {
	color: inherit;
	text-decoration: none;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-breadcrumbs a:hover,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-breadcrumbs a:focus-visible {
	text-decoration: underline;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-breadcrumbs__sep {
	margin: 0 0.35em;
	color: rgba(0, 0, 0, 0.35);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-resource-head__h {
	font-size: clamp(1.75rem, 4vw, 2.25rem);
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 0.5rem;
	color: #111;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-resource-head__lede {
	margin: 0 0 1rem;
	font-size: 1.0625rem;
	line-height: 1.5;
	color: rgba(0, 0, 0, 0.75);
	max-width: 42rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-calculator-nav {
	margin: 0 0 1.25rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-calculator-nav__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem 0.6rem;
	margin: 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-calculator-nav__link {
	display: inline-block;
	padding: 0.4rem 0.9rem;
	font-size: 0.875rem;
	font-weight: 600;
	text-decoration: none;
	color: #1a5a62;
	background: #f0f6f7;
	border: 1px solid rgba(26, 90, 98, 0.28);
	border-radius: 3px;
	line-height: 1.2;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-calculator-nav__link:hover,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-calculator-nav__link:focus-visible {
	color: #0a3d44;
	background: #e2eef0;
	border-color: rgba(26, 90, 98, 0.45);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-calculator-nav__link--current,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-calculator-nav__link.is-current,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-calculator-nav__link.current-page {
	color: #fff;
	background: #1a5a62;
	border-color: #1a5a62;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-resource-head__rule {
	border: 0;
	border-top: 1px solid rgba(0, 0, 0, 0.12);
	margin: 0 0 clamp(1.25rem, 3vw, 2rem);
}

/* Legacy: pasted Squarespace "cta-buttons" row — same styles if hrefs are fixed to this site */
:is(#elemetal-site-root, .editor-styles-wrapper) p.cta-buttons {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem 0.6rem;
	margin: 0 0 1.25rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper) p.cta-buttons a {
	display: inline-block;
	padding: 0.4rem 0.9rem;
	font-size: 0.875rem;
	font-weight: 600;
	text-decoration: none;
	color: #1a5a62;
	background: #f0f6f7;
	border: 1px solid rgba(26, 90, 98, 0.28);
	border-radius: 3px;
}

:is(#elemetal-site-root, .editor-styles-wrapper) p.cta-buttons a.current-page,
:is(#elemetal-site-root, .editor-styles-wrapper) p.cta-buttons a.is-current {
	color: #fff;
	background: #1a5a62;
	border-color: #1a5a62;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-calculator-page .elemetal-calculator {
	width: 100%;
	max-width: 100%;
	margin: 0 auto clamp(1.25rem, 3vw, 2rem);
	box-sizing: border-box;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-resource-prose {
	max-width: 56rem;
	margin: 0 auto;
	padding: clamp(1.5rem, 4vw, 3rem) clamp(0.75rem, 3vw, 1.5rem) clamp(2rem, 5vw, 4rem);
}

/* After .elemetal-resource-prose — higher specificity, no side padding (shell already pads) */
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-calculator-page .elemetal-resource-prose {
	max-width: none;
	margin-left: 0;
	margin-right: 0;
	padding: clamp(1.5rem, 4vw, 3rem) 0 clamp(2rem, 5vw, 4rem);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-resource-section {
	margin: 0 0 clamp(2rem, 5vw, 3rem);
	padding-bottom: clamp(1.5rem, 4vw, 2.5rem);
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-resource-section__h {
	font-size: clamp(1.25rem, 2.5vw, 1.5rem);
	font-weight: 700;
	margin: 0 0 1rem;
	color: #111;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-resource-section p {
	line-height: 1.65;
	margin: 0 0 1rem;
	color: rgba(0, 0, 0, 0.82);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-resource-section__disclaimer.is-small {
	font-size: 0.8125rem;
	color: rgba(0, 0, 0, 0.55);
	margin-top: 1.25rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-resource-steps {
	margin: 0 0 1rem;
	padding-left: 1.25rem;
	line-height: 1.65;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-resource-steps li {
	margin-bottom: 0.5rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-resource-bullets {
	margin: 0;
	padding-left: 1.25rem;
	list-style: disc;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-resource-bullets li {
	margin-bottom: 0.5rem;
	line-height: 1.6;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-resource-faq__list {
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-resource-faq__item {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-resource-faq__q {
	cursor: pointer;
	list-style: none;
	padding: 1rem 2.25rem 1rem 0;
	font-weight: 600;
	position: relative;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-resource-faq__q::-webkit-details-marker {
	display: none;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-resource-faq__q::after {
	content: "+";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	font-weight: 400;
	font-size: 1.25rem;
	color: rgba(0, 0, 0, 0.45);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-resource-faq__item[open] .elemetal-resource-faq__q::after {
	content: "−";
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-resource-faq__a {
	padding: 0 0 1rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-resource-faq__a p {
	margin-top: 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-resource-cta--refinery {
	position: relative;
	overflow: hidden;
	margin: clamp(2rem, 6vw, 4rem) calc(-1 * clamp(0.75rem, 3vw, 1.5rem)) 0;
	width: var(--elemetal-cta-section-width, calc(100% + 2 * clamp(0.75rem, 3vw, 1.5rem)));
	max-width: var(--elemetal-cta-section-max-width, none);
	margin-left: var(--elemetal-cta-section-margin-left, calc(-1 * clamp(0.75rem, 3vw, 1.5rem)));
	padding-top: var(--elemetal-cta-section-padding-top, clamp(2.5rem, 8vw, 4.5rem));
	padding-bottom: var(--elemetal-cta-section-padding-bottom, clamp(2.5rem, 8vw, 4.5rem));
	padding-left: var(--elemetal-cta-section-padding-inline, clamp(1rem, 4vw, 2rem));
	padding-right: var(--elemetal-cta-section-padding-inline, clamp(1rem, 4vw, 2rem));
	color: #fff;
	text-align: center;
}

/* Contained: stay in the content column (no horizontal breakout). */
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-resource-cta--refinery.elemetal-resource-cta--layout-contained {
	width: var(--elemetal-cta-section-width, 100%);
	max-width: var(--elemetal-cta-section-max-width, 100%);
	margin-left: var(--elemetal-cta-section-margin-left, 0);
	margin-right: var(--elemetal-cta-section-margin-right, 0);
}

/* Full viewport width — match spot-price scrap-banner breakout (both margins). */
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-resource-cta--refinery.elemetal-resource-cta--layout-full {
	width: var(--elemetal-cta-section-width, 100vw);
	max-width: var(--elemetal-cta-section-max-width, 100vw);
	margin-left: var(--elemetal-cta-section-margin-left, calc(50% - 50vw));
	margin-right: var(--elemetal-cta-section-margin-right, calc(50% - 50vw));
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-calculator-page:has(.elemetal-resource-cta--layout-full),
:is(#elemetal-site-root, .editor-styles-wrapper)
	.wp-block-elemetal-calculator-cta:has(.elemetal-resource-cta--layout-full) {
	overflow-x: visible;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-resource-cta--refinery.elemetal-resource-cta--default-bg {
	background:
		linear-gradient(rgba(13, 27, 36, 0.82), rgba(13, 27, 36, 0.88)),
		var(--elemetal-vis-gold-bullion)
		var(--elemetal-cta-bg-position, center) / var(--elemetal-cta-bg-size, cover) no-repeat;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-resource-cta__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-image: var(--elemetal-cta-bg-image, none);
	background-size: var(--elemetal-cta-bg-size, cover);
	background-position: var(--elemetal-cta-bg-position, center);
	background-repeat: no-repeat;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-resource-cta__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-resource-cta__inner {
	position: relative;
	z-index: 2;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-resource-cta--refinery .elemetal-resource-cta__h {
	color: var(--elemetal-block-heading-color, #fff);
	font-size: var(--elemetal-block-heading-size, clamp(1.35rem, 3vw, 1.75rem));
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-resource-cta--refinery .elemetal-resource-cta__p {
	color: var(--elemetal-block-body-color, rgba(255, 255, 255, 0.92));
	font-size: var(--elemetal-block-body-size, inherit);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-resource-cta--refinery .elemetal-resource-cta__button,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-resource-cta--refinery .elemetal-button--primary {
	background: var(--elemetal-block-btn-bg, #1e8489) !important;
	border-color: var(--elemetal-block-btn-bg, #1e8489) !important;
	color: var(--elemetal-block-btn-color, #fff) !important;
	font-size: var(--elemetal-block-btn-size, 0.9375rem) !important;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-resource-cta__inner {
	max-width: var(--elemetal-cta-inner-max-width, 36rem);
	margin: 0 auto;
	width: 100%;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-resource-cta__h {
	margin: 0 0 0.75rem;
	line-height: 1.25;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-resource-cta__p {
	margin: 0 0 1.25rem;
	line-height: 1.55;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-resource-cta__action {
	margin: 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-resource-cta--refinery .elemetal-resource-cta__button:hover,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-resource-cta--refinery .elemetal-resource-cta__button:focus-visible,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-resource-cta--refinery .elemetal-button--primary:hover,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-resource-cta--refinery .elemetal-button--primary:focus-visible {
	filter: brightness(1.08);
}

/* ============================================================
   Bullion product pages (archive, category, single)
   ============================================================ */

/* ── All-products hero (source: BULLION.jpg) — left title + CTA like live /bullion ── */
/* Archive content column — align with live (120px inset @ 1440px, no double body padding). */
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__hero {
	--elemetal-bullion-archive-inset: var(--elemetal-bullion-content-inset);
	--elemetal-bullion-hero-fallback: #1a1a1a;
	min-height: clamp(260px, 40vw, 520px);
	display: flex;
	align-items: center;
	justify-content: flex-start;
	background-color: var(--elemetal-bullion-hero-fallback);
	background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
		var(--elemetal-vis-bullion-hero);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: #fff;
	text-align: left;
	padding: clamp(2.25rem, 5vw, 3.5rem) var(--elemetal-bullion-archive-inset);
	position: relative;
	overflow: hidden;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__hero-inner {
	width: 100%;
	max-width: 100%;
	margin: 0;
	background-repeat: no-repeat;
}

@media (min-width: 768px) and (prefers-reduced-motion: no-preference) {
	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__hero.elemetal-bullion-archive__hero--parallax {
		background-attachment: fixed;
	}
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__hero h1 {
	color: #fff;
	font-size: clamp(2rem, 4.5vw, 2.75rem);
	font-weight: 700;
	margin: 0 0 0.5rem;
	line-height: 1.2;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__hero .elemetal-bullion-archive__hero-action {
	margin: 0.75rem 0 0;
}

/* ── Category hero (per term; default BULLION) ── */
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__hero {
	--u-bullion-hero: var(--elemetal-vis-bullion-hero);
	min-height: clamp(200px, 28vw, 360px);
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #1a1a1a;
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), var(--u-bullion-hero);
	background-size: cover;
	background-position: center;
	color: #fff;
	text-align: center;
	padding: clamp(1.75rem, 4vw, 2.75rem) var(--elemetal-bullion-content-inset);
}

body.elemetal-bullion-cat--gold :is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__hero,
body.elemetal-bullion-cat--silver :is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__hero,
body.elemetal-bullion-cat--platinum :is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__hero,
body.elemetal-bullion-cat--palladium :is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__hero {
	min-height: clamp(180px, 20vw, 280px);
	justify-content: flex-start;
	text-align: left;
	align-items: center;
}

body.elemetal-bullion-cat--gold :is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__hero-title,
body.elemetal-bullion-cat--silver :is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__hero-title,
body.elemetal-bullion-cat--platinum :is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__hero-title,
body.elemetal-bullion-cat--palladium :is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__hero-title {
	font-size: clamp(2rem, 3.77vw, 3.395rem);
	font-weight: 500;
	margin: 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__hero[style*="--elemetal-bullion-cat-hero-bg"] {
	background-image: linear-gradient(
			var(--elemetal-bullion-cat-hero-overlay, rgba(0, 0, 0, 0.5)),
			var(--elemetal-bullion-cat-hero-overlay, rgba(0, 0, 0, 0.5))
		),
		var(--elemetal-bullion-cat-hero-bg);
}

/* /bullion/bullion-archive/ — first fold matches live: left-aligned title + CTA like main BULLION hero */
body.elemetal-bullion-cat--bullion-archive :is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__hero {
	min-height: clamp(280px, 36vw, 480px);
	justify-content: flex-start;
	text-align: left;
}

body.elemetal-bullion-cat--gold :is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__hero {
	--u-bullion-hero: var(--elemetal-vis-gold-bullion);
}

body.elemetal-bullion-cat--silver :is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__hero {
	--u-bullion-hero: var(--elemetal-vis-silver-banner);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__hero-title {
	color: #fff;
	font-size: clamp(1.9rem, 4vw, 2.65rem);
	font-weight: 700;
	margin: 0;
	line-height: 1.2;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__hero-action {
	margin: 1rem 0 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__hero-button,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__hero .elemetal-bullion-cat__hero-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 8rem;
	border-radius: 4px;
	background: #36c7c9;
	color: #fff;
	font-size: 0.85rem;
	font-weight: 600;
	padding: 0.75rem 1.25rem;
	text-decoration: none;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__hero-button:hover,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__hero-button:focus-visible,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__hero .elemetal-bullion-cat__hero-button:hover,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__hero .elemetal-bullion-cat__hero-button:focus-visible {
	background: #1e8489;
	color: #fff;
}

/* Precious Metal Trading — full marketing layout ( /bullion/precious-metal-trading/ ) */
body.elemetal-bullion-cat--precious-metal-trading :is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__hero {
	justify-content: flex-start;
	text-align: left;
	min-height: clamp(360px, 50vw, 520px);
}

body.elemetal-bullion-cat--precious-metal-trading :is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__hero-inner,
body.elemetal-bullion-cat--precious-metal-trading :is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-pmt__hero-inner {
	position: relative;
	z-index: 1;
	color: #fff;
}

body.elemetal-bullion-cat--precious-metal-trading :is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-pmt__hero-inner .elemetal-bullion-cat__hero-title {
	margin: 0 0 1rem;
	font-size: clamp(2.25rem, 5vw, 4rem);
	font-weight: 500;
	line-height: 1.15;
}

body.elemetal-bullion-cat--precious-metal-trading :is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-pmt__hero-inner .elemetal-bullion-pmt__tagline {
	color: #fff !important;
	font-family: "DIN Light", sans-serif;
	font-size: clamp(1.15rem, 2vw, 1.35rem);
	font-weight: 400;
	max-width: 42rem;
	margin: 0 0 1.5rem;
	line-height: 1.5;
}

body.elemetal-bullion-cat--precious-metal-trading :is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-pmt__tagline {
	color: #fff;
	max-width: none;
	margin: 0.75rem 0 0;
	line-height: 1.55;
	font-size: clamp(0.95rem, 1.5vw, 1.1rem);
}

#elemetal-site-root .elemetal-bullion-pmt__main {
	max-width: min(1200px, 100%);
	margin: 0 auto;
	padding: 0 var(--elemetal-content-pad-x, 1rem);
}

#elemetal-site-root .elemetal-bullion-pmt__h3--intro {
	font-size: clamp(1.15rem, 2.2vw, 1.4rem);
	font-weight: 700;
	margin: 0 0 0.75rem;
	line-height: 1.35;
}

#elemetal-site-root .elemetal-bullion-pmt__h3 {
	font-size: clamp(1.05rem, 1.8vw, 1.2rem);
	font-weight: 700;
	margin: 0 0 0.5rem;
}

#elemetal-site-root .elemetal-bullion-pmt__p,
#elemetal-site-root .elemetal-bullion-pmt__prose p {
	margin: 0 0 1rem;
	line-height: 1.6;
}

#elemetal-site-root .elemetal-bullion-pmt__link,
#elemetal-site-root .elemetal-bullion-pmt__prose a {
	color: #36c7c9;
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 2px;
}

#elemetal-site-root .elemetal-bullion-pmt__link:hover,
#elemetal-site-root .elemetal-bullion-pmt__link:focus-visible,
#elemetal-site-root .elemetal-bullion-pmt__prose a:hover,
#elemetal-site-root .elemetal-bullion-pmt__prose a:focus-visible {
	color: #1e8489;
}

#elemetal-site-root .elemetal-bullion-pmt__rule {
	border: 0;
	border-top: 1px solid #e0e0e0;
	margin: 2rem 0;
}

#elemetal-site-root .elemetal-bullion-pmt__faq-title {
	font-size: clamp(1.35rem, 2.5vw, 1.6rem);
	font-weight: 700;
	margin: 2.5rem 0 0.5rem;
}

/* Bullion FAQ accordion — category + PMT (match live Squarespace spacing/UI) */
#elemetal-site-root main.elemetal-main--bullion-category .elemetal-bullion-pmt__faq {
	margin-top: 2.5rem;
	margin-bottom: 0;
	padding-top: 0;
}

#elemetal-site-root main.elemetal-main--bullion-category .elemetal-bullion-pmt__faq-title {
	font-family: "DIN Pro", sans-serif;
	font-size: 39.92px;
	font-weight: 500;
	margin: 0;
	padding-bottom: 0;
	border-bottom: none;
	color: #000;
	line-height: 1.2;
}

#elemetal-site-root main.elemetal-main--bullion-category .elemetal-bullion-pmt__faq-list {
	border-top: none;
	margin-top: 0.75rem;
	margin-bottom: 5rem;
}

#elemetal-site-root main.elemetal-main--bullion-category .elemetal-bullion-pmt__faq-list .elemetal-resource-faq__item {
	border-bottom: none;
}

#elemetal-site-root main.elemetal-main--bullion-category .elemetal-bullion-pmt__faq-list .elemetal-resource-faq__item::before {
	content: "";
	display: block;
	height: 1px;
	background: #000;
}

#elemetal-site-root main.elemetal-main--bullion-category .elemetal-bullion-pmt__faq-list .elemetal-resource-faq__q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	cursor: pointer;
	list-style: none;
	padding: 30px 0;
	font-family: "DIN Pro", sans-serif;
	font-size: 25.52px;
	font-weight: 500;
	line-height: 1.2;
	color: #000;
	position: relative;
	overflow: visible;
}

#elemetal-site-root main.elemetal-main--bullion-category .elemetal-bullion-pmt__faq-list .elemetal-resource-faq__q::-webkit-details-marker {
	display: none;
}

#elemetal-site-root main.elemetal-main--bullion-category .elemetal-bullion-pmt__faq-list .elemetal-resource-faq__q::marker {
	content: "";
}

#elemetal-site-root main.elemetal-main--bullion-category .elemetal-bullion-pmt__faq-list .elemetal-resource-faq__q::after {
	content: "";
	flex: 0 0 14px;
	width: 9px;
	height: 9px;
	min-width: 14px;
	margin-left: 14px;
	align-self: center;
	box-sizing: border-box;
	border: none;
	border-right: 1px solid #000;
	border-bottom: 1px solid #000;
	background: none;
	font-size: 0;
	color: transparent;
	transform: rotate(45deg);
	transform-origin: center center;
	overflow: visible;
}

#elemetal-site-root main.elemetal-main--bullion-category .elemetal-bullion-pmt__faq-list .elemetal-resource-faq__item[open] .elemetal-resource-faq__q::after {
	content: "";
	transform: rotate(-135deg);
}

#elemetal-site-root main.elemetal-main--bullion-category .elemetal-bullion-pmt__faq-list .elemetal-resource-faq__a {
	padding: 0 0 30px;
	font-family: "DIN Light", sans-serif;
	font-size: 15.44px;
	line-height: 1.8;
	color: #000;
}

#elemetal-site-root main.elemetal-main--bullion-category .elemetal-bullion-pmt__faq-list .elemetal-resource-faq__a p {
	margin: 0 0 1rem;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
}

#elemetal-site-root main.elemetal-main--bullion-category .elemetal-bullion-pmt__faq-list .elemetal-resource-faq__a p:last-child {
	margin-bottom: 0;
}

#elemetal-site-root .elemetal-bullion-pmt__faq {
	margin-top: 2.5rem;
}

#elemetal-site-root main.elemetal-main--bullion-category .elemetal-bullion-pmt__faq {
	margin-top: 2.5rem;
}

#elemetal-site-root .elemetal-bullion-pmt__cta--dealer {
	display: grid;
	gap: 1.25rem;
	margin-top: 2.5rem;
}

@media (min-width: 768px) {
	#elemetal-site-root .elemetal-bullion-pmt__cta--dealer {
		grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
		align-items: start;
	}
}

#elemetal-site-root .elemetal-bullion-pmt__cta-title {
	font-size: clamp(1.2rem, 2.2vw, 1.45rem);
	font-weight: 700;
	margin: 0 0 0.5rem;
	line-height: 1.3;
}

#elemetal-site-root .elemetal-bullion-pmt__wholesale-cols {
	display: grid;
	gap: 1.5rem;
	align-items: start;
}

@media (min-width: 900px) {
	#elemetal-site-root .elemetal-bullion-pmt__wholesale-cols {
		grid-template-columns: minmax(0, 0.4fr) minmax(0, 1fr);
	}
}

#elemetal-site-root .elemetal-bullion-pmt__btn-secondary {
	display: inline-block;
	background: #215570;
	color: #fff;
	font-weight: 600;
	font-size: 0.9rem;
	padding: 0.85rem 1.4rem;
	border-radius: 4px;
	text-decoration: none;
	line-height: 1.3;
}

#elemetal-site-root .elemetal-bullion-pmt__btn-secondary:hover,
#elemetal-site-root .elemetal-bullion-pmt__btn-secondary:focus-visible {
	background: #1a4258;
	color: #fff;
}

#elemetal-site-root .elemetal-bullion-pmt__p--btn {
	margin: 0 0 0.5rem;
}

#elemetal-site-root .elemetal-bullion-pmt__ctas {
	margin-top: 1rem;
	padding-bottom: 2.5rem;
}

body.elemetal-bullion-cat--precious-metal-trading #sections > .alignfull.elemetal-bullion-archive__cta:last-of-type {
	display: none;
}

body.elemetal-bullion-cat--precious-metal-trading .elemetal-bullion-cat__header .wp-block-term-description {
	display: none;
}

/* ── Intro row below archive hero (breadcrumbs) ── */
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__header {
	padding: 2.5rem 0 0;
	margin-bottom: 0;
	background: #fff;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__header {
	padding: 1.75rem 0 1.25rem;
	margin-bottom: 0;
	background: #fff;
}

/* Live /bullion/: Home link teal + underlined; current page grey. */
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__header .elemetal-breadcrumbs {
	font-size: 15.44px;
	color: #888;
	margin: 0 0 3.5rem;
	line-height: 1.4;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__header .elemetal-breadcrumbs a {
	color: #4cc2bb;
	text-decoration: underline;
	text-underline-offset: 0.12em;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__header .elemetal-breadcrumbs a:hover,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__header .elemetal-breadcrumbs a:focus-visible {
	color: #1e8489;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__header .elemetal-breadcrumbs .elemetal-breadcrumbs__current,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__header .elemetal-breadcrumbs .elemetal-breadcrumbs__sep {
	color: #888;
	text-decoration: none;
}

/* Bullion single breadcrumbs */
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__header .elemetal-breadcrumbs {
	font-size: 15.44px;
	font-family: "DIN Light", sans-serif;
	color: #888;
	margin: 0 0 2rem;
	line-height: 1.4;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__header .elemetal-breadcrumbs a {
	color: #4cc2bb;
	text-decoration: underline;
	text-underline-offset: 0.12em;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__header .elemetal-breadcrumbs a:hover,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__header .elemetal-breadcrumbs a:focus-visible,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__header .elemetal-breadcrumbs a:hover,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__header .elemetal-breadcrumbs a:focus-visible,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__header .elemetal-breadcrumbs a:hover,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__header .elemetal-breadcrumbs a:focus-visible {
	color: #1e8489;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__header .elemetal-breadcrumbs .elemetal-breadcrumbs__current,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__header .elemetal-breadcrumbs .elemetal-breadcrumbs__current,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__header .elemetal-breadcrumbs .elemetal-breadcrumbs__current {
	color: #888;
	text-decoration: none;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__header .elemetal-breadcrumbs .elemetal-breadcrumbs__sep,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__header .elemetal-breadcrumbs .elemetal-breadcrumbs__sep,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__header .elemetal-breadcrumbs .elemetal-breadcrumbs__sep {
	color: #b0b0b0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__lede,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__cat-nav,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__header > p {
	display: none;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__intro {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
	gap: clamp(2rem, 8vw, 5rem);
	align-items: start;
	padding: clamp(1.75rem, 5vw, 3rem) 0 clamp(2rem, 5vw, 3.25rem);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__intro h2 {
	font-size: clamp(1.55rem, 3vw, 2rem);
	line-height: 1.25;
	margin: 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__intro p {
	margin: 0;
	font-size: 1rem;
	line-height: 1.65;
	color: #333;
}

/* Bullion Archive — sqsrte-large style body + underlined key phrase (elemetal.com) */
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__intro .elemetal-bullion-cat__intro-lede {
	margin: 0;
	font-size: clamp(1.05rem, 1.4vw, 1.2rem);
	line-height: 1.65;
	color: #333;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__intro .elemetal-bullion-cat__intro-em {
	text-decoration: underline;
	text-underline-offset: 0.12em;
}

@media (max-width: 768px) {
	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__intro {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
}

/* ── Category nav pills ── */
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__cat-nav {
	gap: 0.5rem;
	margin: 1.25rem 0 0;
	flex-wrap: wrap;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__cat-nav .wp-block-button__link {
	font-size: 0.8rem;
	padding: 0.3rem 0.9rem;
	border-color: #1e5a7a;
	color: #1e5a7a;
	border-radius: 3px;
	text-decoration: none;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__cat-nav .wp-block-button__link:hover {
	background: #1e5a7a;
	color: #fff;
}

/* ── Category sections: heading rule + spacing ── */
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__section {
	margin-top: 2.5rem;
	padding-bottom: 2rem;
	border-bottom: none;
}

#elemetal-site-root article .elemetal-bullion-archive__header + .elemetal-bullion-archive__section {
	margin-top: 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__section > h2.wp-block-heading,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__section-heading {
	display: block;
	font-family: "DIN Pro", sans-serif;
	font-size: 39.92px;
	font-weight: 500;
	margin: 0;
	padding-bottom: 0;
	border-bottom: none;
	color: #000;
	line-height: 1.2;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__section > h2.wp-block-heading a,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__section-heading a {
	display: inline;
	color: #4cc2bb;
	text-decoration: underline;
	text-underline-offset: 3px;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__section > h2.wp-block-heading a:hover,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__section-heading a:hover,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__section > h2.wp-block-heading a:focus-visible,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__section-heading a:focus-visible {
	color: #1e8489;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__section > h2.wp-block-heading::after,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__section-heading::after {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	margin-top: 2.125rem;
	background: #000;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__section {
	margin-top: 2.5rem;
	margin-bottom: 3rem;
	padding-bottom: 0;
	border-bottom: none;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__section + .elemetal-bullion-archive__section {
	margin-top: 3.5rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__section .wp-block-query {
	margin-top: 1.25rem;
	max-width: 100%;
	overflow-x: clip;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__section .wp-block-query-is-layout-flow {
	border-top: none;
	padding-top: 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__header .elemetal-breadcrumbs {
	font-size: 15.44px;
	color: #888;
	margin: 0 0 2rem;
	line-height: 1.4;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__header .elemetal-breadcrumbs a {
	color: #4cc2bb;
	text-decoration: underline;
	text-underline-offset: 0.12em;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__header .elemetal-breadcrumbs a:hover,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__header .elemetal-breadcrumbs a:focus-visible {
	color: #1e8489;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__header .elemetal-breadcrumbs .elemetal-breadcrumbs__current,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__header .elemetal-breadcrumbs .elemetal-breadcrumbs__sep {
	color: #888;
	text-decoration: none;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__intro h2 {
	font-size: 39.92px;
	line-height: 1.25;
	margin: 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__section-heading {
	display: block;
	font-family: "DIN Pro", sans-serif;
	font-size: 25.52px;
	font-weight: 500;
	margin: 0;
	padding-bottom: 0;
	border-bottom: none;
	color: #000;
	line-height: 1.2;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__section-heading::after {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	margin-top: 1.5rem;
	background: #000;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__section .elemetal-bullion-cat__grid {
	margin-top: 1.25rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	height: 100%;
	min-height: 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__grid {
	align-items: stretch;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__product-figure {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 0;
	margin: 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__product-title {
	flex: 0 0 auto;
	margin: auto 0 0;
	padding-top: 0.35rem;
	font-family: "DIN Light", sans-serif;
	font-size: 15.44px;
	font-weight: 400 !important;
	text-decoration: none;
	text-align: center;
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__product-title a {
	display: inline;
	color: #4cc2bb;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
	text-decoration-skip-ink: auto;
	white-space: nowrap;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__product-title a:hover,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__product-title a:focus-visible {
	color: #1e8489;
	text-decoration-thickness: 1px;
}

/* Full-catalog style (e.g. long landing): H2 per metal, then H3 groups */
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__section-heading--metal {
	font-size: clamp(1.35rem, 2.8vw, 1.75rem);
	margin-top: 2.75rem;
	margin-bottom: 1rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__metal-block:first-of-type .elemetal-bullion-cat__section-heading--metal {
	margin-top: 0;
}

/* Bullion archive taxonomy: series banners + H3 subsections (matches production layout) */
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__section--archive-series {
	margin-top: 2.75rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__section--archive-series:first-of-type {
	margin-top: 1.5rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__archive-series-banner {
	margin: 0 0 1rem;
	text-align: center;
	line-height: 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__archive-series-banner-img {
	display: block;
	width: 100%;
	max-width: 1155px;
	height: auto;
	margin-left: auto;
	margin-right: auto;
	object-fit: contain;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__section-heading--archive-series {
	margin-top: 0.5rem;
}

/* Archive grid: optional side-by-side pair tiles (non-baseball series) */
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__product-figure--pair {
	margin: 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__archive-pair-link {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(0.35rem, 1.5vw, 0.75rem);
	align-items: stretch;
	text-decoration: none;
	color: inherit;
	min-width: 0;
	width: 100%;
}

/* Baseball Greats — portrait card scale on archive hover stack */
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__section--archive-series[aria-labelledby="elemetal-bullion-archive-baseball-greats"] .elemetal-bullion-cat__grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 768px) {
	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__section--archive-series[aria-labelledby="elemetal-bullion-archive-baseball-greats"] .elemetal-bullion-cat__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

/* Archive series — center image + title as one column (live / Privateer parity) */
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__section--archive-series .elemetal-bullion-cat__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__section--archive-series .elemetal-bullion-cat__product-figure {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__section--archive-series .elemetal-bullion-cat__product-link {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	max-width: 100%;
	margin-inline: auto;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__section--archive-series .elemetal-bullion-cat__product-figure .elemetal-bullion-listing__hover-pair.has-reverse {
	display: block;
	margin-inline: auto;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__section--archive-series .elemetal-bullion-cat__product-title {
	align-self: stretch;
	width: 100%;
	max-width: 100%;
	text-align: center !important;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__section--archive-series .elemetal-bullion-cat__product-title a {
	display: inline-block;
	text-align: center;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__archive-pair-cell {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	background: #fafafa;
	border-radius: 2px;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__product-figure--pair .elemetal-bullion-cat__product-image {
	width: 100%;
	height: auto;
	max-height: min(220px, 28vw);
	object-fit: contain;
}

/* Archive — image category strip */
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__cross-nav {
	margin: 2rem 0 2.5rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid #d9d9d9;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__cross-nav-title {
	margin: 0 0 1rem;
	font-size: clamp(1rem, 1.8vw, 1.15rem);
	font-weight: 700;
	color: #1a1a1a;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__cross-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(0.75rem, 2vw, 1.25rem);
	list-style: none;
	margin: 0;
	padding: 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__cross-item {
	margin: 0;
	min-width: 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__cross-card {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	text-decoration: none;
	color: #1a1a1a;
	border: 1px solid #e3e3e3;
	border-radius: 4px;
	overflow: hidden;
	background: #fff;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
	height: 100%;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__cross-card:hover,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__cross-card:focus-visible {
	border-color: #36c7c9;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__cross-card.is-current {
	border-color: #134057;
	box-shadow: inset 0 0 0 1px #134057;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__cross-media {
	display: block;
	line-height: 0;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #f4f4f4;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__cross-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__cross-label {
	display: block;
	padding: 0.65rem 0.75rem;
	font-size: 0.8125rem;
	font-weight: 600;
	text-align: center;
}

@media (max-width: 700px) {
	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__cross-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Full-catalog landing: gold bars/coins sub-grids (IHAF once forced fixed squares). */
:is(#elemetal-site-root, .editor-styles-wrapper) main.elemetal-main--bullion-category h3#elemetal-bullion-group-gold-bars + ul.elemetal-bullion-cat__grid img,
:is(#elemetal-site-root, .editor-styles-wrapper) main.elemetal-main--bullion-category h3#elemetal-bullion-group-gold-coins + ul.elemetal-bullion-cat__grid img {
	height: auto;
	max-height: none;
	object-fit: contain;
	contain-intrinsic-size: auto;
}

/* IHAF legacy: 210×210 on li.elemetal_bullion — restore live archive cell layout. */
#elemetal-site-root main.elemetal-main--bullion-archive .elemetal-bullion-archive__section .wp-block-post.elemetal_bullion,
#elemetal-site-root main.elemetal-main--bullion-archive .elemetal-bullion-archive__section li.elemetal_bullion {
	height: auto !important;
	width: auto !important;
	max-width: 100% !important;
	min-height: 0 !important;
}

#elemetal-site-root main.elemetal-main--bullion-archive .elemetal-bullion-archive__item.wp-block-group.is-layout-flow {
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	width: 100% !important;
	height: 100% !important;
	min-height: 0 !important;
}

#elemetal-site-root main.elemetal-main--bullion-archive .elemetal-bullion-archive__item.is-layout-flow > * {
	margin-block-start: 0 !important;
}

#elemetal-site-root main.elemetal-main--bullion-archive .elemetal-bullion-archive__item.is-layout-flow > .wp-block-post-title {
	margin: auto 0 0 !important;
	padding-top: 0.35rem !important;
}

#elemetal-site-root main.elemetal-main--bullion-archive .elemetal-bullion-archive__item .wp-block-post-featured-image {
	flex: 1 1 auto !important;
	min-height: 0 !important;
}

#elemetal-site-root main.elemetal-main--bullion-archive .elemetal-bullion-archive__item .wp-block-post-title {
	display: block !important;
	flex: 0 0 auto !important;
	margin: auto 0 0 !important;
	padding-top: 0.35rem !important;
	position: relative !important;
	z-index: 2 !important;
	width: 100% !important;
}

/* ── Product grid ── */
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__grid,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	column-gap: clamp(1.25rem, 3vw, 2rem);
	row-gap: clamp(2rem, 5vw, 3.25rem);
	margin-bottom: 2rem;
	justify-items: center;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__grid {
	list-style: none;
	padding-left: 0;
}

@media (max-width: 1024px) {
	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__grid,
	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 768px) {
	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__grid,
	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__grid,
	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__grid {
		grid-template-columns: 1fr;
	}
}

/* ── Product cells: open grid, no card chrome (live Elemetal list style) ── */
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__item,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__item {
	border: 0;
	border-radius: 0;
	box-shadow: none;
	background: transparent;
	list-style: none;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__item {
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	width: 100% !important;
	height: 100% !important;
	min-height: 0 !important;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__grid {
	align-items: stretch;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__item:hover,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__item:hover {
	box-shadow: none;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__item .wp-block-post-featured-image,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__item .wp-block-post-featured-image {
	background: transparent;
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 0;
	height: auto;
	overflow: visible;
	margin: 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__item .wp-block-post-featured-image a:not(.elemetal-bullion-cat__product-link),
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__item .wp-block-post-featured-image a:not(.elemetal-bullion-cat__product-link) {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 180px;
	height: auto;
}

:is(#elemetal-site-root, .editor-styles-wrapper) main.elemetal-main--bullion-archive .elemetal-bullion-cat__product-link,
:is(#elemetal-site-root, .editor-styles-wrapper) main.elemetal-main--bullion-archive .wp-block-post-featured-image a,
:is(#elemetal-site-root, .editor-styles-wrapper) main.elemetal-main--bullion-archive .wp-block-post-featured-image a.elemetal-bullion-cat__product-link,
:is(#elemetal-site-root, .editor-styles-wrapper) main.elemetal-main--bullion-category .wp-block-post-featured-image a.elemetal-bullion-cat__product-link {
	display: block;
	width: fit-content;
	height: auto;
	max-width: none;
	min-height: 0;
	margin: 55px 55px 20px 55px;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__item .wp-block-post-featured-image img,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion__thumb,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-listing__face {
	width: auto;
	max-width: 100%;
	height: auto;
	object-fit: contain;
	background: transparent;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__item .wp-block-post-featured-image img,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__item .elemetal-bullion-listing__face {
	max-height: clamp(160px, 22vw, 260px);
	padding: 0.5rem 0.25rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__item .elemetal-bullion-listing__hover-pair.has-reverse .elemetal-bullion-listing__face {
	max-height: 100%;
	padding: 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) main.elemetal-main--bullion-archive .elemetal-bullion-cat__product-image,
:is(#elemetal-site-root, .editor-styles-wrapper) main.elemetal-main--bullion-archive .wp-block-post-featured-image .elemetal-bullion-cat__product-image {
	max-height: none;
	padding: 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__product-figure .elemetal-bullion-listing__hover-link {
	display: block;
	width: auto;
	height: auto;
	text-decoration: none;
	color: inherit;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__product-link {
	display: block;
	width: fit-content;
	max-width: none;
	margin: 0 auto;
	text-decoration: none;
	color: inherit;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__product-figure .elemetal-bullion-listing__face,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__product-image.elemetal-bullion-listing__face {
	width: auto;
	max-width: 100%;
	padding: 0;
	contain-intrinsic-size: auto;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__product-figure .elemetal-bullion-listing__hover-pair {
	position: relative;
	width: auto;
	max-width: 100%;
	margin: 0 auto;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__product-figure .elemetal-bullion-listing__hover-pair.has-reverse {
	display: inline-block;
	position: relative;
	overflow: hidden;
	vertical-align: top;
	flex-shrink: 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__product-figure .elemetal-bullion-listing__hover-pair.has-reverse .elemetal-bullion-listing__face.is-obverse {
	position: relative;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: none;
	margin: 0;
	padding: 0;
	object-fit: contain;
	object-position: center center;
	transition: opacity 0.25s ease;
	opacity: 1;
	z-index: 1;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__product-figure .elemetal-bullion-listing__hover-pair.has-reverse .elemetal-bullion-listing__face.is-reverse {
	position: absolute;
	top: 0;
	left: 0;
	width: auto;
	max-width: none;
	height: auto;
	max-height: none;
	margin: 0;
	padding: 0;
	object-fit: contain;
	object-position: center center;
	transition: opacity 0.25s ease;
	opacity: 0;
	z-index: 2;
}

@media (hover: hover) {
	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__product-figure .elemetal-bullion-listing__hover-pair.has-reverse:hover .elemetal-bullion-listing__face.is-obverse,
	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__product-figure .elemetal-bullion-listing__hover-link:hover .elemetal-bullion-listing__hover-pair.has-reverse .elemetal-bullion-listing__face.is-obverse,
	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__product-figure .elemetal-bullion-cat__product-link:hover .elemetal-bullion-listing__hover-pair.has-reverse .elemetal-bullion-listing__face.is-obverse {
		opacity: 0;
	}

	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__product-figure .elemetal-bullion-listing__hover-pair.has-reverse:hover .elemetal-bullion-listing__face.is-reverse,
	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__product-figure .elemetal-bullion-listing__hover-link:hover .elemetal-bullion-listing__hover-pair.has-reverse .elemetal-bullion-listing__face.is-reverse,
	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__product-figure .elemetal-bullion-cat__product-link:hover .elemetal-bullion-listing__hover-pair.has-reverse .elemetal-bullion-listing__face.is-reverse {
		opacity: 1;
	}
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__product-figure .elemetal-bullion-listing__face {
	width: auto;
	max-width: 100%;
	padding: 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__product-figure {
	display: flex;
	flex: 1 1 auto;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 0;
	margin: 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__product-figure a {
	display: block;
	width: auto;
	max-width: none;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__product-image {
	display: block;
	width: auto;
	max-width: none;
	padding: 0;
	object-fit: contain;
}

/* Archive series fluid columns — full width (wins over listing width:auto / fixed px inline stack) */
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__section--archive-series[aria-labelledby="elemetal-bullion-archive-baseball-greats"] .elemetal-bullion-cat__product-link,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__section--archive-series[aria-labelledby="elemetal-bullion-archive-baseball-greats"] .elemetal-bullion-cat__product-figure a,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__section--archive-series[aria-labelledby="elemetal-bullion-archive-secretariat"] .elemetal-bullion-cat__product-link,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__section--archive-series[aria-labelledby="elemetal-bullion-archive-secretariat"] .elemetal-bullion-cat__product-figure a {
	display: flex;
	justify-content: center;
	width: 100%;
	max-width: 100%;
	margin-inline: auto;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__section--archive-series[aria-labelledby="elemetal-bullion-archive-baseball-greats"] .elemetal-bullion-listing__hover-pair,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__section--archive-series[aria-labelledby="elemetal-bullion-archive-baseball-greats"] .elemetal-bullion-listing__hover-pair.has-reverse,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__section--archive-series[aria-labelledby="elemetal-bullion-archive-secretariat"] .elemetal-bullion-listing__hover-pair,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__section--archive-series[aria-labelledby="elemetal-bullion-archive-secretariat"] .elemetal-bullion-listing__hover-pair.has-reverse {
	display: block;
	width: 100%;
	max-width: 100%;
	margin-inline: auto;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__section--archive-series[aria-labelledby="elemetal-bullion-archive-baseball-greats"] .elemetal-bullion-listing__face,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__section--archive-series[aria-labelledby="elemetal-bullion-archive-baseball-greats"] .elemetal-bullion-cat__product-image,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__section--archive-series[aria-labelledby="elemetal-bullion-archive-baseball-greats"] .elemetal-bullion-listing__hover-pair.has-reverse .elemetal-bullion-listing__face.is-obverse,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__section--archive-series[aria-labelledby="elemetal-bullion-archive-baseball-greats"] .elemetal-bullion-listing__hover-pair.has-reverse .elemetal-bullion-listing__face.is-reverse,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__section--archive-series[aria-labelledby="elemetal-bullion-archive-secretariat"] .elemetal-bullion-listing__face,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__section--archive-series[aria-labelledby="elemetal-bullion-archive-secretariat"] .elemetal-bullion-cat__product-image,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__section--archive-series[aria-labelledby="elemetal-bullion-archive-secretariat"] .elemetal-bullion-listing__hover-pair.has-reverse .elemetal-bullion-listing__face.is-obverse,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__section--archive-series[aria-labelledby="elemetal-bullion-archive-secretariat"] .elemetal-bullion-listing__hover-pair.has-reverse .elemetal-bullion-listing__face.is-reverse {
	width: 100%;
	max-width: 100%;
	height: auto;
	max-height: min(280px, 29.17vw);
	object-fit: contain;
	object-position: center center;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__section--archive-series[aria-labelledby="elemetal-bullion-archive-baseball-greats"] .elemetal-bullion-listing__hover-pair.has-reverse .elemetal-bullion-listing__face.is-reverse,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__section--archive-series[aria-labelledby="elemetal-bullion-archive-secretariat"] .elemetal-bullion-listing__hover-pair.has-reverse .elemetal-bullion-listing__face.is-reverse {
	left: 0;
	right: 0;
}

/* Listing grids: obverse default, reverse on hover (archive query loop only) */
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__item .elemetal-bullion-listing__hover-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	text-decoration: none;
	color: inherit;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__item .elemetal-bullion-listing__hover-pair:not(.has-reverse) {
	position: relative;
	display: block;
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__item .elemetal-bullion-listing__hover-pair.has-reverse {
	display: inline-block;
	position: relative;
	overflow: hidden;
	width: auto;
	max-width: 100%;
	margin: 0 auto;
	flex-shrink: 0;
	box-sizing: border-box;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__item .elemetal-bullion-listing__hover-pair.has-reverse .elemetal-bullion-listing__face.is-obverse {
	position: relative;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: none;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	object-fit: contain;
	object-position: center center;
	transition: opacity 0.25s ease;
	opacity: 1;
	z-index: 1;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__item .elemetal-bullion-listing__hover-pair.has-reverse .elemetal-bullion-listing__face.is-reverse {
	position: absolute;
	top: 0;
	left: 0;
	width: auto;
	max-width: none;
	height: auto;
	max-height: none;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	object-fit: contain;
	object-position: center center;
	transition: opacity 0.25s ease;
	opacity: 0;
	z-index: 2;
}

@media (hover: hover) {
	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__item .elemetal-bullion-listing__hover-pair.has-reverse:hover .elemetal-bullion-listing__face.is-obverse,
	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__item .elemetal-bullion-listing__hover-link:hover .elemetal-bullion-listing__hover-pair.has-reverse .elemetal-bullion-listing__face.is-obverse,
	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__item .elemetal-bullion-cat__product-link:hover .elemetal-bullion-listing__hover-pair.has-reverse .elemetal-bullion-listing__face.is-obverse {
		opacity: 0;
	}

	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__item .elemetal-bullion-listing__hover-pair.has-reverse:hover .elemetal-bullion-listing__face.is-reverse,
	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__item .elemetal-bullion-listing__hover-link:hover .elemetal-bullion-listing__hover-pair.has-reverse .elemetal-bullion-listing__face.is-reverse,
	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__item .elemetal-bullion-cat__product-link:hover .elemetal-bullion-listing__hover-pair.has-reverse .elemetal-bullion-listing__face.is-reverse {
		opacity: 1;
	}
}

@media (prefers-reduced-motion: reduce) {
	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__item .elemetal-bullion-listing__hover-pair.has-reverse .elemetal-bullion-listing__face {
		transition: none;
	}
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__item .wp-block-post-title,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__item .wp-block-post-title,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__product-title {
	font-size: 0.9rem;
	font-weight: 400 !important;
	flex: 0 0 auto !important;
	display: block !important;
	margin: auto 0 0 !important;
	padding: 0.35rem 0.25rem 0 !important;
	text-align: center;
	text-decoration: none;
	line-height: 1.35;
	width: 100%;
	max-width: 100%;
	position: relative;
	z-index: 2;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__item .wp-block-post-title,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__product-title {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__item .wp-block-post-title,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__item .wp-block-post-title a {
	font-family: "DIN Light", sans-serif;
	font-size: 15.44px;
	font-weight: 400 !important;
	white-space: normal;
	overflow: visible;
	text-overflow: unset;
	line-height: 1.35;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__item .wp-block-post-title {
	text-decoration: none;
	color: inherit;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__item .wp-block-post-title a {
	display: inline;
	color: #4cc2bb;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
	text-decoration-skip-ink: auto;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__item .wp-block-post-title a,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__product-title a {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
	text-decoration-skip-ink: auto;
	color: #4cc2bb;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__item .wp-block-post-title a:hover,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__item .wp-block-post-title a:focus-visible {
	color: #1e8489;
	text-decoration-thickness: 1px;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__item .wp-block-post-title a:hover,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__product-title a:hover,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-cat__product-title a:focus-visible {
	color: #1e8489;
	text-decoration-thickness: 1px;
}

/* ── Pre-footer CTA band ── */
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__cta {
	background: #f8f8f8;
	padding: 3rem 1.5rem;
	margin-top: 3rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__cta h2 {
	font-size: clamp(1.4rem, 3vw, 2rem);
}

/* Pre-footer CTA — two columns (45% / 55%); targets live wp-block-columns markup */
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__cta > .wp-block-columns {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: clamp(1.5rem, 4vw, 3.5rem);
	width: 100%;
	max-width: var(--elemetal-content-max-width, 1200px);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--elemetal-content-pad-x, 1.5rem);
	padding-right: var(--elemetal-content-pad-x, 1.5rem);
	box-sizing: border-box;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__cta > .wp-block-columns > .wp-block-column:first-child {
	flex: 0 0 45% !important;
	max-width: 45%;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__cta > .wp-block-columns > .wp-block-column:last-child {
	flex: 0 0 55% !important;
	max-width: 55%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__cta .wp-block-column:first-child .wp-block-heading,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__cta .wp-block-column:first-child h2 {
	margin: 0 0 1rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__cta .wp-block-column:last-child p {
	font-size: clamp(0.95rem, 1.1vw, 1.15rem);
	line-height: 1.65;
	margin: 0 0 0.75rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__cta .wp-block-button__link {
	background: #000;
	color: #fff;
	border-radius: 4px;
	padding: 0.85rem 1.75rem;
	font-weight: 600;
	text-decoration: none;
}

@media (max-width: 781px) {
	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__cta > .wp-block-columns > .wp-block-column:first-child,
	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-archive__cta > .wp-block-columns > .wp-block-column:last-child {
		flex: 0 0 100% !important;
		max-width: 100%;
	}
}

/* ── Single product (matches Elemetal product detail) ── */
/* Match header/footer column: main is full-bleed; article is the 1200px content shell. */
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__article-wrap {
	display: block;
	width: 100%;
	max-width: var(--elemetal-content-max-width);
	margin-left: auto;
	margin-right: auto;
	padding: 0 var(--elemetal-content-pad-x) 3rem;
	box-sizing: border-box;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-main--bullion-single {
	padding-top: 1.5rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__title-block .wp-block-post-title {
	margin: 0;
	font-family: "DIN Pro", sans-serif;
	font-size: 54.32px;
	font-weight: 500;
	color: #000;
	line-height: 1.24;
	border-bottom: none;
	padding-bottom: 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__title-block .wp-block-separator.elemetal-bullion-single__title-rule {
	margin: 0 0 2rem;
	border: 0;
	border-top: 1px solid #bbb;
	width: 100%;
	background: none;
	height: 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__layout {
	gap: clamp(1.25rem, 3vw, 2rem) clamp(1.5rem, 4vw, 2.75rem) !important;
	margin-top: 0.25rem;
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
	align-items: flex-start !important;
}

:is(#elemetal-site-root, .editor-styles-wrapper) main.elemetal-main--bullion-single article#sections > .elemetal-bullion-single__layout {
	display: grid !important;
	grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
	gap: clamp(0.75rem, 2vw, 1.25rem);
	visibility: visible;
}

:is(#elemetal-site-root, .editor-styles-wrapper) main.elemetal-main--bullion-single article#sections > .elemetal-bullion-single__layout > .elemetal-bullion-single__col-gallery {
	grid-column: 1;
	min-width: 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) main.elemetal-main--bullion-single article#sections > .elemetal-bullion-single__layout > .elemetal-bullion-single__col-specs {
	grid-column: 2;
	min-width: 0;
	padding-top: 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) main.elemetal-main--bullion-single .elemetal-bullion-single__gallery.is-multi-figure {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(0.5rem, 1.5vw, 1rem);
	align-items: stretch;
}

:is(#elemetal-site-root, .editor-styles-wrapper) main.elemetal-main--bullion-single .elemetal-bullion-single__gallery.is-gallery-count-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

:is(#elemetal-site-root, .editor-styles-wrapper) main.elemetal-main--bullion-single .elemetal-bullion-single__gallery.is-gallery-count-4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 768px) {
	:is(#elemetal-site-root, .editor-styles-wrapper) main.elemetal-main--bullion-single .elemetal-bullion-single__gallery.is-multi-figure {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

:is(#elemetal-site-root, .editor-styles-wrapper) main.elemetal-main--bullion-single .elemetal-bullion-single__gallery.is-obv-rev {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(0.5rem, 1.5vw, 1rem);
	align-items: stretch;
}

:is(#elemetal-site-root, .editor-styles-wrapper) main.elemetal-main--bullion-single .elemetal-bullion-single__figure-frame {
	aspect-ratio: 1 / 1;
	width: 100%;
	min-height: 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) main.elemetal-main--bullion-single .elemetal-bullion-single__shroud-img {
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: none;
	object-fit: contain;
}

:is(#elemetal-site-root, .editor-styles-wrapper) main.elemetal-main--bullion-single article#sections .elemetal-bullion-single__title-block {
	display: block;
}

:is(#elemetal-site-root, .editor-styles-wrapper) main.elemetal-main--bullion-single .elemetal-bullion-single__body,
:is(#elemetal-site-root, .editor-styles-wrapper) main.elemetal-main--bullion-single .elemetal-bullion-single__article-body {
	display: block;
	visibility: visible;
	overflow: visible;
}

:is(#elemetal-site-root, .editor-styles-wrapper)
	.elemetal-bullion-single__layout.is-layout-flex
	> .wp-block-group.elemetal-bullion-single__col-gallery,
:is(#elemetal-site-root, .editor-styles-wrapper)
	.elemetal-bullion-single__layout.is-layout-flex
	> .wp-block-group.elemetal-bullion-single__col-specs {
	flex: 1 1 calc(50% - 0.75rem) !important;
	min-width: 0;
	box-sizing: border-box;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__layout .wp-block-column {
	min-width: 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__col-gallery {
	padding-right: clamp(0, 1.5vw, 0.75rem);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__col-specs {
	padding-top: 0.15rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__gallery {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(0.5rem, 1.5vw, 0.75rem) clamp(0.5rem, 1.5vw, 1rem);
	align-items: start;
	width: 100%;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__gallery.is-single-figure {
	grid-template-columns: 1fr;
	max-width: 100%;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__figure {
	margin: 0;
	text-align: center;
	min-width: 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__figure-frame {
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 220px;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__shroud-img {
	display: block;
	margin: 0 auto;
	width: 100%;
	max-width: 100%;
	height: auto;
	max-height: 420px;
	object-fit: contain;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__figure-cap {
	margin: 0.5rem 0 0;
	font-family: "DIN Light", sans-serif;
	font-size: 15.44px;
	font-weight: 500;
	letter-spacing: normal;
	text-transform: none;
	color: #888;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__specs {
	margin: 0 0 1rem;
	padding: 0;
	display: block;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__spec-row {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin: 0 0 0.35rem;
	font-family: "DIN Light", sans-serif;
	font-size: 15.44px;
	line-height: 1.45;
	color: #000;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__spec-dt {
	margin: 0;
	font-weight: 600;
	color: #000;
	flex: 0 0 auto;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__spec-dd {
	margin: 0;
	font-weight: 600;
	color: #000;
	min-width: 0;
	overflow-wrap: anywhere;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__body {
	margin-top: 2.5rem;
	max-width: 100%;
	overflow-wrap: anywhere;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__body .entry-content,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__body,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__article-body {
	font-family: "DIN Light", sans-serif;
	font-size: 15.44px;
	line-height: 1.8;
	color: #000;
	max-width: 100%;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__body h2,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__body h3,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__article-body h2,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__article-body h3 {
	font-family: "DIN Pro", sans-serif;
	font-size: 39.92px;
	font-weight: 500;
	color: #000;
	margin: 2.5rem 0 1rem;
	padding-bottom: 0;
	border-bottom: none;
	line-height: 1.3;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__body h2:first-child,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__body h3:first-child {
	margin-top: 0;
}

/* Key-feature list labels — live uses underlined headings (Purity, Design, etc.). */
:is(#elemetal-site-root, .editor-styles-wrapper) main.elemetal-main--bullion-single .elemetal-bullion-single__article-body .wp-block-list u,
:is(#elemetal-site-root, .editor-styles-wrapper) main.elemetal-main--bullion-single .elemetal-bullion-single__body .wp-block-list u,
:is(#elemetal-site-root, .editor-styles-wrapper) main.elemetal-main--bullion-single .elemetal-bullion-single__article-body .wp-block-list-item u,
:is(#elemetal-site-root, .editor-styles-wrapper) main.elemetal-main--bullion-single .elemetal-bullion-single__body .wp-block-list-item u {
	text-decoration: underline !important;
	text-underline-offset: 0.12em;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__action-bar {
	margin-top: 2.5rem;
	padding-bottom: 0.5rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__action-buttons {
	gap: 1rem 1.25rem;
	width: 100%;
	justify-content: center !important;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__action-buttons .wp-block-button {
	flex: 1 1 200px;
	max-width: 400px;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__btn--navy .wp-block-button__link {
	background-color: #23527c;
	border-color: #23527c;
	color: #fff;
	border-width: 0;
	border-radius: 4px;
	font-size: 0.85rem;
	font-weight: 600;
	text-align: center;
	padding: 0.9rem 1.25rem;
	white-space: normal;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__btn--navy .wp-block-button__link:hover,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__btn--navy .wp-block-button__link:focus-visible {
	background: #1a3f5f;
	border-color: #1a3f5f;
	color: #fff;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__btn--teal .wp-block-button__link {
	background-color: #4fbdb6;
	border-color: #4fbdb6;
	color: #fff;
	border-width: 0;
	border-radius: 4px;
	font-size: 0.85rem;
	font-weight: 600;
	text-align: center;
	padding: 0.9rem 1.25rem;
	white-space: normal;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__btn--teal .wp-block-button__link:hover,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__btn--teal .wp-block-button__link:focus-visible {
	background: #36a39d;
	border-color: #36a39d;
	color: #fff;
}

/* Legacy spec table in old post content (if any) */
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion__spec-table {
	width: 100%;
	border-collapse: collapse;
	margin: 1.25rem 0;
	font-size: 0.9rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion__spec-table th,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion__spec-table td {
	padding: 0.5rem 0.75rem;
	border: 1px solid #e5e5e5;
	text-align: left;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion__spec-table th {
	background: #f5f5f5;
	font-weight: 600;
	width: 35%;
}

/* American Gold Eagle fractional comparison table (follows "Compare … Fractionals" heading) */
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__article-body .wp-block-heading + .wp-block-table table.coin-spec-table,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__article-body .wp-block-heading + .wp-block-table table.elemetal-bullion-fractional-compare,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__article-body .wp-block-heading + .wp-block-table table {
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
	margin: 1.25rem 0;
	font-size: 14px;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__article-body .wp-block-heading + .wp-block-table table.coin-spec-table .coin-col-denom,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__article-body .wp-block-heading + .wp-block-table table.coin-spec-table th:nth-child(1),
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__article-body .wp-block-heading + .wp-block-table table.coin-spec-table td:nth-child(1) {
	width: 18%;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__article-body .wp-block-heading + .wp-block-table table.coin-spec-table .coin-col-obv,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__article-body .wp-block-heading + .wp-block-table table.coin-spec-table th:nth-child(2),
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__article-body .wp-block-heading + .wp-block-table table.coin-spec-table td:nth-child(2),
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__article-body .wp-block-heading + .wp-block-table table.coin-spec-table .coin-col-rev,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__article-body .wp-block-heading + .wp-block-table table.coin-spec-table th:nth-child(3),
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__article-body .wp-block-heading + .wp-block-table table.coin-spec-table td:nth-child(3) {
	width: 18%;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__article-body .wp-block-heading + .wp-block-table table.coin-spec-table .coin-col-wt,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__article-body .wp-block-heading + .wp-block-table table.coin-spec-table th:nth-child(4),
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__article-body .wp-block-heading + .wp-block-table table.coin-spec-table td:nth-child(4) {
	width: 10%;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__article-body .wp-block-heading + .wp-block-table table.coin-spec-table .coin-col-fin,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__article-body .wp-block-heading + .wp-block-table table.coin-spec-table th:nth-child(5),
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__article-body .wp-block-heading + .wp-block-table table.coin-spec-table td:nth-child(5) {
	width: 12%;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__article-body .wp-block-heading + .wp-block-table table.coin-spec-table .coin-col-dia,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__article-body .wp-block-heading + .wp-block-table table.coin-spec-table th:nth-child(6),
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__article-body .wp-block-heading + .wp-block-table table.coin-spec-table td:nth-child(6),
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__article-body .wp-block-heading + .wp-block-table table.coin-spec-table .coin-col-thk,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__article-body .wp-block-heading + .wp-block-table table.coin-spec-table th:nth-child(7),
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__article-body .wp-block-heading + .wp-block-table table.coin-spec-table td:nth-child(7) {
	width: 10%;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__article-body .wp-block-heading + .wp-block-table table.coin-spec-table .coin-col-gold,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__article-body .wp-block-heading + .wp-block-table table.coin-spec-table th:nth-child(8),
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__article-body .wp-block-heading + .wp-block-table table.coin-spec-table td:nth-child(8) {
	width: 12%;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__article-body .wp-block-heading + .wp-block-table table th,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__article-body .wp-block-heading + .wp-block-table table td {
	border: 1px solid #d6d6d6;
	padding: 14px 12px;
	vertical-align: top;
	text-align: left;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__article-body .wp-block-heading + .wp-block-table table thead th {
	background: #f3f3f3;
	font-weight: 700;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__article-body .wp-block-heading + .wp-block-table table .coin-img-cell {
	text-align: center;
	vertical-align: middle;
	overflow: hidden;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__article-body .wp-block-heading + .wp-block-table table img.coin-img {
	display: inline-block;
	box-sizing: border-box;
	max-width: 100%;
	height: auto;
	object-fit: contain;
	vertical-align: middle;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__article-body .wp-block-heading + .wp-block-table table img:not(.coin-img) {
	display: inline-block;
	max-width: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
}

@media (max-width: 720px) {
	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__article-body .wp-block-heading + .wp-block-table table th:nth-child(n+4),
	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__article-body .wp-block-heading + .wp-block-table table td:nth-child(n+4) {
		display: none;
	}
}

/* Bullion product: stack gallery on very narrow viewports */
@media (max-width: 520px) {
	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-bullion-single__gallery.is-obv-rev {
		grid-template-columns: 1fr;
	}
}
/* —— Industry single (elemetal/industry-*) —— */
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__container {
	display: block;
	width: 100%;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__hero {
	position: relative;
	background-color: #1a1a1a;
	background-image: var(--elemetal-ind-hero-bg, none);
	background-size: var(--elemetal-ind-hero-bg-size, cover);
	background-position: var(--elemetal-ind-hero-bg-position, center center);
	background-repeat: no-repeat;
	min-height: var(--elemetal-ind-hero-min-height, clamp(380px, 56vh, 580px));
	width: var(--elemetal-ind-hero-section-width, 100vw);
	max-width: var(--elemetal-ind-hero-section-max-width, none);
	margin-top: var(--elemetal-ind-hero-section-margin-top, 0);
	margin-left: var(--elemetal-ind-hero-section-margin-left, calc(50% - 50vw));
	margin-right: var(--elemetal-ind-hero-section-margin-right, calc(50% - 50vw));
	margin-bottom: var(--elemetal-ind-hero-section-margin-bottom, clamp(1.5rem, 4vw, 2.5rem));
	padding-top: var(--elemetal-ind-hero-section-padding-top, 0);
	padding-bottom: var(--elemetal-ind-hero-section-padding-bottom, 0);
	padding-left: var(--elemetal-ind-hero-section-padding-inline, 0);
	padding-right: var(--elemetal-ind-hero-section-padding-inline, 0);
	color: #fff;
	display: flex;
	align-items: var(--elemetal-ind-hero-align-items, center);
	justify-content: var(--elemetal-ind-hero-justify-content, flex-start);
	box-sizing: border-box;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__hero--section-contained {
	width: var(--elemetal-ind-hero-section-width, 100%);
	max-width: var(--elemetal-ind-hero-section-max-width, 100%);
	margin-left: var(--elemetal-ind-hero-section-margin-left, 0);
	margin-right: var(--elemetal-ind-hero-section-margin-right, 0);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__hero-overlay {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__hero-inner {
	position: relative;
	z-index: 1;
	max-width: var(--elemetal-ind-hero-inner-max-width, var(--elemetal-content-max-width, 1200px));
	width: 100%;
	margin: var(--elemetal-ind-hero-inner-margin-top, 0) auto var(--elemetal-ind-hero-inner-margin-bottom, 0);
	padding: var(--elemetal-ind-hero-inner-padding-block, clamp(2.5rem, 7vw, 5rem))
		var(--elemetal-ind-hero-inner-padding-inline, var(--elemetal-content-pad-x, 1.25rem));
	box-sizing: border-box;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__hero-inner--full {
	max-width: 100%;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__hero-kicker {
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: var(--elemetal-block-sub-size, 0.8125rem);
	margin: 0 0 0.6rem;
	color: rgba(255, 255, 255, 0.88);
	opacity: 1;
	font-weight: 600;
	max-width: none;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__hero-title {
	font-size: var(--elemetal-block-heading-size, clamp(2rem, 5vw, 3.25rem));
	font-weight: 800;
	line-height: 1.1;
	margin: 0 0 1.5rem;
	color: var(--elemetal-block-heading-color, #ffffff);
	max-width: 100%;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__hero-intro {
	margin: 0 0 1.5rem;
	max-width: 100%;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__hero-intro .elemetal-industry-single__intro-grid {
	display: block;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__hero-intro .elemetal-industry-single__intro-body {
	font-size: var(--elemetal-block-body-size, clamp(1rem, 2vw, 1.125rem));
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.86);
	max-width: 100%;
}

@media (min-width: 768px) {
	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__hero-inner > .elemetal-industry-single__hero-kicker,
	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__hero-inner > .elemetal-industry-single__hero-title,
	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__hero-inner > .elemetal-industry-single__hero-intro,
	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__hero-inner > .elemetal-industry-single__hero-cta {
		max-width: 60%;
	}
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__hero-intro .elemetal-industry-single__intro-body p {
	margin: 0 0 0.75rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__hero-intro .elemetal-industry-single__intro-body p:last-child {
	margin-bottom: 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__hero-intro .elemetal-industry-single__intro-body strong {
	color: inherit;
	font-weight: 600;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__hero-cta {
	margin: 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__hero-cta .elemetal-industry-single__btn {
	color: var(--elemetal-block-btn-color, #ffffff) !important;
	background: var(--elemetal-block-btn-bg, #2ec4b6) !important;
	font-size: var(--elemetal-block-btn-size, 0.9375rem);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__hero-cta.elemetal-text-align--center {
	text-align: center;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__hero-cta.elemetal-text-align--right {
	text-align: right;
}


:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__hero-ticker .elemetal-nfusion-ticker {
	margin: 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__material-body .elemetal-industry-inline-figure {
	margin: 1.25rem 0 0;
	max-width: 100%;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__material-body .elemetal-industry-inline-figure--timetable img {
	width: 100%;
	height: auto;
	display: block;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__assoc-logos {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
	margin-top: 1.5rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__assoc-logo {
	margin: 0;
	padding: clamp(1.5rem, 4vw, 2.5rem) 1rem;
	background: #f3f3f3;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	min-height: 180px;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__assoc-logo img {
	max-width: 120px;
	width: 100%;
	height: auto;
	display: block;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__assoc-logo figcaption {
	margin: 0;
	font-size: 0.75rem;
	line-height: 1.35;
	color: rgba(0, 0, 0, 0.72);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__material--layout-stacked .elemetal-industry-single__material-row,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__material-row--stacked {
	grid-template-columns: 1fr;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__material--layout-stacked .elemetal-industry-single__material-h,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__material-row--stacked .elemetal-industry-single__material-h {
	margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
	max-width: none;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__material--why .elemetal-industry-single__material-h {
	margin-bottom: 0.5rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-why-layout {
	display: grid;
	gap: clamp(2rem, 5vw, 3rem);
}

@media (min-width: 900px) {
	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-why-layout {
		grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
		align-items: start;
	}
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-why-layout__customer-cols {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem 1.5rem;
	align-items: start;
}

@media (min-width: 600px) {
	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-why-layout__customer-cols {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 900px) {
	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-why-layout__customer-cols {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-why-layout__customer-cols > .wp-block-list,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-why-layout__customer-cols > ul,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-why-layout__customer-cols > .wp-block-group > .wp-block-list,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-why-layout__customer-cols > .wp-block-group > ul {
	margin: 0;
	padding: 0 0 0 1.1rem;
	list-style: disc;
	list-style-position: outside;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-why-layout__customers h3,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-why-layout__details h3 {
	font-size: 1.125rem;
	font-weight: 700;
	margin: 0 0 0.75rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-why-layout__details h3:not(:first-child) {
	margin-top: 1.75rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-timetable {
	width: 100%;
	border-collapse: collapse;
	margin: 0.75rem 0 0;
	font-size: 0.9375rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-timetable th,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-timetable td {
	border: 1px solid #111;
	padding: 0.5rem 0.65rem;
	text-align: left;
	vertical-align: top;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-timetable th {
	font-weight: 700;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-inline-figure--timetable {
	display: none;
}

@media (max-width: 899px) {
	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__assoc-logos {
		grid-template-columns: 1fr;
	}
}

/* Buttons */
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__btn {
	display: inline-block;
	padding: 0.85rem 1.6rem;
	background: #2ec4b6;
	color: #ffffff !important;
	font-weight: 600;
	text-decoration: none !important;
	border-radius: 4px;
	font-size: 0.9375rem;
	line-height: 1;
	border: 1px solid transparent;
	transition: background-color 0.2s ease, opacity 0.2s ease;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__btn:hover,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__btn:focus-visible {
	background: #25a99c;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__btn--secondary {
	background: transparent;
	color: #1a5a62 !important;
	border-color: #1a5a62;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__btn--secondary:hover,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__btn--secondary:focus-visible {
	background: rgba(26, 90, 98, 0.08);
}

/* Breadcrumbs */
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__breadcrumbs {
	font-size: 0.8125rem;
	color: rgba(0, 0, 0, 0.55);
	margin: 0 0 1.25rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__breadcrumbs a {
	color: #1a5a62;
	text-decoration: underline;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__bc-sep {
	margin: 0 0.25rem;
	color: rgba(0, 0, 0, 0.4);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__bc-current {
	color: rgba(0, 0, 0, 0.7);
}

/* Material rows — H2 + body 2-col, full-width image below */
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__material {
	margin: clamp(2rem, 5vw, 3rem) 0;
	scroll-margin-top: var(--elemetal-header-offset, 96px);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__container > .wp-block-separator,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__material-body .wp-block-separator {
	margin: clamp(1.5rem, 4vw, 2.5rem) 0;
	border-color: rgba(0, 0, 0, 0.12);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__material-row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	align-items: start;
	margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

@media (min-width: 768px) {
	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__material:not(.elemetal-industry-single__material--layout-stacked) .elemetal-industry-single__material-row:not(.elemetal-industry-single__material-row--stacked):not(.elemetal-industry-single__material-row--has-image),
	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__material--layout-two-column .elemetal-industry-single__material-row:not(.elemetal-industry-single__material-row--has-image),
	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__material-row--two-column:not(.elemetal-industry-single__material-row--has-image) {
		grid-template-columns: minmax(220px, 320px) 1fr;
		gap: clamp(1.5rem, 4vw, 2.5rem);
	}

	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__material-row--has-image {
		grid-template-columns: 1fr 1fr;
		gap: clamp(2rem, 4vw, 3rem);
		align-items: start;
		margin-bottom: 0;
	}
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__material-col--copy {
	display: flex;
	flex-direction: column;
	gap: 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__material-row--has-image .elemetal-industry-single__material-h {
	margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__material-row--has-image .elemetal-industry-single__material-img-wrap {
	margin: 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__material-col--media {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__material-img-cta {
	margin: 0;
	text-align: center;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__material-img-cta-link {
	display: inline-block;
	background: var(--elemetal-block-btn-bg, #2ec4b6);
	color: var(--elemetal-block-btn-color, #ffffff);
	border-radius: 4px;
	padding: 0.65rem 1.5rem;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__material-img-cta-link:hover,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__material-img-cta-link:focus-visible {
	background: #25a99c;
	color: #ffffff;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__material-row--has-image .elemetal-industry-single__material-img-wrap img {
	aspect-ratio: 4 / 3;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__material--first {
	margin-top: 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__material-h {
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 700;
	color: #111;
	margin: 0 0 0.75rem;
	line-height: 1.2;
	text-align: left;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__material-body {
	font-size: 1rem;
	line-height: 1.65;
	color: rgba(0, 0, 0, 0.82);
	margin: 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__material-body h3,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__material-body h4 {
	display: block;
	margin: 1.25rem 0 0.75rem;
	font-size: clamp(1.25rem, 2.5vw, 1.5rem);
	font-weight: 700;
	color: #111;
	line-height: 1.2;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__material-body p {
	margin: 0 0 1rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__material-body p:last-child {
	margin-bottom: 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__material-body .wp-block-buttons {
	margin: 1.25rem 0 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__material-body .wp-block-button__link:not(.has-background):not([class*="-background-color"]) {
	background: var(--elemetal-block-btn-bg, #2ec4b6);
	color: var(--elemetal-block-btn-color, #ffffff);
	border-radius: 4px;
	padding: 0.65rem 1.5rem;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__material-body .wp-block-button__link:not(.has-background):not([class*="-background-color"]):hover,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__material-body .wp-block-button__link:not(.has-background):not([class*="-background-color"]):focus-visible {
	background: #25a99c;
	color: #ffffff;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single .wp-block-buttons,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__material-body .wp-block-buttons {
	margin: 1.25rem 0 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single .wp-block-button__link:not(.has-text-color),
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-refining-single__material-body .wp-block-button__link:not(.has-text-color) {
	font-weight: 600;
	text-decoration: none;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__material-body .wp-block-list,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__material-body ul,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__material-body ol {
	margin: 0.15rem 0 1.25rem 0;
	padding: 0 0 0 1.35rem;
	list-style: disc;
	list-style-position: outside;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__material-body ol {
	list-style: decimal;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__material-body .wp-block-list li,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__material-body ul li,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__material-body ol li {
	margin-bottom: 0.45rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__material-body .wp-block-list li > p,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__material-body ul li > p,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__material-body ol li > p {
	margin: 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__material-img-wrap {
	margin: 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__material-img-wrap img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 4px;
	aspect-ratio: 21 / 9;
	object-fit: cover;
}

/* Industries — full-bleed dark teal band, circular icons + "Learn More" CTAs */
:is(#elemetal-site-root, .editor-styles-wrapper) 

:is(#elemetal-site-root, .editor-styles-wrapper) 

:is(#elemetal-site-root, .editor-styles-wrapper) 

:is(#elemetal-site-root, .editor-styles-wrapper) 

:is(#elemetal-site-root, .editor-styles-wrapper) 

@media (min-width: 600px) {
	:is(#elemetal-site-root, .editor-styles-wrapper) 
}

@media (min-width: 992px) {
	:is(#elemetal-site-root, .editor-styles-wrapper) 
}

:is(#elemetal-site-root, .editor-styles-wrapper) 

:is(#elemetal-site-root, .editor-styles-wrapper) 

:is(#elemetal-site-root, .editor-styles-wrapper) 

:is(#elemetal-site-root, .editor-styles-wrapper) 

:is(#elemetal-site-root, .editor-styles-wrapper) 

:is(#elemetal-site-root, .editor-styles-wrapper) 

/* FAQ — native <details>/<summary> for accessibility (no JS needed) */
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__faq {
	margin: clamp(2rem, 5vw, 3rem) 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__h2 {
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 700;
	color: #111;
	margin: 0 0 1.5rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__faq-list {
	list-style: none;
	margin: 0;
	padding: 0;
	border-top: 1px solid rgba(0, 0, 0, 0.12);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__faq-item {
	border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__faq-details {
	margin: 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__faq-summary {
	list-style: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.5rem 0;
	font-size: 1.0625rem;
	font-weight: 600;
	color: #111;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__faq-summary::-webkit-details-marker {
	display: none;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__faq-q {
	flex: 1 1 auto;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__faq-icon {
	flex: 0 0 auto;
	width: 14px;
	height: 14px;
	position: relative;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__faq-icon::before,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__faq-icon::after {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 14px;
	height: 1px;
	background: #111;
	transition: transform 0.2s ease;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__faq-icon::before {
	transform: translateY(-50%);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__faq-icon::after {
	transform: translateY(-50%) rotate(90deg);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__faq-details[open] .elemetal-industry-single__faq-icon::after {
	transform: translateY(-50%) rotate(0);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__faq-a {
	padding: 0 0 1.5rem;
	font-size: 1rem;
	line-height: 1.65;
	color: rgba(0, 0, 0, 0.82);
	max-width: 70ch;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__faq-a p {
	margin: 0 0 1rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__faq-a p:last-child {
	margin-bottom: 0;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__faq-more {
	margin-top: 2rem;
	text-align: center;
}

/* Pre-footer (locations + other services) */
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__prefooter {
	padding: clamp(2rem, 5vw, 3rem) 0;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	margin-top: clamp(2rem, 5vw, 3rem);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__prefooter-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

@media (min-width: 768px) {
	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__prefooter-grid {
		grid-template-columns: 1fr 1fr;
		gap: clamp(2rem, 4vw, 3rem);
	}

	:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__prefooter-col + .elemetal-industry-single__prefooter-col {
		border-left: 1px solid rgba(0, 0, 0, 0.1);
		padding-left: clamp(1.5rem, 4vw, 3rem);
	}
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__prefooter-h {
	font-size: clamp(1.25rem, 2.5vw, 1.5rem);
	font-weight: 700;
	color: #111;
	margin: 0 0 1rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__prefooter-body {
	font-size: 1rem;
	line-height: 1.65;
	color: rgba(0, 0, 0, 0.82);
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__prefooter-body p {
	margin: 0 0 1rem;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__hero-cta .elemetal-industry-single__btn--hero-secondary {
	margin-left: 0.75rem;
	background: var(--elemetal-block-btn-bg, #2ec4b6) !important;
	color: var(--elemetal-block-btn-color, #ffffff) !important;
	border: 1px solid transparent !important;
}

:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__hero-cta .elemetal-industry-single__btn--hero-secondary:hover,
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__hero-cta .elemetal-industry-single__btn--hero-secondary:focus-visible {
	background: #25a99c !important;
}
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__breadcrumbs {
	font-size: 0.875rem;
	margin: 0 0 clamp(1.25rem, 3vw, 2rem);
	color: rgba(0, 0, 0, 0.65);
}
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__breadcrumbs a {
	color: inherit;
	text-decoration: underline;
}
:is(#elemetal-site-root, .editor-styles-wrapper) .elemetal-industry-single__bc-current {
	font-weight: 600;
	color: #111;
}
