/**
 * Momentum PKH — Explore front-end styles.
 *
 * Explore is an ECOSYSTEM surface and runs dark, like Care Hub, Shop, the DLE
 * and Systems. It is the pre-purchase twin of Care Hub: both are knowledge
 * layers wired directly into products.
 *
 * Light surfaces are Insights, legal and checkout — thesis and transaction
 * pages that stand alone with no products in them.
 *
 * The palette boundary follows the content boundary: if it names a product
 * category it is Explore (dark); if it is a thesis it is Insights (light).
 *
 * Every colour resolves through a variable. To retune, override the variable
 * block in Bricks → Custom CSS — do not edit values inline here, and do not
 * edit this file at all if you can avoid it, since it is replaced on update.
 */

.mx-block {
	--mx-navy: #0F1C2E;          /* brand anchor — kept as the override handle */
	--mx-gold: #CFAF6A;          /* accent — unchanged across both palettes */
	--mx-heading: #FFFFFF;       /* headings and card titles */
	--mx-body: #D6DEE7;          /* body copy */
	--mx-muted: #93A3B5;         /* secondary and meta text */
	--mx-line: #22364C;          /* borders and rules */
	--mx-surface: #142438;       /* card background */
	--mx-tint: #0F1C2E;          /* section wells, slightly below surface */
	--mx-sink: #0A121D;          /* deepest — media placeholders */
	--mx-shadow: rgba( 0, 0, 0, 0.35 );

	margin: 0 0 56px;
	font-family: 'Inter', system-ui, -apple-system, sans-serif;
	color: var( --mx-body );
}

.mx-block *,
.mx-block *::before,
.mx-block *::after {
	box-sizing: border-box;
}

/* Section header ------------------------------------------------------- */

.mx-section-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	margin: 0 0 18px;
}

.mx-section-title {
	font-family: 'Space Grotesk', 'Inter', sans-serif;
	font-size: clamp( 20px, 2.2vw, 26px );
	font-weight: 700;
	letter-spacing: -0.01em;
	color: var( --mx-heading );
	margin: 0;
}

.mx-section-link {
	font-size: 14px;
	font-weight: 500;
	color: var( --mx-heading );
	text-decoration: none;
	white-space: nowrap;
	border-bottom: 1px solid transparent;
}

.mx-section-link:hover {
	border-bottom-color: var( --mx-gold );
}

/* Grid ----------------------------------------------------------------- */

.mx-grid {
	display: grid;
	gap: 16px;
}

.mx-grid-3 { grid-template-columns: repeat( 3, minmax( 0, 1fr ) ); }
.mx-grid-4 { grid-template-columns: repeat( 4, minmax( 0, 1fr ) ); }
.mx-grid-5 { grid-template-columns: repeat( 5, minmax( 0, 1fr ) ); }
.mx-grid-6 { grid-template-columns: repeat( 6, minmax( 0, 1fr ) ); }

@media ( max-width: 1024px ) {
	.mx-grid-4,
	.mx-grid-5,
	.mx-grid-6 { grid-template-columns: repeat( 3, minmax( 0, 1fr ) ); }
}

@media ( max-width: 780px ) {
	.mx-grid-3,
	.mx-grid-4,
	.mx-grid-5,
	.mx-grid-6 { grid-template-columns: repeat( 2, minmax( 0, 1fr ) ); }
}

@media ( max-width: 480px ) {
	.mx-grid-3,
	.mx-grid-4,
	.mx-grid-5,
	.mx-grid-6 { grid-template-columns: minmax( 0, 1fr ); }
}

/* Shared media --------------------------------------------------------- */

.mx-thumb-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mx-thumb-placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient( 135deg, #1B2E45 0%, #0F1C2E 100% );
}

/* Category card -------------------------------------------------------- */

.mx-cat-card {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: 10px;
	text-decoration: none;
	aspect-ratio: 4 / 3;
	background: var( --mx-sink );
}

