/* Alliance Resources Page — only the post-meta row is new here.
   Hero (.au-page-hero) comes from tokens.css (shared component);
   sidebar, card, grid, and CTA band all come from alliance-core's
   products.css. This file just adds the date row to each post card. */

.alliance-products .resource-meta {
	margin-top: 12px;
	padding-top: 14px;
	border-top: 1px solid var(--au-border);
	display: flex;
	align-items: center;
	gap: 6px;
	font-family: var(--au-font-body);
	font-size: 12.5px;
	color: var(--au-text-muted);
}

/* Small inline clock icon before the date — pure CSS, no SVG asset
   needed. Matches the muted style of the date itself. */
.alliance-products .resource-date::before {
	content: '';
	display: inline-block;
	width: 11px;
	height: 11px;
	margin-right: 6px;
	margin-bottom: -1px;
	border: 1.2px solid currentColor;
	border-radius: 50%;
	background:
		linear-gradient(currentColor, currentColor) center/1.2px 4px no-repeat,
		linear-gradient(currentColor, currentColor) center/4px 1.2px no-repeat;
	background-position: 50% 30%, 60% 50%;
	opacity: .8;
}
