/*
 * GoDataCenters design system.
 *
 * Tokens extracted from the production Lovable site so the WordPress build
 * reads as the same product: navy ink, teal brand, orange CTA, Space
 * Grotesk display over Inter. Dark surfaces are the header, footer and hero
 * bands; content sits on light surfaces, exactly as the original.
 */

:root {
	--gdc-ink: #0F1729;
	--gdc-ink-2: #1D283A;
	--gdc-ink-3: #2A3650;
	--gdc-teal: #2A9D90;
	--gdc-teal-bright: #3DBFB0;
	--gdc-teal-tint: rgba(42, 157, 144, .10);
	--gdc-emerald: #10B981;
	--gdc-emerald-tint: rgba(16, 185, 129, .10);
	--gdc-orange: #ED5A35;
	--gdc-orange-tint: rgba(237, 90, 53, .12);
	--gdc-surface: #F1F5F9;
	--gdc-card-border: #E2E8F0;
	--gdc-text: #0F1729;
	--gdc-text-muted: #64748B;
	--gdc-text-on-dark: #F8FAFC;
	--gdc-text-on-dark-muted: #94A3B8;
	--gdc-radius: 16px;
	--gdc-radius-sm: 10px;
	/* Text-link teal, dark enough for 4.5:1 on white. Brand teal stays for
	 * fills and dark surfaces where contrast runs the other way. */
	--gdc-link: #1D7A6E;
	--gdc-grad-orange: linear-gradient(135deg, #F0653F 0%, #E04E28 100%);
	--gdc-font-display: "Space Grotesk", "Inter", sans-serif;
	--gdc-font-body: "Inter", sans-serif;
	--gdc-shadow: 0 1px 3px rgba(15, 23, 41, .08), 0 4px 14px rgba(15, 23, 41, .06);
	/* Content width: fluid up to a wide cap so large monitors are actually
	 * used, instead of a fixed column with half the screen as margin. */
	--gdc-maxw: min(1680px, 94vw);
}

body {
	font-family: var(--gdc-font-body);
	color: var(--gdc-text);
}

h1, h2, h3, h4,
.wp-block-post-title,
.wp-block-site-title {
	font-family: var(--gdc-font-display);
	letter-spacing: -0.01em;
}

/* ------------------------------------------------------------- announce */
.gdc-announce {
	background: #17786C;
	color: #fff;
	font-size: .82rem;
	font-weight: 600;
	text-align: center;
	padding: .45rem 2.5rem;
	position: relative;
}
.gdc-announce a.gdc-announce-btn {
	background: #fff;
	color: var(--gdc-ink);
	border-radius: 999px;
	padding: .12rem .7rem;
	margin-left: .5rem;
	text-decoration: none;
	font-weight: 700;
}
.gdc-announce .gdc-announce-x {
	position: absolute;
	right: .75rem;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: 0;
	color: #fff;
	font-size: 1rem;
	line-height: 1;
	cursor: pointer;
	padding: .25rem;
}
.gdc-announce[hidden] { display: none; }

/* -------------------------------------------------------------- top bar */
.gdc-topbar {
	background: var(--gdc-ink);
	color: var(--gdc-text-on-dark);
	position: relative;
	z-index: 50;
}
.gdc-topbar-inner {
	max-width: var(--gdc-maxw);
	margin: 0 auto;
	padding: .65rem 1.25rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}
.gdc-logo {
	display: flex;
	align-items: center;
	gap: .55rem;
	text-decoration: none;
	color: var(--gdc-text-on-dark);
	font-family: var(--gdc-font-display);
	font-weight: 700;
	font-size: 1.18rem;
	white-space: nowrap;
}
.gdc-logo .gdc-logo-mark {
	width: 34px;
	height: 34px;
	border-radius: 9px;
	background: var(--gdc-teal);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: none;
}
.gdc-logo .gdc-logo-mark svg { display: block; }
.gdc-logo em {
	font-style: normal;
	color: var(--gdc-teal-bright);
}
.gdc-nav {
	display: flex;
	align-items: center;
	gap: 1.35rem;
	font-size: .93rem;
	font-weight: 500;
}
.gdc-nav > a {
	color: var(--gdc-text-on-dark);
	text-decoration: none;
	opacity: .92;
}
.gdc-nav > a:hover { color: var(--gdc-teal-bright); opacity: 1; }
.gdc-navdrop { position: relative; }
.gdc-navdrop > button {
	background: none;
	border: 0;
	color: var(--gdc-text-on-dark);
	font: inherit;
	cursor: pointer;
	opacity: .92;
	display: flex;
	align-items: center;
	gap: .3rem;
	padding: 0;
}
.gdc-navdrop > button:hover { color: var(--gdc-teal-bright); opacity: 1; }
.gdc-navdrop > button::after {
	content: "";
	width: .45em; height: .45em;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg) translateY(-2px);
}
.gdc-dropmenu {
	display: none;
	position: absolute;
	top: calc(100% + .8rem);
	left: 50%;
	transform: translateX(-50%);
	background: #fff;
	color: var(--gdc-text);
	border-radius: var(--gdc-radius);
	box-shadow: 0 12px 40px rgba(15, 23, 41, .18);
	padding: .5rem;
	min-width: 230px;
	z-index: 60;
}
.gdc-navdrop.is-open .gdc-dropmenu { display: block; }
.gdc-dropmenu a {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding: .5rem .75rem;
	border-radius: var(--gdc-radius-sm);
	text-decoration: none;
	color: var(--gdc-text);
	font-size: .9rem;
}
.gdc-dropmenu a:hover { background: var(--gdc-teal-tint); color: var(--gdc-link); }
.gdc-dropmenu a .gdc-muted { font-size: .8rem; }
.gdc-dropmenu .gdc-dropmenu-all {
	border-top: 1px solid var(--gdc-card-border);
	margin-top: .35rem;
	font-weight: 600;
	color: var(--gdc-teal);
}

.gdc-btn {
	display: inline-block;
	background: var(--gdc-grad-orange);
	color: #fff !important;
	padding: .55rem 1.15rem;
	border-radius: 999px;
	text-decoration: none;
	font-weight: 700;
	font-size: .92rem;
	border: 0;
	cursor: pointer;
	transition: filter .15s ease, transform .15s ease;
}
.gdc-btn:hover { filter: brightness(1.07); transform: translateY(-1px); }
.gdc-btn--lg { padding: .8rem 1.6rem; font-size: 1rem; }
.gdc-btn--ghost {
	background: transparent;
	color: var(--gdc-teal) !important;
	border: 1px solid var(--gdc-teal);
}

.gdc-burger {
	display: none;
	background: none;
	border: 0;
	color: var(--gdc-text-on-dark);
	cursor: pointer;
	padding: .3rem;
}
.gdc-burger svg { display: block; }

@media (max-width: 880px) {
	.gdc-burger { display: block; }
	.gdc-nav {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--gdc-ink-2);
		flex-direction: column;
		align-items: stretch;
		padding: 1rem 1.25rem 1.4rem;
		gap: .9rem;
	}
	.gdc-topbar.is-open .gdc-nav { display: flex; }
	.gdc-dropmenu {
		position: static;
		transform: none;
		box-shadow: none;
		background: var(--gdc-ink-3);
		min-width: 0;
	}
	.gdc-dropmenu a { color: var(--gdc-text-on-dark); }
	.gdc-dropmenu a:hover { background: rgba(255,255,255,.06); color: var(--gdc-teal-bright); }
}