.mx-cat-media {
	position: absolute;
	inset: 0;
	display: block;
}

.mx-cat-media::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient( to top, rgba( 15, 28, 46, 0.86 ) 0%, rgba( 15, 28, 46, 0.15 ) 55%, rgba( 15, 28, 46, 0 ) 100% );
}

.mx-cat-body {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	display: block;
	padding: 16px;
	color: var( --mx-heading );
}

.mx-cat-name {
	display: block;
	font-family: 'Space Grotesk', 'Inter', sans-serif;
	font-size: 17px;
	font-weight: 600;
}

.mx-cat-blurb {
	display: block;
	margin-top: 2px;
	font-size: 13px;
	color: var( --mx-muted );
}

.mx-cat-count {
	display: block;
	margin-top: 6px;
	font-family: 'Space Mono', ui-monospace, monospace;
	font-size: 12px;
	letter-spacing: 0.02em;
	color: var( --mx-gold );
}

.mx-cat-card:hover .mx-thumb-img {
	transform: scale( 1.03 );
	transition: transform 400ms ease;
}

/* Generic card --------------------------------------------------------- */

.mx-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var( --mx-line );
	border-radius: 10px;
	background: var( --mx-surface );
	text-decoration: none;
	color: inherit;
	transition: border-color 180ms ease, box-shadow 180ms ease;
}

.mx-card:hover {
	border-color: var( --mx-gold );
	box-shadow: 0 6px 22px var( --mx-shadow );
}

.mx-card-media {
	display: block;
	aspect-ratio: 16 / 10;
	background: var( --mx-sink );
	overflow: hidden;
}

.mx-card-body {
	display: block;
	padding: 14px 14px 16px;
}

.mx-card-kicker {
	display: block;
	margin: 0 0 4px;
	font-family: 'Space Mono', ui-monospace, monospace;
	font-size: 11px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var( --mx-gold );
}

.mx-card-title {
	display: block;
	font-family: 'Space Grotesk', 'Inter', sans-serif;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.35;
	color: var( --mx-heading );
}

.mx-card-summary {
	display: block;
	margin-top: 6px;
	font-size: 13px;
	line-height: 1.5;
	color: var( --mx-muted );
}

.mx-card-price {
	display: block;
	margin-top: 8px;
	font-size: 13px;
	color: var( --mx-muted );
}

.mx-card-foot {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 12px;
}

.mx-chip {
	display: inline-block;
	padding: 3px 8px;
	border-radius: 4px;
	background: var( --mx-tint );
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var( --mx-heading );
}

.mx-stat {
	font-family: 'Space Mono', ui-monospace, monospace;
	font-size: 11px;
	color: var( --mx-gold );
}

/* Goal card ------------------------------------------------------------ */

.mx-goal-card {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 14px;
	border: 1px solid var( --mx-line );
	border-radius: 10px;
	background: var( --mx-surface );
	text-decoration: none;
	transition: border-color 180ms ease;
}

.mx-goal-card:hover {
	border-color: var( --mx-gold );
}

.mx-goal-icon {
	flex: 0 0 auto;
	color: var( --mx-heading );
}

.mx-goal-name {
	display: block;
	font-family: 'Space Grotesk', 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: var( --mx-heading );
}

.mx-goal-blurb {
	display: block;
	margin-top: 3px;
	font-size: 12px;
	line-height: 1.45;
	color: var( --mx-muted );
}

/* Technology grid ------------------------------------------------------ */

.mx-tech-grid {
	display: grid;
	grid-template-columns: repeat( auto-fit, minmax( 140px, 1fr ) );
	gap: 12px;
}

.mx-tech-tile {
	display: block;
	padding: 16px 14px;
	border: 1px solid var( --mx-line );
	border-radius: 10px;
	background: var( --mx-surface );
	text-decoration: none;
	text-align: left;
	transition: border-color 180ms ease;
}

