/**
 * Pill Gallery — inline, text-height pill that cycles images.
 * Height tracks parent font-size (1em) so it sits with headline type.
 */

.wp-block-acf-pill-gallery {
	display: inline-block;
	vertical-align: middle;
	line-height: 0;
	margin: 0 0.12em;
}

.jb-pill-gallery {
	display: inline-block;
	position: relative;
	vertical-align: middle;
	height: 0.92em;
	width: auto;
	aspect-ratio: var(--jb-pill-aspect, 3 / 1);
	border-radius: 999px;
	overflow: hidden;
	line-height: 0;
	background: #d9d9d9;
}

.jb-pill-gallery--fixed-width {
	width: var(--jb-pill-width);
	height: 1em;
}

.jb-pill-gallery__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	opacity: 0;
	transition: opacity 0.35s ease;
	pointer-events: none;
}

.jb-pill-gallery__img.is-active {
	opacity: 1;
	z-index: 1;
}

.jb-pill-gallery--placeholder {
	background:
		linear-gradient(135deg, #cfcfcf 25%, #e6e6e6 25%, #e6e6e6 50%, #cfcfcf 50%, #cfcfcf 75%, #e6e6e6 75%);
	background-size: 12px 12px;
}

@media (prefers-reduced-motion: reduce) {
	.jb-pill-gallery__img {
		transition: none;
	}
}
