/* Exhibit RSGDX — custom-storefront.css — v6
   v6: ribbon reworked to proper 45deg corner-banner technique; pastel red
       (#c0726e); width-based centering replaces offset translateX approach.
   v5: exhibitrsgdx-store__customers-wrap added — constrains the customers
       section to match store body spacing.
   v4: font-family explicit on all form elements; filter accordion switched to
   max-height transition (FAQ pattern); grid border-left separator desktop-only;
   body gap → 0 (filter right-padding + grid padding-left create the visual gap);
   product card padding added so image is inset; button shrinks to content width.
   Store page styles. Scoped to #exhibitrsgdx-store with an ID anchor
   for the same specificity strategy as #exhibitrsgdx-main — this wins
   over Astra/Elementor/rsgdx class-only selectors without !important.
   Full-bleed breakout matches the homepage pattern exactly.
   Buttons, typography, colors all mirror custom-style.css. */

/* ============================================================
   RESET — scoped, same as #exhibitrsgdx-main
   ============================================================ */

#exhibitrsgdx-store,
#exhibitrsgdx-store *,
#exhibitrsgdx-store *::before,
#exhibitrsgdx-store *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

/* ============================================================
   FULL-BLEED BREAKOUT — same technique as homepage
   ============================================================ */

#exhibitrsgdx-store {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	background-color: var(--exhibitrsgdx-color-bg);
	color: var(--exhibitrsgdx-color-text);
	font-family: var(--exhibitrsgdx-font-sans);
	font-size: var(--exhibitrsgdx-text-base);
	line-height: 1.6;
	min-height: 100vh;
}

#exhibitrsgdx-store h1,
#exhibitrsgdx-store h2,
#exhibitrsgdx-store h3,
#exhibitrsgdx-store h4,
#exhibitrsgdx-store h5,
#exhibitrsgdx-store h6 {
	font-weight: 600;
	line-height: 1.3;
	color: var(--exhibitrsgdx-color-text);
	margin-bottom: var(--exhibitrsgdx-space-4);
}

#exhibitrsgdx-store p {
	margin-bottom: var(--exhibitrsgdx-space-4);
}

#exhibitrsgdx-store a {
	color: var(--exhibitrsgdx-color-primary);
	text-decoration: none;
	transition: color var(--exhibitrsgdx-transition);
}

#exhibitrsgdx-store a:hover,
#exhibitrsgdx-store a:focus {
	color: var(--exhibitrsgdx-color-primary-hover);
}

#exhibitrsgdx-store img {
	max-width: 100%;
	display: block;
}

#exhibitrsgdx-store input,
#exhibitrsgdx-store select,
#exhibitrsgdx-store textarea,
#exhibitrsgdx-store button {
	font-family: var(--exhibitrsgdx-font-sans);
	cursor: pointer;
}

/* ============================================================
   BUTTONS — duplicated from custom-style.css scoped to this ID
   (same reason as #exhibitrsgdx-footer duplication — separate DOM subtree)
   ============================================================ */

#exhibitrsgdx-store .exhibitrsgdx-btn {
	display: inline-block;
	font-family: var(--exhibitrsgdx-font-sans);
	font-weight: 700;
	font-size: 12px;
	padding: 6px 20px;
	border-radius: var(--exhibitrsgdx-radius-button);
	text-transform: uppercase;
	letter-spacing: 0.03em;
	border: 1px solid transparent;
	cursor: pointer;
	transition: background var(--exhibitrsgdx-transition), color var(--exhibitrsgdx-transition), border-color var(--exhibitrsgdx-transition);
}

#exhibitrsgdx-store .exhibitrsgdx-btn--primary {
	background: var(--exhibitrsgdx-btn-color, var(--exhibitrsgdx-color-primary));
	color: #fff;
	border-color: var(--exhibitrsgdx-btn-color, var(--exhibitrsgdx-color-primary));
}

#exhibitrsgdx-store .exhibitrsgdx-btn--primary:hover {
	background: #000;
	color: #fff;
	border-color: var(--exhibitrsgdx-btn-color, var(--exhibitrsgdx-color-primary));
}