.mx-tech-tile:hover {
	border-color: var( --mx-gold );
}

.mx-tech-icon {
	display: block;
	margin: 0 0 10px;
	color: var( --mx-heading );
}

.mx-icon {
	width: 22px;
	height: 22px;
}

.mx-tech-name {
	display: block;
	font-family: 'Space Grotesk', 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: var( --mx-heading );
}

.mx-tech-def {
	display: block;
	margin-top: 3px;
	font-size: 12px;
	line-height: 1.4;
	color: var( --mx-muted );
}

/* Comparison strip ----------------------------------------------------- */

.mx-compare-card {
	display: block;
	padding: 16px;
	border: 1px solid var( --mx-line );
	border-radius: 10px;
	background: var( --mx-tint );
	text-decoration: none;
	transition: border-color 180ms ease;
}

.mx-compare-card:hover {
	border-color: var( --mx-gold );
}

.mx-compare-sides {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 10px;
}

.mx-compare-side {
	display: block;
	text-align: center;
}

.mx-compare-media {
	display: block;
	height: 72px;
	margin: 0 auto 8px;
	overflow: hidden;
	border-radius: 6px;
}

.mx-compare-media .mx-thumb-img {
	object-fit: contain;
}

.mx-compare-label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: var( --mx-heading );
}

.mx-compare-vs {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border: 1px solid var( --mx-line );
	border-radius: 50%;
	background: var( --mx-surface );
	font-family: 'Space Mono', ui-monospace, monospace;
	font-size: 11px;
	color: var( --mx-muted );
}

/* Appears in ----------------------------------------------------------- */

.mx-appears-in {
	padding: 22px;
	border-radius: 12px;
	background: var( --mx-tint );
}

.mx-appears-list {
	display: grid;
	grid-template-columns: repeat( auto-fit, minmax( 220px, 1fr ) );
	gap: 12px;
}

.mx-appears-item {
	display: block;
	padding: 14px;
	border: 1px solid var( --mx-line );
	border-radius: 8px;
	background: var( --mx-surface );
	text-decoration: none;
	transition: border-color 180ms ease;
}

.mx-appears-item:hover {
	border-color: var( --mx-gold );
}

.mx-appears-kicker {
	display: block;
	font-family: 'Space Mono', ui-monospace, monospace;
	font-size: 10px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var( --mx-gold );
}

.mx-appears-title {
	display: block;
	margin-top: 4px;
	font-family: 'Space Grotesk', 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: var( --mx-heading );
}

.mx-appears-summary {
	display: block;
	margin-top: 4px;
	font-size: 12px;
	line-height: 1.5;
	color: var( --mx-muted );
}

/* Care links ----------------------------------------------------------- */

.mx-care-grid {
	display: grid;
	grid-template-columns: repeat( auto-fit, minmax( 260px, 1fr ) );
	gap: 12px;
}

.mx-care-card {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px 18px;
	border: 1px solid var( --mx-line );
	border-radius: 10px;
	background: var( --mx-surface );
	text-decoration: none;
	transition: border-color 180ms ease, box-shadow 180ms ease;
}

.mx-care-card:hover {
	border-color: var( --mx-gold );
	box-shadow: 0 6px 22px var( --mx-shadow );
}

.mx-care-card-icon {
	flex: 0 0 auto;
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba( 207, 175, 106, 0.12 );
	color: var( --mx-gold );
}

.mx-care-card-text {
	flex: 1 1 auto;
	min-width: 0;
}

.mx-care-card-kicker {
	display: block;
	font-family: 'Space Mono', ui-monospace, monospace;
	font-size: 9.5px;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: var( --mx-gold );
}

.mx-care-card-title {
	display: block;
	margin-top: 3px;
	font-family: 'Space Grotesk', 'Inter', sans-serif;
	font-size: 14.5px;
	font-weight: 600;
	line-height: 1.35;
	color: var( --mx-heading );
}

