/* Exhibit Central — Product Downloads & Links Tab */

#exhibitrsgdx-product-links.exhibitrsgdx-product-links {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

#exhibitrsgdx-product-links .exhibitrsgdx-product-links__heading {
	margin: 0 0 12px;
	font-size: var(--exhibitrsgdx-text-sm, 0.875rem);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--exhibitrsgdx-color-text-muted, #a8a8a8);
}

#exhibitrsgdx-product-links .exhibitrsgdx-product-links__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}

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

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

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

#exhibitrsgdx-product-links .exhibitrsgdx-product-links__card {
	background: var(--exhibitrsgdx-color-surface-high, #1e1e1e);
	border: 1px solid var(--exhibitrsgdx-color-border, #2e2e2e);
	border-radius: 6px;
	overflow: hidden;
	transition: border-color 0.15s ease;
}

#exhibitrsgdx-product-links .exhibitrsgdx-product-links__card:hover {
	border-color: var(--exhibitrsgdx-color-primary, #f26419);
}

#exhibitrsgdx-product-links .exhibitrsgdx-product-links__card-link {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 16px;
	color: var(--exhibitrsgdx-color-primary, #f26419);
	font-size: var(--exhibitrsgdx-text-sm, 0.875rem);
	font-weight: 500;
	text-decoration: none;
	transition: color 0.15s ease;
	word-break: break-word;
}

#exhibitrsgdx-product-links .exhibitrsgdx-product-links__card-link:hover {
	color: var(--exhibitrsgdx-color-primary-light, #ff8c4a);
	text-decoration: none;
}

#exhibitrsgdx-product-links .exhibitrsgdx-product-links__card-link i {
	flex-shrink: 0;
	font-size: 13px;
	opacity: 0.8;
}

#exhibitrsgdx-product-links .exhibitrsgdx-product-links__details {
	margin: 0;
	padding: 6px 16px 14px calc(10px + 13px + 16px); /* align with link text */
	list-style: none;
	border-top: 1px solid var(--exhibitrsgdx-color-border, #2e2e2e);
}

#exhibitrsgdx-product-links .exhibitrsgdx-product-links__details li {
	display: block;
	font-size: var(--exhibitrsgdx-text-xs, 0.75rem);
	color: var(--exhibitrsgdx-color-text-muted, #a8a8a8);
}

#exhibitrsgdx-product-links .exhibitrsgdx-product-links__details li + li {
	margin-top: 10px;
}

#exhibitrsgdx-product-links .exhibitrsgdx-product-links__details li span {
	display: block;
	font-weight: 700;
	color: var(--exhibitrsgdx-color-text, #f5f5f5);
	margin-bottom: 2px;
}
