/******* Do not edit this file *******
Code Snippets Manager
Saved: Aug 19 2026 | 14:04:54 */
/* CIC — Gold ring bullet list (global utility). Add the `ring-list` class to a <ul>. */
.ring-list {
	list-style: none;
	margin: 30px 0 0 0;
	padding-left: 0;
	display: flex;
	flex-direction: column;
	gap: var(--space-sm);
}
.ring-list > li {
	position: relative;
	padding-left: 36px;
	list-style: none;
}
.ring-list > li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 3px;
	width: 20px;
	height: 20px;
	border-radius: var(--radius-full);
	border: 5px solid var(--color-gold);
	box-sizing: border-box;
}
.ring-list > li:last-child {
	margin-bottom: var(--space-md);
}