.mx-care-card-path {
	display: block;
	margin-top: 2px;
	font-size: 11.5px;
	color: var( --mx-muted );
}

.mx-care-card-arrow {
	flex: 0 0 auto;
	color: var( --mx-muted );
	font-size: 16px;
	transition: transform 180ms ease, color 180ms ease;
}

.mx-care-card:hover .mx-care-card-arrow {
	color: var( --mx-gold );
	transform: translateX( 3px );
}

/* Breadcrumb ----------------------------------------------------------- */

.mx-breadcrumb ol {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	margin: 0 0 14px;
	padding: 0;
	list-style: none;
	font-size: 12px;
	color: var( --mx-muted );
}

.mx-breadcrumb li + li::before {
	content: '/';
	margin-right: 6px;
	color: var( --mx-line );
}

.mx-breadcrumb a {
	color: var( --mx-muted );
	text-decoration: none;
}

.mx-breadcrumb a:hover {
	color: var( --mx-heading );
}

.mx-breadcrumb [aria-current='page'] {
	color: var( --mx-heading );
	font-weight: 600;
}

/* Next step ------------------------------------------------------------ */

.mx-next-step {
	display: block;
	padding: 18px 20px;
	border: 1px solid var( --mx-line );
	border-left: 3px solid var( --mx-gold );
	border-radius: 8px;
	background: var( --mx-surface );
	text-decoration: none;
}

.mx-next-kicker {
	display: block;
	font-family: 'Space Mono', ui-monospace, monospace;
	font-size: 11px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var( --mx-muted );
}

.mx-next-label {
	display: block;
	margin-top: 4px;
	font-family: 'Space Grotesk', 'Inter', sans-serif;
	font-size: 16px;
	font-weight: 600;
	color: var( --mx-heading );
}

/* Editor-only empty state ---------------------------------------------- */

.mx-empty {
	display: flex;
	align-items: baseline;
	gap: 12px;
	flex-wrap: wrap;
	padding: 10px 14px;
	border: 1px dashed rgba( 207, 175, 106, 0.55 );
	border-radius: 6px;
	background: transparent;
	font-size: 13px;
	line-height: 1.5;
	color: var( --mx-muted );
}

.mx-empty-badge {
	flex: 0 0 auto;
	padding: 2px 7px;
	border-radius: 3px;
	background: rgba( 207, 175, 106, 0.14 );
	font-family: 'Space Mono', ui-monospace, monospace;
	font-size: 9.5px;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: var( --mx-gold );
	white-space: nowrap;
}

.mx-empty-text {
	flex: 1 1 auto;
	min-width: 0;
}

/* Summary / orientation ------------------------------------------------ */

.mx-summary-kicker {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin: 0 0 10px;
	font-family: 'Space Mono', ui-monospace, monospace;
	font-size: 11px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var( --mx-muted );
}

.mx-summary-cat,
.mx-summary-time {
	position: relative;
	padding-left: 12px;
}

.mx-summary-cat::before,
.mx-summary-time::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	width: 4px;
	height: 4px;
	margin-top: -2px;
	border-radius: 50%;
	background: var( --mx-gold );
}

.mx-summary-text {
	margin: 0;
	font-size: clamp( 16px, 1.6vw, 19px );
	line-height: 1.55;
	color: var( --mx-heading );
}

.mx-summary-intro {
	margin: 10px 0 0;
	font-size: 13px;
	line-height: 1.55;
	color: var( --mx-muted );
}

/* Table of contents ---------------------------------------------------- */

.mx-toc {
	padding: 18px 20px;
	border: 1px solid var( --mx-line );
	border-left: 3px solid var( --mx-gold );
	border-radius: 8px;
	background: var( --mx-tint );
}

.mx-toc-title {
	display: block;
	margin: 0 0 10px;
	font-family: 'Space Mono', ui-monospace, monospace;
	font-size: 11px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var( --mx-muted );
}