#exhibitrsgdx-store .exhibitrsgdx-btn--secondary {
	background: transparent;
	color: #fff;
	border-color: #fff;
}

#exhibitrsgdx-store .exhibitrsgdx-btn--secondary:hover {
	background: #000;
	color: #fff;
	border-color: #fff;
}

/* ============================================================
   HEADER
   ============================================================ */

#exhibitrsgdx-store .exhibitrsgdx-store__header {
	max-width: var(--exhibitrsgdx-content-max-width);
	margin: 0 auto;
	padding: var(--exhibitrsgdx-space-6) var(--exhibitrsgdx-space-6) 0;
}

#exhibitrsgdx-store .exhibitrsgdx-store__title {
	font-size: var(--exhibitrsgdx-text-3xl);
	font-weight: 700;
	margin-bottom: var(--exhibitrsgdx-space-3);
}

#exhibitrsgdx-store .exhibitrsgdx-store__description {
	color: var(--exhibitrsgdx-color-text-muted);
	margin-bottom: var(--exhibitrsgdx-space-4);
}

#exhibitrsgdx-store .exhibitrsgdx-store__divider {
	border: none;
	border-top: 1px solid var(--exhibitrsgdx-color-border);
	margin: var(--exhibitrsgdx-space-4) 0 0;
}

/* ============================================================
   CATEGORY GRIDS
   ============================================================ */

#exhibitrsgdx-store .exhibitrsgdx-store__categories {
	max-width: var(--exhibitrsgdx-content-max-width);
	margin: 0 auto;
	padding: var(--exhibitrsgdx-space-5) var(--exhibitrsgdx-space-6);
}

#exhibitrsgdx-store .exhibitrsgdx-store__categories-grid {
	display: grid;
	grid-template-columns: repeat( auto-fill, minmax( 250px, 1fr ) );
	gap: var(--exhibitrsgdx-space-3);
}

#exhibitrsgdx-store .exhibitrsgdx-store__category-item {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: var(--exhibitrsgdx-color-text);
	background: none;
	overflow: hidden;
	transition: opacity var(--exhibitrsgdx-transition);
}

#exhibitrsgdx-store .exhibitrsgdx-store__category-item:hover {
	color: var(--exhibitrsgdx-color-text);
	opacity: 0.8;
}

#exhibitrsgdx-store .exhibitrsgdx-store__category-image {
	width: 100%;
	height: 160px;
	overflow: hidden;
	background: var(--exhibitrsgdx-color-surface-alt);
	flex-shrink: 0;
	transition: ease .3s;
}

#exhibitrsgdx-store .exhibitrsgdx-store__category-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

#exhibitrsgdx-store .exhibitrsgdx-store__category-item:hover .exhibitrsgdx-store__category-image {
	transform: scale(1.1);
	transition: ease .3s;
}

#exhibitrsgdx-store .exhibitrsgdx-store__category-item:hover .exhibitrsgdx-store__category-image img {
	transform: scale( 1.04 );
	transition: ease .3s;
}

#exhibitrsgdx-store .exhibitrsgdx-store__category-name {
	font-size: var(--exhibitrsgdx-text-sm);
	font-weight: 500;
	padding: 5px 0 0 0;
}

/* ============================================================
   BODY — filter sidebar + product grid
   ============================================================ */

#exhibitrsgdx-store .exhibitrsgdx-store__body {
	max-width: var(--exhibitrsgdx-content-max-width);
	margin: 0 auto;
	padding: var(--exhibitrsgdx-space-5) var(--exhibitrsgdx-space-6);
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 0;
	align-items: start;
}

/* ============================================================
   FILTER SIDEBAR
   ============================================================ */

#exhibitrsgdx-store .exhibitrsgdx-store__filter {
	position: sticky;
	top: var(--exhibitrsgdx-space-5);
	padding-right: var(--exhibitrsgdx-space-6);
}

#exhibitrsgdx-store .exhibitrsgdx-store__filter-close,
#exhibitrsgdx-store .exhibitrsgdx-store__filter-overlay {
	display: none;
}

