.bbsuite2-gallery-container {
	width: 100%;
	display: flex;
	flex-direction: column;
}

.bbsuite2-post-slider {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	--bbs2-slides-to-show: 1;
}

.bbsuite2-post-slider::-webkit-scrollbar {
	display: none;
}

.bbsuite2-post-slider .bbsuite2-slide {
	flex: 0 0 calc(100% / var(--bbs2-slides-to-show));
	scroll-snap-align: start;
	min-width: 0;
}

.bbsuite2-slider-dots {
	display: none;
	margin-top: 12px;
	gap: 8px;
	justify-content: center;
	align-items: center;
}

.bbsuite2-slider-dots button {
	width: 10px;
	height: 10px;
	border-radius: 999px;
	border: 0;
	padding: 0;
	cursor: pointer;
	opacity: .35;
}

.bbsuite2-slider-dots button[aria-current="true"] {
	opacity: 1;
}

.bbsuite2-slider-dots button:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 2px;
}