.mx-toc ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

.mx-toc li {
	margin: 0 0 6px;
}

.mx-toc li:last-child {
	margin-bottom: 0;
}

.mx-toc-l3 {
	padding-left: 16px;
}

.mx-toc a {
	font-size: 14px;
	line-height: 1.45;
	color: var( --mx-heading );
	text-decoration: none;
	border-bottom: 1px solid transparent;
}

.mx-toc a:hover {
	border-bottom-color: var( --mx-gold );
}

/* Feature matrix ------------------------------------------------------- */

.mx-matrix-scroll {
	overflow-x: auto;
}

.mx-matrix-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
}

.mx-matrix-table th,
.mx-matrix-table td {
	padding: 12px 14px;
	text-align: left;
	border-bottom: 1px solid var( --mx-line );
	vertical-align: top;
}

.mx-matrix-table thead th {
	font-family: 'Space Grotesk', 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: var( --mx-heading );
	border-bottom: 2px solid var( --mx-gold );
	white-space: nowrap;
}

.mx-matrix-table tbody th {
	font-weight: 600;
	color: var( --mx-heading );
	white-space: nowrap;
}

.mx-matrix-table td {
	color: var( --mx-muted );
}

.mx-matrix-table td.mx-win {
	color: var( --mx-heading );
	font-weight: 600;
	background: rgba( 207, 175, 106, 0.1 );
	box-shadow: inset 2px 0 0 var( --mx-gold );
}

/* Verdict -------------------------------------------------------------- */

.mx-grid-2 {
	grid-template-columns: repeat( 2, minmax( 0, 1fr ) );
}

@media ( max-width: 640px ) {
	.mx-grid-2 { grid-template-columns: minmax( 0, 1fr ); }
}

.mx-verdict-side {
	padding: 16px;
	border: 1px solid var( --mx-line );
	border-radius: 8px;
	background: var( --mx-surface );
}

.mx-verdict-label {
	display: block;
	margin: 0 0 6px;
	font-family: 'Space Grotesk', 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: var( --mx-heading );
}

.mx-verdict-side p {
	margin: 0;
	font-size: 14px;
	line-height: 1.55;
	color: var( --mx-muted );
}

.mx-verdict-text {
	margin-top: 16px;
	padding: 18px 20px;
	border-left: 3px solid var( --mx-gold );
	background: var( --mx-tint );
	border-radius: 8px;
}

.mx-verdict-text p {
	margin: 0;
	font-size: 15px;
	line-height: 1.6;
	color: var( --mx-heading );
}

/* FAQ ------------------------------------------------------------------ */

.mx-faq-item {
	border-bottom: 1px solid var( --mx-line );
}

.mx-faq-item summary {
	padding: 14px 0;
	cursor: pointer;
	list-style: none;
	font-family: 'Space Grotesk', 'Inter', sans-serif;
	font-size: 15px;
	font-weight: 600;
	color: var( --mx-heading );
}

.mx-faq-item summary::-webkit-details-marker {
	display: none;
}

.mx-faq-item summary::after {
	content: '+';
	float: right;
	color: var( --mx-gold );
	font-weight: 400;
}

.mx-faq-item[open] summary::after {
	content: '\2212';
}

.mx-faq-answer {
	padding: 0 0 16px;
	font-size: 14px;
	line-height: 1.6;
	color: var( --mx-muted );
}

.mx-faq-answer p {
	margin: 0 0 10px;
}

.mx-faq-answer p:last-child {
	margin-bottom: 0;
}

/* Term meta admin control ---------------------------------------------- */

.mx-media-preview img {
	margin-bottom: 8px;
	border-radius: 4px;
}

/* Care Hub call to action ---------------------------------------------- */

.mx-care-cta {
	display: flex;
	align-items: center;
	gap: 18px;
	flex-wrap: wrap;
	padding: 20px 24px;
	border: 1px solid var( --mx-line );
	border-left: 3px solid var( --mx-gold );
	border-radius: 12px;
	background: var( --mx-surface );
}