#exhibitrsgdx-store .exhibitrsgdx-store__filter-title {
	font-size: var(--exhibitrsgdx-text-base);
	font-weight: 700;
	margin-bottom: var(--exhibitrsgdx-space-3);
	color: var(--exhibitrsgdx-color-text);
}

#exhibitrsgdx-store .exhibitrsgdx-store__filter-divider {
	border: none;
	border-top: 1px solid var(--exhibitrsgdx-color-border);
	margin-bottom: var(--exhibitrsgdx-space-4);
}

#exhibitrsgdx-store .exhibitrsgdx-store__filter-search {
	width: 100%;
	padding: 10px 14px;
	border: 1px solid var(--exhibitrsgdx-color-border);
	background: transparent;
	color: var(--exhibitrsgdx-color-text);
	font-family: var(--exhibitrsgdx-font-sans);
	font-size: var(--exhibitrsgdx-text-sm);
	margin-bottom: var(--exhibitrsgdx-space-4);
	outline: none;
	box-shadow: none;
	border-radius: var(--exhibitrsgdx-radius-md);
}

#exhibitrsgdx-store .exhibitrsgdx-store__filter-search:focus {
	border-color: var(--exhibitrsgdx-color-primary);
}

#exhibitrsgdx-store .exhibitrsgdx-store__filter-actions {
	display: flex;
	align-items: center;
	gap: var(--exhibitrsgdx-space-3);
	margin-bottom: var(--exhibitrsgdx-space-4);
}

#exhibitrsgdx-store .exhibitrsgdx-store__filter-actions--bottom {
	margin-top: var(--exhibitrsgdx-space-4);
	margin-bottom: 0;
}

#exhibitrsgdx-store .exhibitrsgdx-store__filter-clear {
	background: none;
	border: none;
	color: var(--exhibitrsgdx-color-text-muted);
	font-family: var(--exhibitrsgdx-font-sans);
	font-size: var(--exhibitrsgdx-text-sm);
	cursor: pointer;
	text-decoration: underline;
	padding: 0;
}

#exhibitrsgdx-store .exhibitrsgdx-store__filter-clear:hover {
	color: var(--exhibitrsgdx-color-text);
}

/* Filter accordion — matches FAQ section animation */

#exhibitrsgdx-store .exhibitrsgdx-store__filter-group {
	border-top: 1px solid var(--exhibitrsgdx-color-border);
}

#exhibitrsgdx-store .exhibitrsgdx-store__filter-group:last-child {
	border-bottom: 1px solid var(--exhibitrsgdx-color-border);
}

#exhibitrsgdx-store .exhibitrsgdx-store__filter-group-header {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: var(--exhibitrsgdx-space-4);
	cursor: pointer;
	font-weight: 600;
	font-size: var(--exhibitrsgdx-text-sm);
	padding: var(--exhibitrsgdx-space-4) 0;
	user-select: none;
	color: var(--exhibitrsgdx-color-text);
	background: none;
	border: none;
	text-align: left;
	transition: color var(--exhibitrsgdx-transition);
}

#exhibitrsgdx-store .exhibitrsgdx-store__filter-group-header:hover {
	color: var(--exhibitrsgdx-color-primary);
}

#exhibitrsgdx-store .exhibitrsgdx-store__filter-group-header i {
	flex: 0 0 auto;
	font-size: 13px;
	color: var(--exhibitrsgdx-color-primary);
	transition: transform var(--exhibitrsgdx-transition);
}

#exhibitrsgdx-store .exhibitrsgdx-store__filter-group.is-open .exhibitrsgdx-store__filter-group-header i {
	transform: rotate(180deg);
}

/* Children use max-height transition — same technique as FAQ answers */
#exhibitrsgdx-store .exhibitrsgdx-store__filter-group-children {
	display: flex;
	flex-direction: column;
	gap: var(--exhibitrsgdx-space-2);
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.25s ease;
}

#exhibitrsgdx-store .exhibitrsgdx-store__filter-group.is-open .exhibitrsgdx-store__filter-group-children {
	padding-bottom: var(--exhibitrsgdx-space-4);
}

