/* Exhibit RSGDX — custom-product-brand-grid.css — v1
   Brand-specific 3-card info grid, rendered below the product gallery.
   Deliberately mirrors .exhibitrsgdx-features (the homepage trust-badges
   row) — same surface/border/icon-circle treatment — but scoped to its own
   ID (#exhibitrsgdx-product-brand-grid) and a 3-column grid instead of 4,
   per Ryner's screenshot reference. Same specificity convention as
   #exhibitrsgdx-product-gallery / #exhibitrsgdx-store: ID anchor beats
   Astra/WooCommerce class-only selectors without needing !important. */

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

#exhibitrsgdx-product-brand-grid.exhibitrsgdx-product-brand-grid {
	width: 100%;
	padding: 40px 0 0;
	font-family: var(--exhibitrsgdx-font-sans, inherit);
}

#exhibitrsgdx-product-brand-grid .exhibitrsgdx-product-brand-grid__inner {
	max-width: var(--exhibitrsgdx-content-max-width, 1600px);
	margin: 0 auto;
	padding: 0 24px;
}

#exhibitrsgdx-product-brand-grid .exhibitrsgdx-product-brand-grid__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

#exhibitrsgdx-product-brand-grid .exhibitrsgdx-product-brand-grid__card {
	background: var(--exhibitrsgdx-color-surface, #1a1a1a);
	border: 1px solid var(--exhibitrsgdx-color-border, #2e2e2e);
	border-radius: var(--exhibitrsgdx-radius-md, 0px);
	padding: 24px;
	text-align: center;
	transition: transform var(--exhibitrsgdx-transition, 0.3s ease), border-color var(--exhibitrsgdx-transition, 0.3s ease);
}

#exhibitrsgdx-product-brand-grid .exhibitrsgdx-product-brand-grid__card:hover {
	transform: translateY(-4px);
	border-color: var(--exhibitrsgdx-color-primary, #f26419);
}

#exhibitrsgdx-product-brand-grid .exhibitrsgdx-product-brand-grid__icon {
	width: 40px;
	height: 40px;
	border-radius: var(--exhibitrsgdx-radius-full, 999px);
	background: var(--exhibitrsgdx-color-primary, #f26419);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	margin: 0 auto 16px;
	overflow: hidden;
}

#exhibitrsgdx-product-brand-grid .exhibitrsgdx-product-brand-grid__icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: inherit;
}

#exhibitrsgdx-product-brand-grid .exhibitrsgdx-product-brand-grid__card-title {
	color: var(--exhibitrsgdx-color-text, #f5f5f5);
	font-size: 1rem;
	margin-bottom: 8px;
}

#exhibitrsgdx-product-brand-grid .exhibitrsgdx-product-brand-grid__card-subtext {
	color: var(--exhibitrsgdx-color-text-muted, #a8a8a8);
	font-size: 0.875rem;
	margin-bottom: 0;
}

@media (max-width: 900px) {
	#exhibitrsgdx-product-brand-grid .exhibitrsgdx-product-brand-grid__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 500px) {
	#exhibitrsgdx-product-brand-grid .exhibitrsgdx-product-brand-grid__grid {
		grid-template-columns: 1fr;
	}
}