.mx-care-cta-icon {
	flex: 0 0 auto;
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba( 207, 175, 106, 0.12 );
	color: var( --mx-gold );
}

.mx-care-cta-text {
	flex: 1 1 260px;
	min-width: 0;
}

.mx-care-cta-title {
	display: block;
	font-family: 'Space Grotesk', 'Inter', sans-serif;
	font-size: 16px;
	font-weight: 600;
	color: var( --mx-heading );
}

.mx-care-cta-sub {
	display: block;
	margin-top: 3px;
	font-size: 13.5px;
	line-height: 1.5;
	color: var( --mx-muted );
}

.mx-care-cta-btn {
	flex: 0 0 auto;
	padding: 12px 22px;
	border-radius: 6px;
	background: var( --mx-gold );
	color: #0F1C2E;
	font-family: 'Space Grotesk', 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
	transition: filter 160ms ease;
}

.mx-care-cta-btn:hover {
	filter: brightness( 1.08 );
}

@media ( max-width: 560px ) {
	.mx-care-cta-btn {
		width: 100%;
		text-align: center;
	}
}

/* Search ---------------------------------------------------------------- */

.mx-search {
	position: relative;
	max-width: 520px;
	margin-bottom: 0;
}

.mx-search-field {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 14px;
	border: 1px solid var( --mx-line );
	border-radius: 8px;
	background: var( --mx-surface );
	transition: border-color 160ms ease;
}

.mx-search-field:focus-within {
	border-color: var( --mx-gold );
}

.mx-search-icon {
	flex: 0 0 auto;
	display: grid;
	place-items: center;
	color: var( --mx-muted );
}

.mx-search-input {
	flex: 1 1 auto;
	min-width: 0;
	border: 0;
	background: transparent;
	color: var( --mx-heading );
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 14.5px;
	line-height: 1.4;
	outline: none;
	-webkit-appearance: none;
	appearance: none;
}

.mx-search-input::placeholder {
	color: var( --mx-muted );
}

.mx-search-input::-webkit-search-cancel-button {
	display: none;
}

.mx-search-clear {
	flex: 0 0 auto;
	border: 0;
	background: none;
	color: var( --mx-muted );
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	padding: 0 2px;
}

.mx-search-clear:hover {
	color: var( --mx-heading );
}

.mx-search-results {
	position: absolute;
	z-index: 60;
	left: 0;
	right: 0;
	top: calc( 100% + 6px );
	max-height: 380px;
	overflow-y: auto;
	border: 1px solid var( --mx-line );
	border-radius: 8px;
	background: var( --mx-surface );
	box-shadow: 0 12px 34px var( --mx-shadow );
}

.mx-search-group {
	padding: 9px 14px 5px;
	font-family: 'Space Mono', ui-monospace, monospace;
	font-size: 9.5px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var( --mx-gold );
}

.mx-search-item {
	display: block;
	padding: 9px 14px;
	text-decoration: none;
	border-left: 2px solid transparent;
}

.mx-search-item:hover,
.mx-search-item.is-active {
	background: rgba( 207, 175, 106, 0.07 );
	border-left-color: var( --mx-gold );
}

.mx-search-item-title {
	display: block;
	font-family: 'Space Grotesk', 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: var( --mx-heading );
}

.mx-search-item-sum {
	display: block;
	margin-top: 2px;
	font-size: 12.5px;
	line-height: 1.45;
	color: var( --mx-muted );
}

.mx-search-item-cat {
	display: inline-block;
	margin-top: 5px;
	padding: 2px 7px;
	border-radius: 3px;
	background: var( --mx-tint );
	font-size: 9.5px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var( --mx-muted );
}

.mx-search-note {
	padding: 14px;
	font-size: 13px;
	color: var( --mx-muted );
}