#exhibitrsgdx-store .exhibitrsgdx-store__filter-child {
	display: flex;
	align-items: center;
	gap: var(--exhibitrsgdx-space-2);
	font-size: var(--exhibitrsgdx-text-sm);
	cursor: pointer;
	color: var(--exhibitrsgdx-color-text-muted);
}

#exhibitrsgdx-store .exhibitrsgdx-store__filter-child:hover {
	color: var(--exhibitrsgdx-color-text);
}

#exhibitrsgdx-store .exhibitrsgdx-store__filter-child input[type="checkbox"] {
	accent-color: var(--exhibitrsgdx-color-primary);
	width: 14px;
	height: 14px;
	flex-shrink: 0;
}

/* ============================================================
   PRODUCT GRID — sort bar + results
   ============================================================ */

#exhibitrsgdx-store .exhibitrsgdx-store__grid {
	position: relative;
}

@media ( min-width: 768px ) {
	#exhibitrsgdx-store .exhibitrsgdx-store__grid {
		border-left: 1px solid var(--exhibitrsgdx-color-border);
		padding-left: var(--exhibitrsgdx-space-6);
	}
}

#exhibitrsgdx-store .exhibitrsgdx-store__grid-loader {
	display: none;
	position: absolute;
	inset: 0;
	background: rgba(17,17,17,0.7);
	z-index: 10;
	align-items: flex-start;
	justify-content: center;
	padding-top: 80px;
}

#exhibitrsgdx-store .exhibitrsgdx-store__grid-loader.is-loading {
	display: flex;
}

#exhibitrsgdx-store .exhibitrsgdx-store__loader-spinner {
	width: 32px;
	height: 32px;
	border: 3px solid var(--exhibitrsgdx-color-border);
	border-top-color: var(--exhibitrsgdx-color-primary);
	border-radius: 50%;
	animation: exhibitrsgdx-spin 0.7s linear infinite;
}

@keyframes exhibitrsgdx-spin {
	to { transform: rotate(360deg); }
}

#exhibitrsgdx-store .exhibitrsgdx-store__sort-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--exhibitrsgdx-space-4);
	margin-bottom: var(--exhibitrsgdx-space-4);
	flex-wrap: wrap;
}

#exhibitrsgdx-store .exhibitrsgdx-store__sort-controls {
	display: flex;
	align-items: center;
	gap: var(--exhibitrsgdx-space-3);
	flex-wrap: wrap;
}

#exhibitrsgdx-store .exhibitrsgdx-store__sort-select {
	display: inline-block;
	width: auto;
	min-width: 150px;
	padding: 8px 12px;
	border: 1px solid var(--exhibitrsgdx-color-border);
	background: var(--exhibitrsgdx-color-surface);
	color: var(--exhibitrsgdx-color-text);
	font-family: var(--exhibitrsgdx-font-sans);
	font-size: var(--exhibitrsgdx-text-sm);
	cursor: pointer;
	border-radius: 0;
}

#exhibitrsgdx-store .exhibitrsgdx-store__mobile-filter-toggle {
	display: none;
	align-items: center;
	gap: var(--exhibitrsgdx-space-2);
	background: var(--exhibitrsgdx-color-surface);
	border: 1px solid var(--exhibitrsgdx-color-border);
	color: var(--exhibitrsgdx-color-text);
	padding: 8px 12px;
	font-family: var(--exhibitrsgdx-font-sans);
	font-size: var(--exhibitrsgdx-text-sm);
	cursor: pointer;
	border-radius: var(--exhibitrsgdx-radius-md);
}

#exhibitrsgdx-store .exhibitrsgdx-store__scroll-btn {
	background: none;
	border: none;
	color: var(--exhibitrsgdx-color-text-muted);
	font-family: var(--exhibitrsgdx-font-sans);
	font-size: var(--exhibitrsgdx-text-sm);
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 6px;
	white-space: nowrap;
	transition: color var(--exhibitrsgdx-transition);
}

#exhibitrsgdx-store .exhibitrsgdx-store__scroll-btn:hover {
	color: var(--exhibitrsgdx-color-text);
}

/* Product cards — 3 columns */

