/* mm-bullets + mm-bullets-inline
   Custom M-shaped bullet lists. Two variants:
     ul.mm-bullets         vertical list, one item per row
     ul.mm-bullets-inline  horizontal flex-wrap row of small chips
   Each bullet is an SVG (mm-bullet.svg) cycling through the constellation
   palette via hue-rotate. Up to 10 items animate on staggered delays. */

ul.mm-bullets {
	list-style: none;
	padding-left: 15px;
}

ul.mm-bullets li {
	position: relative;
	padding-left: 28px;
	margin-bottom: 14px;
	min-height: 1.5em;
	display: flex;
	align-items: center;
	color: rgba(255, 255, 255, 0.6);
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	line-height: 1.4;
}

ul.mm-bullets li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 14px;
	height: 11px;
	background-image: url('/images/shapes/mm-bullet.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	animation: mmBulletTwinkle 6s linear infinite;
}

ul.mm-bullets li:nth-child(2)::before  { animation-delay: -0.6s; }
ul.mm-bullets li:nth-child(3)::before  { animation-delay: -1.2s; }
ul.mm-bullets li:nth-child(4)::before  { animation-delay: -1.8s; }
ul.mm-bullets li:nth-child(5)::before  { animation-delay: -2.4s; }
ul.mm-bullets li:nth-child(6)::before  { animation-delay: -3.0s; }
ul.mm-bullets li:nth-child(7)::before  { animation-delay: -3.6s; }
ul.mm-bullets li:nth-child(8)::before  { animation-delay: -4.2s; }
ul.mm-bullets li:nth-child(9)::before  { animation-delay: -4.8s; }
ul.mm-bullets li:nth-child(10)::before { animation-delay: -5.4s; }

/* Inline variant: horizontal flowing row of small uppercase tags */
ul.mm-bullets-inline {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 14px 28px;
}

ul.mm-bullets-inline li {
	position: relative;
	padding-left: 22px;
	color: rgba(255, 255, 255, 0.6);
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	line-height: 1.4;
	white-space: nowrap;
}

ul.mm-bullets-inline li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 14px;
	height: 11px;
	background-image: url('/images/shapes/mm-bullet.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	animation: mmBulletTwinkle 6s linear infinite;
}

ul.mm-bullets-inline li:nth-child(2)::before  { animation-delay: -0.6s; }
ul.mm-bullets-inline li:nth-child(3)::before  { animation-delay: -1.2s; }
ul.mm-bullets-inline li:nth-child(4)::before  { animation-delay: -1.8s; }
ul.mm-bullets-inline li:nth-child(5)::before  { animation-delay: -2.4s; }
ul.mm-bullets-inline li:nth-child(6)::before  { animation-delay: -3.0s; }
ul.mm-bullets-inline li:nth-child(7)::before  { animation-delay: -3.6s; }
ul.mm-bullets-inline li:nth-child(8)::before  { animation-delay: -4.2s; }
ul.mm-bullets-inline li:nth-child(9)::before  { animation-delay: -4.8s; }
ul.mm-bullets-inline li:nth-child(10)::before { animation-delay: -5.4s; }

/* The bullet SVG is blue; hue-rotate cycles it through the full spectrum. */
@keyframes mmBulletTwinkle {
	0%   { filter: hue-rotate(0deg)   brightness(1.0);  }
	50%  { filter: hue-rotate(180deg) brightness(1.15); }
	100% { filter: hue-rotate(360deg) brightness(1.0);  }
}

@media (prefers-reduced-motion: reduce) {
	ul.mm-bullets li::before,
	ul.mm-bullets-inline li::before { animation: none; filter: none; }
}