/* ------------------------------------------------------------ dark hero */
.gdc-hero-band {
	background:
		radial-gradient(1000px 480px at 50% -15%, rgba(61,191,176,.22), transparent 65%),
		linear-gradient(rgba(42,157,144,.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(42,157,144,.05) 1px, transparent 1px),
		linear-gradient(180deg, var(--gdc-ink) 0%, #131C31 100%);
	background-size: 100% 100%, 44px 44px, 44px 44px, 100% 100%;
	color: var(--gdc-text-on-dark);
	padding: 4.2rem 1.25rem 3.4rem;
	text-align: center;
}
.gdc-hero-band .gdc-eyebrow-chip {
	display: inline-flex;
	align-items: center;
	gap: .45rem;
	background: rgba(42,157,144,.14);
	border: 1px solid rgba(42,157,144,.35);
	color: var(--gdc-teal-bright);
	border-radius: 999px;
	padding: .35rem 1rem;
	font-size: .85rem;
	font-weight: 600;
	margin-bottom: 1.4rem;
}
.gdc-hero-band h1,
.gdc-hero-band .gdc-hero-title {
	font-family: var(--gdc-font-display);
	font-size: clamp(2.4rem, 6vw, 3.9rem);
	font-weight: 700;
	line-height: 1.06;
	margin: 0 auto .9rem;
	max-width: 900px;
	color: var(--gdc-text-on-dark);
}
.gdc-hero-band .gdc-teal { color: var(--gdc-teal-bright); }
.gdc-hero-band .gdc-sub {
	color: var(--gdc-text-on-dark-muted);
	font-size: 1.08rem;
	max-width: 640px;
	margin: 0 auto 1.6rem;
}
.gdc-hero-links {
	display: flex;
	gap: 1.1rem;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 1.3rem;
}
.gdc-hero-links a:not(.gdc-btn) {
	color: var(--gdc-teal-bright);
	text-decoration: none;
	font-weight: 600;
	font-size: .95rem;
}
.gdc-hero-links a:not(.gdc-btn):hover { text-decoration: underline; }

/* ---------------------------------------------------------- search form */
.gdc-search-form {
	display: flex;
	align-items: center;
	gap: .5rem;
	background: rgba(255,255,255,.06);
	border: 1px solid var(--gdc-ink-3);
	border-radius: 999px;
	padding: .35rem .4rem .35rem 1.1rem;
	max-width: 640px;
	margin: 0 auto;
}
.gdc-search-form input[type="search"] {
	flex: 1 1 auto;
	background: transparent;
	border: 0;
	outline: none;
	color: inherit;
	font-size: .98rem;
	min-width: 0;
}
.gdc-search-form input[type="search"]::placeholder { color: var(--gdc-text-on-dark-muted); }
.gdc-search-form .gdc-search-gpu {
	font-size: .82rem;
	white-space: nowrap;
	display: flex;
	align-items: center;
	gap: .3rem;
	color: var(--gdc-text-on-dark-muted);
}
.gdc-search-form button {
	background: var(--gdc-teal);
	color: #fff;
	border: 0;
	border-radius: 999px;
	padding: .6rem 1.4rem;
	font-weight: 700;
	font-size: .92rem;
	cursor: pointer;
	flex: none;
}
.gdc-search-form button:hover { background: var(--gdc-teal-bright); }

/* Light-surface variant (search page, hub pages) */
.gdc-light .gdc-search-form,
.gdc-hub .gdc-search-form {
	background: #fff;
	border-color: var(--gdc-card-border);
	color: var(--gdc-text);
	margin: 1rem 0;
	box-shadow: var(--gdc-shadow);
}
.gdc-light .gdc-search-form input::placeholder,
.gdc-hub .gdc-search-form input::placeholder { color: var(--gdc-text-muted); }
.gdc-light .gdc-search-form .gdc-search-gpu,
.gdc-hub .gdc-search-form .gdc-search-gpu { color: var(--gdc-text-muted); }

/* ------------------------------------------------------------ stats band */
.gdc-statband {
	background: var(--gdc-ink);
	color: var(--gdc-text-on-dark);
	padding: 2rem 1.25rem 2.4rem;
}
.gdc-statband-inner {
	max-width: 1000px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 1.2rem;
	text-align: center;
}
.gdc-statband strong,
.gdc-statgrid strong {
	display: block;
	font-family: var(--gdc-font-display);
	font-size: 2rem;
	font-weight: 700;
	color: var(--gdc-text-on-dark);
}
.gdc-statband span { font-size: .85rem; color: var(--gdc-text-on-dark-muted); }
.gdc-logo-row {
	max-width: 1000px;
	margin: 1.8rem auto 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2.2rem;
	opacity: .45;
	font-family: var(--gdc-font-display);
	font-weight: 700;
	font-size: 1rem;
	letter-spacing: .02em;
}

/* --------------------------------------------------- generic light body */
.gdc {
	max-width: var(--gdc-maxw);
	margin: 0 auto;
	padding: 0 1.25rem 3rem;
}
.gdc-section { margin-top: 2.6rem; }
.gdc-section > h2 {
	font-size: 1.55rem;
	margin: 0 0 1.1rem;
}
.gdc-sub { color: var(--gdc-text-muted); font-size: 1.02rem; }
.gdc-muted { color: var(--gdc-text-muted); }

.gdc-breadcrumb {
	font-size: .84rem;
	color: var(--gdc-text-muted);
	padding: 1.1rem 0 .4rem;
}
.gdc-breadcrumb a { color: inherit; text-decoration: none; }
.gdc-breadcrumb a:hover { color: var(--gdc-link); }

.gdc-header { padding-top: .4rem; }
.gdc-header h1 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin: .2rem 0 .5rem; }

/* ---------------------------------------------------------------- cards */
.gdc-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 1.1rem;
}
.gdc-card {
	background: #fff;
	border: 1px solid var(--gdc-card-border);
	border-radius: var(--gdc-radius);
	padding: 1.1rem 1.2rem 1.05rem;
	box-shadow: var(--gdc-shadow);
	transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.gdc-card:hover {
	transform: translateY(-2px);
	border-color: rgba(42,157,144,.55);
	box-shadow: 0 0 0 3px rgba(42,157,144,.14), 0 10px 30px rgba(15, 23, 41, .12);
}
.gdc-card h2, .gdc-card h3 {
	font-size: 1.08rem;
	margin: 0 0 .3rem;
	line-height: 1.3;
}
.gdc-card h2 a, .gdc-card h3 a { color: var(--gdc-text); text-decoration: none; }
.gdc-card h2 a:hover, .gdc-card h3 a:hover { color: var(--gdc-link); }
.gdc-card p { margin: .3rem 0; font-size: .88rem; }

.gdc-badge {
	display: inline-block;
	border-radius: 999px;
	padding: .18rem .65rem;
	font-size: .75rem;
	font-weight: 600;
	margin-right: .35rem;
}
.gdc-badge--verified { background: var(--gdc-emerald-tint); color: #0B815A; }
.gdc-badge--gpu { background: var(--gdc-orange-tint); color: #C2410C; }
.gdc-badge--tier { background: var(--gdc-teal-tint); color: var(--gdc-teal); }

/* ------------------------------------------------------------ city list */
.gdc-citylist {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: .55rem .6rem;
}
.gdc-citylist li {
	background: #fff;
	border: 1px solid var(--gdc-card-border);
	border-radius: 999px;
	padding: .4rem .95rem;
	font-size: .88rem;
}
.gdc-citylist li:hover { border-color: var(--gdc-teal); }
.gdc-citylist a { text-decoration: none; color: var(--gdc-text); font-weight: 600; }
.gdc-citylist a:hover { color: var(--gdc-link); }
.gdc-citylist .gdc-muted { font-size: .8rem; }

/* ------------------------------------------------------------ home page */
.gdc-home { max-width: none; padding: 0; }
.gdc-home .gdc-home-inner {
	max-width: var(--gdc-maxw);
	margin: 0 auto;
	padding: 0 1.25rem 3rem;
}
.gdc-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 1.2rem;
}
.gdc-steps > div {
	background: #fff;
	border: 1px solid var(--gdc-card-border);
	border-radius: var(--gdc-radius);
	padding: 1.4rem 1.4rem 1.3rem;
	box-shadow: var(--gdc-shadow);
}
.gdc-steps .gdc-step-icon {
	width: 42px; height: 42px;
	border-radius: 10px;
	background: var(--gdc-teal-tint);
	color: var(--gdc-teal);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: .8rem;
}
.gdc-steps h3 { margin: 0 0 .35rem; font-size: 1.05rem; }
.gdc-steps p { margin: 0; color: var(--gdc-text-muted); font-size: .92rem; }

.gdc-statgrid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
	gap: 1rem;
	text-align: center;
	padding: 1.5rem 0;
	border-top: 1px solid var(--gdc-card-border);
	border-bottom: 1px solid var(--gdc-card-border);
}
.gdc-statgrid strong { color: var(--gdc-text); }
.gdc-statgrid span { font-size: .85rem; color: var(--gdc-text-muted); }

/* -------------------------------------------------------------- glossary */
.gdc-glossary-nav { font-size: .95rem; line-height: 2; }
.gdc-glossary-nav a { color: var(--gdc-teal); text-decoration: none; font-weight: 600; }
.gdc-glossary-list { margin: 0 0 2.5rem; }
.gdc-glossary-list dt { font-weight: 700; margin-top: 1.5rem; scroll-margin-top: 5rem; font-family: var(--gdc-font-display); }
.gdc-glossary-list dd { margin: .35rem 0 0; }
.gdc-glossary-list dd p { margin: .25rem 0; }

/* ---------------------------------------------------------------- footer */
.gdc-footer {
	background: var(--gdc-ink);
	color: var(--gdc-text-on-dark);
	margin-top: 3.5rem;
}
/* The theme's constrained layout caps the footer's inner blocks at its own
 * (much narrower) content width; align them with the site container. */
.gdc-footer > * {
	max-width: var(--gdc-maxw) !important;
	margin-left: auto !important;
	margin-right: auto !important;
}
.gdc-footer p { color: var(--gdc-text-on-dark-muted); }
.gdc-footer strong, .gdc-footer .wp-block-site-title a { color: var(--gdc-text-on-dark); }
.gdc-footer a { color: var(--gdc-text-on-dark-muted); text-decoration: none; }
.gdc-footer a:hover { color: var(--gdc-teal-bright); }
.gdc-footer-list { list-style: none; padding: 0; margin: 0; }
.gdc-footer-list li { margin: .3rem 0; }

/* --------------------------------------------------------- accessibility */
.gdc a:focus-visible, .gdc button:focus-visible,
.gdc-topbar a:focus-visible, .gdc-topbar button:focus-visible {
	outline: 2px solid var(--gdc-teal-bright);
	outline-offset: 2px;
	border-radius: 4px;
}
@media (prefers-reduced-motion: reduce) {
	.gdc-card, .gdc-btn { transition: none; }
}
.screen-reader-text {
	position: absolute;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
}

/* ------------------------------------------------------------------ map */
.gdc-map-card {
	background: #fff;
	border: 1px solid var(--gdc-card-border);
	border-radius: var(--gdc-radius);
	box-shadow: var(--gdc-shadow);
	overflow: hidden;
	/* Confine Leaflet's internal z-indexes so the sticky toolbar can sit
	 * above the map without out-ranking the site header. */
	isolation: isolate;
	position: relative;
	z-index: 0;
}
.gdc-map {
	height: 380px;
	width: 100%;
	background: var(--gdc-surface);
}
.gdc-map-address {
	margin: 0;
	padding: .8rem 1.1rem;
	font-size: .88rem;
	color: var(--gdc-text-muted);
	border-top: 1px solid var(--gdc-card-border);
}
.gdc-map-address a { color: var(--gdc-link); text-decoration: none; font-weight: 600; }
.gdc-map-pin {
	background: var(--gdc-teal);
	border: 3px solid #fff;
	border-radius: 50%;
	box-shadow: 0 0 0 4px rgba(42,157,144,.22), 0 2px 10px rgba(15,23,41,.30);
	transition: transform .12s ease;
}
.gdc-map-pin:hover { transform: scale(1.15); }
.gdc-map-chip {
	background: #fff;
	border-radius: 999px;
	padding: .3rem .8rem;
	font-size: .8rem;
	font-weight: 600;
	color: var(--gdc-text);
	box-shadow: 0 1px 5px rgba(15,23,41,.25);
	font-family: var(--gdc-font-body);
}
.leaflet-container { font-family: var(--gdc-font-body); }

/* Clustered multi-marker map on hub and search pages. */
.gdc-map--multi { height: 440px; }
@media (max-width: 700px) {
	.gdc-map--multi { height: 340px; }
}
.gdc-cluster {
	background: rgba(42,157,144,.22);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0 0 5px rgba(42,157,144,.10);
}
.gdc-cluster span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--gdc-teal);
	border: 2px solid #fff;
	color: #fff;
	font-family: var(--gdc-font-body);
	font-size: .78rem;
	font-weight: 700;
	font-variant-numeric: tabular-nums;
	box-shadow: 0 2px 8px rgba(15,23,41,.28);
}
.gdc-cluster--md span { width: 35px; height: 35px; background: #238C80; }
.gdc-cluster--lg span { width: 40px; height: 40px; background: #17786C; font-size: .82rem; }
.gdc-map-pop { font-family: var(--gdc-font-body); min-width: 170px; }
.gdc-map-pop-name {
	display: block;
	font-weight: 700;
	font-size: .92rem;
	color: var(--gdc-link);
	text-decoration: none;
	margin-bottom: .15rem;
}
.gdc-map-pop-name:hover { text-decoration: underline; }
.gdc-map-pop-meta { font-size: .8rem; color: var(--gdc-text-muted); }
.gdc-map-pop-badges { margin-top: .4rem; display: flex; gap: .3rem; flex-wrap: wrap; }
.gdc-pop-badge {
	display: inline-block;
	padding: .12rem .5rem;
	border-radius: 999px;
	font-size: .68rem;
	font-weight: 600;
}
.gdc-pop-badge--verified { background: rgba(16,185,129,.12); color: #0a7d57; }
.gdc-pop-badge--gpu { background: rgba(237,90,53,.12); color: var(--gdc-orange); }
.gdc-map-section { margin-bottom: 1.6rem; }

/* Full-bleed bands use the 50vw margin trick; clip the sliver a scrollbar
 * would otherwise add. */
body { overflow-x: clip; }
/* Explicit display values would defeat the hidden attribute without these. */
.gdc-toolbar[hidden],
.gdc-card-locate[hidden] { display: none; }

/* --------------------------------------------------------- hub hero band */
.gdc-hub-hero {
	margin: 0 calc(50% - 50vw);
	background:
		radial-gradient(900px 420px at 18% -10%, rgba(61,191,176,.20), transparent 65%),
		radial-gradient(700px 380px at 85% 110%, rgba(237,90,53,.08), transparent 60%),
		linear-gradient(rgba(42,157,144,.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(42,157,144,.05) 1px, transparent 1px),
		linear-gradient(180deg, var(--gdc-ink) 0%, #131C31 100%);
	background-size: 100% 100%, 100% 100%, 44px 44px, 44px 44px, 100% 100%;
	color: var(--gdc-text-on-dark);
	padding: 1.4rem 0 2rem;
}
.gdc-hub-hero-inner {
	max-width: var(--gdc-maxw);
	margin: 0 auto;
	padding: 0 1.25rem;
}
.gdc-hub-hero h1 {
	font-family: var(--gdc-font-display);
	font-size: clamp(2rem, 4vw, 3.4rem);
	line-height: 1.05;
	margin: .5rem 0 .35rem;
	color: var(--gdc-text-on-dark);
}
.gdc-hub-hero-sub {
	color: var(--gdc-text-on-dark-muted);
	font-size: 1rem;
	max-width: 640px;
	margin: 0 0 1.2rem;
}
.gdc-breadcrumb--dark { color: var(--gdc-text-on-dark-muted); padding: .2rem 0 0; }
.gdc-breadcrumb--dark a:hover { color: var(--gdc-teal-bright); }
.gdc-crumb-sep { opacity: .55; margin: 0 .1rem; }
.gdc-statchips {
	display: flex;
	flex-wrap: wrap;
	gap: .7rem;
	margin: 0;
}
.gdc-statchip {
	background: rgba(255,255,255,.06);
	border: 1px solid rgba(255,255,255,.14);
	border-radius: 14px;
	padding: .65rem 1.15rem .6rem;
	min-width: 122px;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}
.gdc-statchip dt {
	font-size: .7rem;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--gdc-text-on-dark-muted);
	margin: 0 0 .1rem;
}
.gdc-statchip dd {
	margin: 0;
	font-family: var(--gdc-font-display);
	font-size: 1.9rem;
	font-weight: 700;
	line-height: 1.1;
	color: var(--gdc-teal-bright);
	font-variant-numeric: tabular-nums;
}
.gdc-hub-hero .gdc-search-form { margin-top: .4rem; max-width: 640px; }

/* ---------------------------------------------------------------- toolbar */
.gdc-toolbar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: .7rem 1rem;
	margin-top: 1.4rem;
	background: rgba(255,255,255,.86);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid var(--gdc-card-border);
	border-radius: var(--gdc-radius);
	box-shadow: var(--gdc-shadow);
	padding: .65rem .9rem;
	position: sticky;
	top: .75rem;
	z-index: 40;
}
.gdc-toolbar-search {
	display: flex;
	align-items: center;
	gap: .5rem;
	flex: 1 1 240px;
	color: var(--gdc-text-muted);
}
.gdc-toolbar-search input {
	flex: 1;
	border: 0;
	outline: none;
	font: inherit;
	font-size: .92rem;
	color: var(--gdc-text);
	background: transparent;
	min-width: 0;
}
.gdc-toolbar-search input:focus-visible { outline: none; }
.gdc-toolbar:focus-within { border-color: rgba(42,157,144,.55); }
.gdc-toolbar-toggle {
	display: inline-flex;
	align-items: center;
	gap: .45rem;
	font-size: .88rem;
	font-weight: 600;
	color: var(--gdc-text);
	cursor: pointer;
	white-space: nowrap;
}
.gdc-toolbar-toggle input { accent-color: var(--gdc-teal); width: 1rem; height: 1rem; }
.gdc-toolbar-sort {
	display: inline-flex;
	align-items: center;
	gap: .45rem;
	font-size: .88rem;
	color: var(--gdc-text-muted);
	white-space: nowrap;
}
.gdc-toolbar-sort select {
	font: inherit;
	font-size: .88rem;
	font-weight: 600;
	color: var(--gdc-text);
	border: 1px solid var(--gdc-card-border);
	border-radius: var(--gdc-radius-sm);
	background: #fff;
	padding: .3rem .5rem;
}
.gdc-toolbar-count {
	font-size: .85rem;
	font-weight: 600;
	color: var(--gdc-text-muted);
	margin-left: auto;
	white-space: nowrap;
}

/* --------------------------------------------------------- split map+list */
.gdc-split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 390px;
	gap: 1.1rem;
	align-items: stretch;
}
.gdc-split-map { display: flex; }
.gdc-split .gdc-map { height: 100%; min-height: 560px; }
.gdc-split-rail {
	max-height: 560px;
	overflow-y: auto;
	overscroll-behavior: contain;
	padding-right: .15rem;
	scrollbar-width: thin;
}
.gdc-split-rail .gdc-list {
	grid-template-columns: 1fr;
	gap: .7rem;
}
.gdc-split-rail .gdc-card { padding: .85rem 1rem .8rem; }
@media (max-width: 980px) {
	.gdc-split { grid-template-columns: 1fr; }
	.gdc-split .gdc-map { min-height: 340px; }
	.gdc-split-rail { max-height: none; overflow: visible; }
	.gdc-split-rail .gdc-list { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
}
/* Large monitors: taller map, wider rail with two card columns. */
@media (min-width: 1500px) {
	.gdc-split { grid-template-columns: minmax(0, 1fr) 560px; }
	.gdc-split .gdc-map { min-height: 680px; }
	.gdc-split-rail { max-height: 680px; }
	.gdc-split-rail .gdc-list { grid-template-columns: 1fr 1fr; }
}

/* ---------------------------------------------------------- card upgrades */
.gdc-card-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: .5rem;
}
.gdc-card-locate {
	flex: 0 0 auto;
	border: 1px solid var(--gdc-card-border);
	background: #fff;
	color: var(--gdc-text-muted);
	border-radius: var(--gdc-radius-sm);
	width: 36px;
	height: 36px;
	margin: -4px -4px 0 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: color .12s ease, border-color .12s ease;
}
.gdc-card-locate:hover { color: var(--gdc-link); border-color: var(--gdc-teal); }
.gdc-card-meta { color: var(--gdc-text); font-weight: 600; }
.gdc-card-addr { color: var(--gdc-text-muted); font-size: .8rem !important; }
.gdc-card-tags { display: flex; flex-wrap: wrap; gap: .3rem; align-items: center; }
.gdc-card-tags .gdc-badge { margin-right: 0; }
.gdc-spec {
	display: inline-block;
	border: 1px solid var(--gdc-card-border);
	border-radius: 999px;
	padding: .14rem .6rem;
	font-size: .74rem;
	color: var(--gdc-text-muted);
}
.gdc-empty {
	margin: 1.2rem 0 0;
	padding: 1rem 1.2rem;
	background: var(--gdc-surface);
	border-radius: var(--gdc-radius);
	color: var(--gdc-text-muted);
}

/* ---------------------------------------------------------------- CTA band */
.gdc-cta--band {
	margin: 2.6rem calc(50% - 50vw) 0;
	background: linear-gradient(180deg, var(--gdc-ink) 0%, #131C31 100%);
	color: var(--gdc-text-on-dark);
	padding: 2.2rem 1.25rem;
}
.gdc-cta--band > div,
.gdc-cta--band > p {
	max-width: var(--gdc-maxw);
	margin-left: auto;
	margin-right: auto;
	padding: 0;
}
.gdc-cta--band {
	display: block;
}
.gdc-cta--band h2 { color: var(--gdc-text-on-dark); margin: 0 0 .35rem; font-size: 1.45rem; }
.gdc-cta--band p { color: var(--gdc-text-on-dark-muted); margin: 0; }
.gdc-cta--band > p { margin-top: 1.1rem; }
.gdc-cta--band .gdc-button {
	background: var(--gdc-grad-orange);
	color: #fff;
	border-radius: 999px;
	padding: .7rem 1.6rem;
	font-weight: 700;
	text-decoration: none;
	display: inline-block;
}
.gdc-cta--band .gdc-button:hover { filter: brightness(1.07); }
@media (min-width: 800px) {
	.gdc-cta--band { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
	.gdc-cta--band > div, .gdc-cta--band > p { margin: 0; max-width: none; }
	.gdc-cta--band { padding-left: max(1.25rem, calc(50vw - (var(--gdc-maxw) / 2))); padding-right: max(1.25rem, calc(50vw - (var(--gdc-maxw) / 2))); }
}
/* --------------------------------------------------------- facility page */
.gdc-fac-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1.5rem;
	flex-wrap: wrap;
}
.gdc-fac-provider { color: var(--gdc-teal-bright); font-weight: 700; }
.gdc-fac-badges { margin: .2rem 0 1rem; }
.gdc-fac-head-cta { margin: .8rem 0 0; }
.gdc-button--orange {
	background: var(--gdc-grad-orange);
	color: #fff;
	border-radius: 999px;
	padding: .7rem 1.6rem;
	font-weight: 700;
	text-decoration: none;
	display: inline-block;
}
.gdc-button--orange:hover { filter: brightness(1.07); color: #fff; }
.gdc-button--block { display: block; text-align: center; }
.gdc-fac-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 330px;
	gap: 2rem;
	align-items: start;
}
.gdc-fac-rail {
	position: sticky;
	top: 1rem;
	display: grid;
	gap: 1rem;
	margin-top: 2.6rem;
}
.gdc-quote-card {
	background: #fff;
	border: 1px solid rgba(42,157,144,.4);
	border-radius: var(--gdc-radius);
	box-shadow: var(--gdc-shadow);
	padding: 1.3rem 1.4rem 1.2rem;
}
.gdc-quote-card h2 { margin: 0 0 .5rem; font-size: 1.2rem; }
.gdc-quote-card p { margin: 0 0 .9rem; font-size: .9rem; color: var(--gdc-text-muted); }
.gdc-quote-note { font-size: .78rem !important; text-align: center; margin-bottom: 0 !important; }
.gdc-operator-card {
	background: var(--gdc-surface);
	border-radius: var(--gdc-radius);
	padding: 1.1rem 1.4rem 1rem;
	font-size: .9rem;
}
.gdc-operator-card h3 {
	margin: 0 0 .2rem;
	font-size: .72rem;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--gdc-text-muted);
}
.gdc-operator-name { font-weight: 700; font-size: 1.05rem; margin: 0 0 .4rem; }
.gdc-operator-card a { color: var(--gdc-link); text-decoration: none; font-weight: 600; }
.gdc-operator-card a:hover { text-decoration: underline; }
.gdc-checks-section { margin-top: 1.8rem; }
.gdc-checks {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: .5rem;
}
.gdc-checks li {
	display: inline-flex;
	align-items: center;
	gap: .45rem;
	background: #fff;
	border: 1px solid var(--gdc-card-border);
	border-radius: 999px;
	padding: .38rem .9rem;
	font-size: .85rem;
	font-weight: 600;
}
.gdc-list--related { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
@media (max-width: 980px) {
	.gdc-fac-grid { grid-template-columns: 1fr; }
	.gdc-fac-rail { position: static; margin-top: 0; }
}

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

/* ------------------------------------------------- v0.6.0 refresh extras */
/* Homepage band full-bleed: the theme's constrained layout pins the
 * shortcode wrapper itself with margin:auto !important, so the negative
 * margins go on the bands inside it instead. */
.gdc-home .gdc-hero-band,
.gdc-home .gdc-statband {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

/* Operator monogram on cards. */
.gdc-card-head .gdc-mono {
	flex: 0 0 auto;
	width: 34px;
	height: 34px;
	border-radius: 10px;
	background: var(--gdc-teal-tint);
	color: var(--gdc-link);
	font-family: var(--gdc-font-display);
	font-weight: 700;
	font-size: .95rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.gdc-card-head h3 { flex: 1 1 auto; min-width: 0; }

/* Leaflet chrome, in the site's card language instead of stock defaults. */
.leaflet-popup-content-wrapper {
	border-radius: 14px;
	box-shadow: 0 2px 6px rgba(15,23,41,.10), 0 14px 40px rgba(15,23,41,.18);
	padding: 4px 6px;
}
.leaflet-popup-content { margin: 10px 12px; }
.leaflet-popup-tip { box-shadow: 0 2px 6px rgba(15,23,41,.12); }
.leaflet-container a.leaflet-popup-close-button {
	color: var(--gdc-text-muted);
	font-size: 18px;
	padding: 6px 8px 0 0;
}
.leaflet-touch .leaflet-bar,
.leaflet-bar {
	border: 0;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 1px 4px rgba(15,23,41,.14), 0 6px 18px rgba(15,23,41,.12);
}
.leaflet-touch .leaflet-bar a,
.leaflet-bar a {
	width: 34px;
	height: 34px;
	line-height: 34px;
	border-bottom: 1px solid var(--gdc-card-border);
	color: var(--gdc-text);
	font-weight: 600;
}
.leaflet-bar a:hover { background: var(--gdc-surface); color: var(--gdc-link); }
.leaflet-container .leaflet-control-attribution {
	background: rgba(255,255,255,.75);
	font-size: 10px;
	border-radius: 8px 0 0 0;
}

/* Toolbar controls: visible focus, larger checkbox. */
.gdc-toolbar-toggle input { width: 1.1rem; height: 1.1rem; }
.gdc-toolbar input:focus-visible,
.gdc-toolbar select:focus-visible,
.gdc-card-locate:focus-visible {
	outline: 2px solid var(--gdc-teal);
	outline-offset: 2px;
	border-radius: 6px;
}

/* Homepage search: white field affordance so orange stays the only filled
 * action above the fold. */
.gdc-hero-band .gdc-search-form button[type="submit"] {
	background: #fff;
	color: var(--gdc-ink);
	font-weight: 700;
}
.gdc-hero-band .gdc-search-form button[type="submit"]:hover { background: var(--gdc-surface); }

@media (prefers-reduced-motion: reduce) {
	.gdc-map-pin, .gdc-card, .gdc-btn, .gdc-button, .gdc-card-locate { transition: none; }
	.gdc-map-pin:hover { transform: none; }
	.gdc-card:hover { transform: none; }
}

/* ------------------------------------------------------------------ blog */
.gdc-featured {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) 1fr;
	background: #fff;
	border: 1px solid var(--gdc-card-border);
	border-radius: var(--gdc-radius);
	box-shadow: var(--gdc-shadow);
	overflow: hidden;
	text-decoration: none;
	color: var(--gdc-text);
	transition: transform .15s ease, box-shadow .15s ease;
}
.gdc-featured:hover {
	transform: translateY(-2px);
	box-shadow: 0 0 0 3px rgba(42,157,144,.14), 0 12px 34px rgba(15,23,41,.12);
}
.gdc-featured-media {
	display: block;
	min-height: 320px;
	background-size: cover;
	background-position: center;
}
.gdc-featured-body {
	display: flex;
	flex-direction: column;
	gap: .6rem;
	padding: 2rem 2.2rem;
	justify-content: center;
}
.gdc-featured-title {
	font-family: var(--gdc-font-display);
	font-size: clamp(1.4rem, 2.2vw, 2rem);
	font-weight: 700;
	line-height: 1.15;
}
.gdc-featured-excerpt { color: var(--gdc-text-muted); font-size: .96rem; line-height: 1.55; }
.gdc-featured-more { color: var(--gdc-link); font-weight: 700; font-size: .92rem; }
@media (max-width: 880px) {
	.gdc-featured { grid-template-columns: 1fr; }
	.gdc-featured-media { min-height: 210px; }
	.gdc-featured-body { padding: 1.3rem 1.4rem 1.5rem; }
}

.gdc-postgrid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 1.3rem;
}
.gdc-postcard {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: #fff;
	border: 1px solid var(--gdc-card-border);
	border-radius: var(--gdc-radius);
	box-shadow: var(--gdc-shadow);
	overflow: hidden;
	text-decoration: none;
	color: var(--gdc-text);
	transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.gdc-postcard:hover {
	transform: translateY(-2px);
	border-color: rgba(42,157,144,.5);
	box-shadow: 0 0 0 3px rgba(42,157,144,.12), 0 10px 30px rgba(15,23,41,.12);
}
.gdc-postcard-media {
	display: block;
	aspect-ratio: 16 / 9;
	background-size: cover;
	background-position: center;
	background-color: var(--gdc-surface);
}
.gdc-postcard-media--empty {
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--gdc-font-display);
	font-size: 3rem;
	font-weight: 700;
	color: rgba(42,157,144,.4);
	background:
		radial-gradient(340px 180px at 80% -20%, rgba(61,191,176,.25), transparent 70%),
		linear-gradient(180deg, var(--gdc-ink) 0%, #131C31 100%);
}
.gdc-postcard-body {
	display: flex;
	flex-direction: column;
	gap: .45rem;
	padding: 1.1rem 1.25rem 1.25rem;
}
.gdc-postcard-title {
	font-family: var(--gdc-font-display);
	font-size: 1.12rem;
	font-weight: 700;
	line-height: 1.28;
}
.gdc-postcard:hover .gdc-postcard-title { color: var(--gdc-link); }
.gdc-postcard-excerpt { color: var(--gdc-text-muted); font-size: .88rem; line-height: 1.55; }

.gdc-post-meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: .45rem;
	font-size: .78rem;
	color: var(--gdc-text-muted);
}
.gdc-post-cat {
	background: var(--gdc-teal-tint);
	color: var(--gdc-link);
	border-radius: 999px;
	padding: .16rem .65rem;
	font-weight: 700;
	font-size: .72rem;
	text-transform: uppercase;
	letter-spacing: .05em;
}
.gdc-post-meta--hero { color: var(--gdc-text-on-dark-muted); margin: .4rem 0 .2rem; }
.gdc-post-meta--hero .gdc-post-cat { background: rgba(61,191,176,.16); color: var(--gdc-teal-bright); }

.gdc-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.2rem;
}
.gdc-page-btn {
	border: 1px solid var(--gdc-card-border);
	background: #fff;
	border-radius: 999px;
	padding: .5rem 1.2rem;
	text-decoration: none;
	color: var(--gdc-text);
	font-weight: 600;
	font-size: .9rem;
}
.gdc-page-btn:hover { border-color: var(--gdc-teal); color: var(--gdc-link); }

/* Single post */
.gdc-hub-hero--post .gdc-post-hero-inner { max-width: 880px; }
.gdc-hub-hero--post h1 { font-size: clamp(1.9rem, 3.4vw, 2.9rem); max-width: 22ch; }
.gdc-prose-wrap { max-width: 880px; margin: 0 auto; }
.gdc-post-cover { margin: -3.2rem 0 2rem; position: relative; z-index: 1; }
.gdc-post-cover img {
	width: 100%;
	height: auto;
	border-radius: var(--gdc-radius);
	box-shadow: 0 10px 40px rgba(15,23,41,.18);
	display: block;
}
.gdc-prose {
	font-size: 1.06rem;
	line-height: 1.75;
	color: var(--gdc-text);
	padding-top: .8rem;
}
.gdc-prose > * { max-width: 72ch; }
.gdc-prose h2 { font-size: 1.6rem; margin: 2.4rem 0 .8rem; line-height: 1.2; }
.gdc-prose h3 { font-size: 1.25rem; margin: 1.9rem 0 .6rem; }
.gdc-prose p { margin: 0 0 1.15rem; }
.gdc-prose a { color: var(--gdc-link); }
.gdc-prose ul, .gdc-prose ol { margin: 0 0 1.15rem; padding-left: 1.4rem; }
.gdc-prose li { margin: .35rem 0; }
.gdc-prose img { max-width: 100%; height: auto; border-radius: var(--gdc-radius-sm); }
.gdc-prose figure { margin: 1.6rem 0; }
.gdc-prose figcaption { font-size: .82rem; color: var(--gdc-text-muted); margin-top: .5rem; }
.gdc-prose blockquote {
	margin: 1.6rem 0;
	padding: .9rem 1.4rem;
	border-left: 3px solid var(--gdc-teal);
	background: var(--gdc-surface);
	border-radius: 0 var(--gdc-radius-sm) var(--gdc-radius-sm) 0;
	font-size: 1rem;
	color: var(--gdc-text);
}
.gdc-prose blockquote p:last-child { margin-bottom: 0; }
.gdc-prose table { border-collapse: collapse; width: 100%; font-size: .92rem; margin: 1.4rem 0; display: block; overflow-x: auto; }
.gdc-prose th, .gdc-prose td { border: 1px solid var(--gdc-card-border); padding: .55rem .8rem; text-align: left; }
.gdc-prose th { background: var(--gdc-surface); font-weight: 700; }
.gdc-prose hr { border: 0; border-top: 1px solid var(--gdc-card-border); margin: 2.2rem 0; }
.gdc-prose pre { background: var(--gdc-ink); color: var(--gdc-text-on-dark); border-radius: var(--gdc-radius-sm); padding: 1rem 1.2rem; overflow-x: auto; font-size: .88rem; }
.gdc-related-posts { max-width: none; }
/* Room for the cover image that pulls up over the post hero. */
.gdc-hub-hero--post { padding-bottom: 5rem; }
.gdc-hub-hero--post h1 { margin-bottom: 0; }

/* Post layout: article + sticky discovery rail. */
.gdc-post-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: 2.5rem;
	max-width: 1220px;
	margin: 0 auto;
	align-items: start;
}
.gdc-post-layout .gdc-prose-wrap { max-width: 860px; margin: 0; }
.gdc-post-aside {
	position: sticky;
	top: 1rem;
	display: grid;
	gap: 1rem;
	margin-top: 2rem;
}
.gdc-aside-card {
	background: #fff;
	border: 1px solid var(--gdc-card-border);
	border-radius: var(--gdc-radius);
	box-shadow: var(--gdc-shadow);
	padding: 1.15rem 1.3rem 1.1rem;
}
.gdc-aside-card h2 {
	font-size: .78rem;
	text-transform: uppercase;
	letter-spacing: .07em;
	color: var(--gdc-text-muted);
	margin: 0 0 .7rem;
}
.gdc-aside-list { list-style: none; margin: 0; padding: 0; }
.gdc-aside-list li {
	padding: .55rem 0;
	border-bottom: 1px solid var(--gdc-card-border);
	display: grid;
	gap: .15rem;
}
.gdc-aside-list li:last-child { border-bottom: 0; }
.gdc-aside-list a {
	color: var(--gdc-text);
	text-decoration: none;
	font-weight: 600;
	font-size: .89rem;
	line-height: 1.35;
}
.gdc-aside-list a:hover { color: var(--gdc-link); }
.gdc-aside-list .gdc-muted { font-size: .76rem; }
.gdc-aside-all { margin: .7rem 0 0; }
.gdc-aside-all a { color: var(--gdc-link); font-weight: 700; font-size: .88rem; text-decoration: none; }
.gdc-aside-all a:hover { text-decoration: underline; }
.gdc-aside-card--cta { border-color: rgba(42,157,144,.4); }
.gdc-aside-card--cta p { font-size: .86rem; color: var(--gdc-text-muted); margin: 0 0 .8rem; }
.gdc-allposts-link {
	margin-left: auto;
	color: var(--gdc-teal-bright);
	text-decoration: none;
	font-weight: 700;
}
.gdc-allposts-link:hover { text-decoration: underline; }
@media (max-width: 1080px) {
	.gdc-post-layout { grid-template-columns: 1fr; }
	.gdc-post-aside { position: static; margin-top: 0; }
}

/* ------------------------------------------------------------ quote form */
.gdc-quote-form {
	background: #fff;
	border: 1px solid var(--gdc-card-border);
	border-radius: var(--gdc-radius);
	box-shadow: var(--gdc-shadow);
	padding: 1.8rem 2rem 1.6rem;
	max-width: 860px;
}
.gdc-quote-form .gdc-hp { position: absolute; left: -9999px; }
.gdc-quote-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem 1.4rem;
}
.gdc-quote-form label {
	display: block;
	font-size: .85rem;
	font-weight: 600;
	color: var(--gdc-text);
}
.gdc-quote-form label span[aria-hidden] { color: var(--gdc-orange); }
.gdc-quote-form input[type="text"],
.gdc-quote-form input[type="email"],
.gdc-quote-form input[type="tel"],
.gdc-quote-form select,
.gdc-quote-form textarea {
	display: block;
	width: 100%;
	margin-top: .35rem;
	font: inherit;
	font-weight: 400;
	color: var(--gdc-text);
	background: #fff;
	border: 1px solid var(--gdc-card-border);
	border-radius: var(--gdc-radius-sm);
	padding: .6rem .8rem;
}
.gdc-quote-form input:focus-visible,
.gdc-quote-form select:focus-visible,
.gdc-quote-form textarea:focus-visible {
	outline: 2px solid var(--gdc-teal);
	outline-offset: 1px;
	border-color: var(--gdc-teal);
}
.gdc-quote-gpu {
	display: flex !important;
	align-items: center;
	gap: .55rem;
	margin: 1.1rem 0 0;
	font-weight: 600;
}
.gdc-quote-gpu input { accent-color: var(--gdc-teal); width: 1.1rem; height: 1.1rem; }
.gdc-quote-notes { margin-top: 1.1rem; }
.gdc-quote-actions {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
	margin: 1.4rem 0 0;
}
.gdc-quote-note { font-size: .8rem; color: var(--gdc-text-muted); }
.gdc-quote-error {
	background: rgba(220,38,38,.08);
	color: #B42318;
	border-radius: var(--gdc-radius-sm);
	padding: .7rem 1rem;
	font-weight: 600;
	font-size: .9rem;
}
.gdc-quote-context {
	background: var(--gdc-teal-tint);
	color: var(--gdc-text);
	border-radius: var(--gdc-radius-sm);
	padding: .7rem 1rem;
	font-size: .9rem;
}
.gdc-quote-success {
	background: #fff;
	border: 1px solid rgba(42,157,144,.45);
	border-radius: var(--gdc-radius);
	box-shadow: var(--gdc-shadow);
	padding: 2rem 2.2rem;
	max-width: 640px;
}
.gdc-quote-success h2 { margin: 0 0 .5rem; }
.gdc-quote-success p { color: var(--gdc-text-muted); }
@media (max-width: 700px) {
	.gdc-quote-grid { grid-template-columns: 1fr; }
	.gdc-quote-form { padding: 1.2rem 1.3rem; }
}