#exhibitrsgdx-store .exhibitrsgdx-store__product-grid {
	display: grid;
	grid-template-columns: repeat( 3, 1fr );
	gap: var(--exhibitrsgdx-space-4);
}

#exhibitrsgdx-store .exhibitrsgdx-store__product {
	background: var(--exhibitrsgdx-color-surface);
	display: flex;
	flex-direction: column;
	padding: var(--exhibitrsgdx-space-3);
	gap: var(--exhibitrsgdx-space-2);
}

#exhibitrsgdx-store .exhibitrsgdx-store__product-inner {
	display: block;
	text-decoration: none;
	color: var(--exhibitrsgdx-color-text);
}

#exhibitrsgdx-store .exhibitrsgdx-store__product-inner:hover {
	color: var(--exhibitrsgdx-color-text);
}

#exhibitrsgdx-store .exhibitrsgdx-store__product-image {
	width: 100%;
	aspect-ratio: 3 / 2;
	overflow: hidden;
	background: var(--exhibitrsgdx-color-bg);
}

#exhibitrsgdx-store .exhibitrsgdx-store__product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

#exhibitrsgdx-store .exhibitrsgdx-store__product-inner:hover .exhibitrsgdx-store__product-image img {
	transform: scale(1.04);
}

#exhibitrsgdx-store .exhibitrsgdx-store__product-title {
	font-size: var(--exhibitrsgdx-text-base);
	font-weight: 600;
	padding: var(--exhibitrsgdx-space-2) 0 0;
	margin: 0;
	color: var(--exhibitrsgdx-color-text);
}

#exhibitrsgdx-store .exhibitrsgdx-store__product-price {
	padding: 0;
	font-size: var(--exhibitrsgdx-text-sm);
	color: var(--exhibitrsgdx-color-text-muted);
	margin: 0;
}

/* Button shrinks to content width, pushed to bottom of the flex card */
#exhibitrsgdx-store .exhibitrsgdx-store__product-btn {
	margin-top: auto;
	align-self: flex-start;
	text-decoration: none;
}

/* Pagination */

#exhibitrsgdx-store .exhibitrsgdx-store__pagination {
	display: flex;
	gap: var(--exhibitrsgdx-space-2);
	flex-wrap: wrap;
	margin-top: var(--exhibitrsgdx-space-5);
}

#exhibitrsgdx-store .exhibitrsgdx-store__page-btn {
	background: var(--exhibitrsgdx-color-surface);
	border: none;
	border-radius: 0;
	width: 40px;
	height: 40px;
	font-family: var(--exhibitrsgdx-font-sans);
	font-size: var(--exhibitrsgdx-text-sm);
	color: var(--exhibitrsgdx-color-text);
	cursor: pointer;
	transition: background var(--exhibitrsgdx-transition), color var(--exhibitrsgdx-transition);
}

#exhibitrsgdx-store .exhibitrsgdx-store__page-btn:hover,
#exhibitrsgdx-store .exhibitrsgdx-store__page-btn.is-active {
	background: var(--exhibitrsgdx-color-primary);
	color: #fff;
}

#exhibitrsgdx-store .exhibitrsgdx-store__scroll-top {
	margin-top: var(--exhibitrsgdx-space-4);
	font-size: var(--exhibitrsgdx-text-sm);
	color: var(--exhibitrsgdx-color-text-muted);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: none;
	border: none;
	font-family: var(--exhibitrsgdx-font-sans);
	transition: color var(--exhibitrsgdx-transition);
}

#exhibitrsgdx-store .exhibitrsgdx-store__scroll-top:hover {
	color: var(--exhibitrsgdx-color-text);
}

#exhibitrsgdx-store .exhibitrsgdx-store__no-results {
	padding: var(--exhibitrsgdx-space-6);
	text-align: center;
	color: var(--exhibitrsgdx-color-text-muted);
	font-size: var(--exhibitrsgdx-text-base);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
	#exhibitrsgdx-store .exhibitrsgdx-store__body {
		grid-template-columns: 240px 1fr;
	}
	#exhibitrsgdx-store .exhibitrsgdx-store__product-grid {
		grid-template-columns: repeat( 2, 1fr );
	}
}