/* --------------------------------------------------------------- compare */
.gdc-card-compare {
	margin-left: auto;
	border: 1px solid var(--gdc-card-border);
	background: #fff;
	color: var(--gdc-text-muted);
	border-radius: 999px;
	padding: .18rem .7rem;
	font: inherit;
	font-size: .74rem;
	font-weight: 700;
	cursor: pointer;
	transition: color .12s ease, border-color .12s ease, background .12s ease;
}
.gdc-card-compare:hover { color: var(--gdc-link); border-color: var(--gdc-teal); }
.gdc-card-compare.is-on { background: var(--gdc-teal-tint); color: var(--gdc-link); border-color: var(--gdc-teal); }
.gdc-card-compare[hidden] { display: none; }

.gdc-compare-tray {
	position: fixed;
	left: 50%;
	transform: translateX(-50%);
	bottom: 1.1rem;
	z-index: 900;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: .5rem;
	max-width: min(92vw, 980px);
	background: rgba(15,23,41,.94);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	color: var(--gdc-text-on-dark);
	border-radius: 999px;
	padding: .55rem .9rem .55rem 1.2rem;
	box-shadow: 0 12px 40px rgba(15,23,41,.35);
}
.gdc-compare-tray[hidden] { display: none; }
.gdc-tray-label { font-weight: 700; font-size: .85rem; color: var(--gdc-teal-bright); }
.gdc-tray-chip {
	display: inline-flex;
	align-items: center;
	gap: .35rem;
	background: rgba(255,255,255,.08);
	border-radius: 999px;
	padding: .25rem .4rem .25rem .8rem;
	font-size: .8rem;
	max-width: 220px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.gdc-tray-x {
	background: none;
	border: 0;
	color: var(--gdc-text-on-dark-muted);
	font-size: 1rem;
	line-height: 1;
	cursor: pointer;
	padding: .1rem .3rem;
}
.gdc-tray-x:hover { color: #fff; }
.gdc-tray-go { font-size: .85rem; padding: .45rem 1.1rem; }
.gdc-tray-clear {
	background: none;
	border: 0;
	color: var(--gdc-text-on-dark-muted);
	font: inherit;
	font-size: .8rem;
	cursor: pointer;
	text-decoration: underline;
}
.gdc-tray-clear:hover { color: #fff; }

.gdc-compare-scroll { overflow-x: auto; }
.gdc-compare-table {
	border-collapse: collapse;
	width: 100%;
	min-width: 640px;
	background: #fff;
	border: 1px solid var(--gdc-card-border);
	border-radius: var(--gdc-radius);
	box-shadow: var(--gdc-shadow);
	overflow: hidden;
	font-size: .92rem;
}
.gdc-compare-table th, .gdc-compare-table td {
	padding: .7rem 1rem;
	border-bottom: 1px solid var(--gdc-card-border);
	text-align: left;
	vertical-align: top;
}
.gdc-compare-table thead th { background: var(--gdc-surface); }
.gdc-compare-table tbody th {
	font-size: .78rem;
	text-transform: uppercase;
	letter-spacing: .05em;
	color: var(--gdc-text-muted);
	white-space: nowrap;
}
.gdc-compare-speccol { width: 140px; }
.gdc-compare-name {
	font-family: var(--gdc-font-display);
	font-weight: 700;
	font-size: 1rem;
	color: var(--gdc-text);
	text-decoration: none;
	display: block;
	margin-bottom: .3rem;
}
.gdc-compare-name:hover { color: var(--gdc-link); }
.gdc-compare-badges { display: flex; gap: .3rem; flex-wrap: wrap; }

/* -------------------------------------------------------------- suggest */
.gdc-has-suggest { position: relative; }
.gdc-suggest {
	position: absolute;
	top: calc(100% + .5rem);
	left: 0;
	right: 0;
	background: #fff;
	color: var(--gdc-text);
	border-radius: var(--gdc-radius);
	box-shadow: 0 14px 44px rgba(15,23,41,.22);
	padding: .4rem;
	z-index: 200;
	text-align: left;
}
.gdc-suggest[hidden] { display: none; }
.gdc-suggest-item {
	display: flex;
	align-items: baseline;
	gap: .6rem;
	padding: .55rem .7rem;
	border-radius: var(--gdc-radius-sm);
	text-decoration: none;
	color: var(--gdc-text);
	font-size: .92rem;
}
.gdc-suggest-item:hover, .gdc-suggest-item.is-active { background: var(--gdc-teal-tint); }
.gdc-suggest-type {
	flex: none;
	font-size: .64rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .05em;
	border-radius: 999px;
	padding: .14rem .5rem;
	background: var(--gdc-surface);
	color: var(--gdc-text-muted);
}
.gdc-suggest-type--market { background: var(--gdc-teal-tint); color: var(--gdc-link); }
.gdc-suggest-type--provider { background: var(--gdc-orange-tint); color: #C2410C; }
.gdc-suggest-label { font-weight: 600; }
.gdc-suggest-sub { margin-left: auto; color: var(--gdc-text-muted); font-size: .8rem; }

/* ------------------------------------------------- quote + generic pages */
.gdc-quote-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: 2rem;
	max-width: 1260px;
	margin: 2.2rem auto 0;
	align-items: start;
}
.gdc-quote-layout .gdc-quote-form { max-width: none; }
.gdc-quote-rail { position: sticky; top: 1rem; display: grid; gap: 1rem; }
.gdc-steps-list {
	list-style: none;
	margin: 0;
	padding: 0;
	counter-reset: gdcstep;
}
.gdc-steps-list li {
	counter-increment: gdcstep;
	position: relative;
	padding: 0 0 .9rem 2.4rem;
	font-size: .89rem;
	color: var(--gdc-text-muted);
	line-height: 1.5;
}
.gdc-steps-list li strong { color: var(--gdc-text); display: block; }
.gdc-steps-list li::before {
	content: counter(gdcstep);
	position: absolute;
	left: 0;
	top: .1rem;
	width: 1.65rem;
	height: 1.65rem;
	border-radius: 50%;
	background: var(--gdc-teal-tint);
	color: var(--gdc-link);
	font-weight: 700;
	font-size: .8rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
@media (max-width: 1080px) {
	.gdc-quote-layout { grid-template-columns: 1fr; }
	.gdc-quote-rail { position: static; }
}
.gdc-page-prose { max-width: 880px; margin: 0 auto; }
.gdc-page-prose--wide { max-width: 1080px; }
.gdc-page-prose .gdc-prose { padding-top: 2rem; }

/* Logo mark: same gradient ground as the favicon. */
.gdc-logo .gdc-logo-mark {
	background: linear-gradient(180deg, #3DBFB0 0%, #1A7A6E 100%);
}
/* The mark is the SVG image itself (kses strips inline SVG from template
 * parts); the span is just a box for it. */
.gdc-logo .gdc-logo-mark { background: none; }
.gdc-logo .gdc-logo-mark img { width: 34px; height: 34px; display: block; }

/* ---------------------------------------------- v0.11.0 facility redesign */
:root {
	/* Brand accent gradient from the original Lovable logo mark. */
	--gdc-grad-accent: linear-gradient(135deg, #2A9D90 0%, #1EABC8 100%);
}

/* Main column stacks white panels; rail top aligns with the first panel. */
.gdc-fac-main {
	display: grid;
	gap: 1.4rem;
	align-content: start;
	margin-top: 1.8rem;
	min-width: 0;
}
.gdc-fac-rail { margin-top: 1.8rem; }

.gdc-panel {
	background: #fff;
	border: 1px solid var(--gdc-card-border);
	border-radius: var(--gdc-radius);
	box-shadow: var(--gdc-shadow);
	padding: 1.5rem 1.7rem 1.6rem;
	min-width: 0;
}
.gdc-panel > h2 {
	margin: 0 0 1.1rem;
	font-size: 1.12rem;
	display: flex;
	align-items: center;
	gap: .65rem;
}
.gdc-panel > h2::before {
	content: "";
	flex: 0 0 auto;
	width: 5px;
	height: 1.1em;
	border-radius: 4px;
	background: var(--gdc-grad-accent);
}
.gdc-panel-lede {
	margin: 0;
	max-width: 68ch;
	font-size: .98rem;
	line-height: 1.65;
	color: var(--gdc-text);
}
.gdc-panel-lede + .gdc-checks { margin-top: 1.1rem; }
.gdc-panel .gdc-checks li {
	background: var(--gdc-surface);
	border-color: transparent;
}

/* Two half-width panels (on-ramps + certifications) that collapse cleanly. */
.gdc-panel-duo {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 1.4rem;
	min-width: 0;
}

/* Specification grid: label-over-value cells instead of a bare table. */
.gdc-specgrid {
	margin: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
	gap: .8rem;
}
.gdc-speccell {
	background: var(--gdc-surface);
	border-radius: var(--gdc-radius-sm);
	padding: .75rem .95rem .7rem;
	min-width: 0;
}
.gdc-speccell dt {
	font-size: .7rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .07em;
	color: var(--gdc-text-muted);
	margin: 0 0 .18rem;
}
.gdc-speccell dd {
	margin: 0;
	font-family: var(--gdc-font-display);
	font-weight: 700;
	font-size: 1.05rem;
	color: var(--gdc-text);
	overflow-wrap: anywhere;
}

/* Tag pills for on-ramps and certifications. */
.gdc-tagpills {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: .5rem;
}
.gdc-tagpills li {
	background: var(--gdc-teal-tint);
	color: var(--gdc-link);
	border-radius: 999px;
	padding: .4rem .95rem;
	font-size: .85rem;
	font-weight: 600;
}

/* The map panel lets the map card fill the panel edge to edge visually. */
.gdc-panel--map .gdc-map-card { border: 1px solid var(--gdc-card-border); }
.gdc-panel--map .gdc-map { min-height: 380px; }

/* Related band. */
.gdc-related-band { margin-top: 2.4rem; }
.gdc-related-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
}
.gdc-related-head h2 { margin: 0 0 1rem; }
.gdc-related-all {
	color: var(--gdc-link);
	font-weight: 600;
	text-decoration: none;
}
.gdc-related-all:hover { text-decoration: underline; }
.gdc-list--related .gdc-card-head {
	justify-content: flex-start;
	align-items: center;
	gap: .7rem;
}
.gdc-list--related .gdc-card-meta {
	color: var(--gdc-text-muted);
	font-weight: 500;
	margin: .45rem 0 0;
}

/* Wide screens: cap the line lengths inside panels without shrinking the
 * grid, and give the rail a little more presence. */
@media (min-width: 1500px) {
	.gdc-fac-grid { grid-template-columns: minmax(0, 1fr) 360px; gap: 2.4rem; }
}