@media (max-width: 767px) {
	#exhibitrsgdx-store .exhibitrsgdx-store__body {
		grid-template-columns: 1fr;
	}

	/* Filter — slide-in drawer */
	#exhibitrsgdx-store .exhibitrsgdx-store__filter {
		position: fixed;
		top: 0;
		left: -100%;
		width: 280px;
		height: 100%;
		background: var(--exhibitrsgdx-color-bg);
		z-index: 1000;
		padding: var(--exhibitrsgdx-space-5);
		padding-right: var(--exhibitrsgdx-space-5);
		overflow-y: auto;
		transition: left 0.3s ease;
	}

	#exhibitrsgdx-store .exhibitrsgdx-store__filter.is-open {
		left: 0;
	}

	#exhibitrsgdx-store .exhibitrsgdx-store__filter-overlay {
		display: block;
		position: fixed;
		inset: 0;
		background: rgba(0,0,0,0.6);
		z-index: 999;
		opacity: 0;
		pointer-events: none;
		transition: opacity 0.3s ease;
	}

	#exhibitrsgdx-store .exhibitrsgdx-store__filter-overlay.is-open {
		opacity: 1;
		pointer-events: auto;
	}

	#exhibitrsgdx-store .exhibitrsgdx-store__filter-close {
		display: flex;
		justify-content: flex-end;
		cursor: pointer;
		margin-bottom: var(--exhibitrsgdx-space-4);
		font-size: 18px;
		color: var(--exhibitrsgdx-color-text-muted);
		background: none;
		border: none;
	}

	#exhibitrsgdx-store .exhibitrsgdx-store__mobile-filter-toggle {
		display: flex;
	}

	#exhibitrsgdx-store .exhibitrsgdx-store__product-grid {
		grid-template-columns: repeat( 2, 1fr );
	}
}

@media (max-width: 480px) {
	#exhibitrsgdx-store .exhibitrsgdx-store__product-grid {
		grid-template-columns: 1fr;
	}

	#exhibitrsgdx-store .exhibitrsgdx-store__header {
		padding: var(--exhibitrsgdx-space-5) var(--exhibitrsgdx-space-4) 0;
	}

	#exhibitrsgdx-store .exhibitrsgdx-store__body {
		padding: 0 var(--exhibitrsgdx-space-4) var(--exhibitrsgdx-space-6);
	}

	#exhibitrsgdx-store .exhibitrsgdx-store__categories {
		padding: var(--exhibitrsgdx-space-4);
	}
}

/* ============================================================
   CUSTOMERS SECTION WRAPPER
   Constrains the section to the same max-width and horizontal
   padding as .exhibitrsgdx-store__body. The section itself
   handles vertical spacing internally (60px top/bottom padding).
   ============================================================ */

#exhibitrsgdx-store .exhibitrsgdx-store__customers-wrap {
	max-width: var(--exhibitrsgdx-content-max-width);
	margin: 0 auto;
	padding: 0 var(--exhibitrsgdx-space-6);
}

@media (max-width: 480px) {
	#exhibitrsgdx-store .exhibitrsgdx-store__customers-wrap {
		padding: 0 var(--exhibitrsgdx-space-4);
	}
}

/* ============================================================
   OUT OF STOCK — ribbon badge + disabled button
   ============================================================ */

#exhibitrsgdx-store .exhibitrsgdx-store__product-image {
	position: relative;
}

#exhibitrsgdx-store .exhibitrsgdx-store__product-ribbon {
	position: absolute;
	top: 22px;
	left: -32px;
	width: 130px;
	background: #c0726e;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	padding: 5px 0;
	text-align: center;
	transform: rotate(-45deg);
	transform-origin: center center;
	white-space: nowrap;
	z-index: 2;
	pointer-events: none;
	box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

#exhibitrsgdx-store .exhibitrsgdx-store__product-btn--outofstock {
	background: var(--exhibitrsgdx-color-surface);
	color: var(--exhibitrsgdx-color-text-muted);
	border-color: var(--exhibitrsgdx-color-border);
	cursor: not-allowed;
	opacity: 0.7;
	align-self: flex-start;
	margin-top: auto;
}
