.blakely-featured-gallery {
	margin-bottom: 30px;
	max-width: 100%;
	position: relative;
	width: 100%;
}

.blakely-featured-gallery__viewport {
	aspect-ratio: var(--blakely-featured-gallery-aspect-ratio, 16 / 9);
	background: #f6f7f7;
	border-radius: var(--theme-border-radius, inherit);
	overflow: hidden;
	position: relative;
	width: 100%;
}

.blakely-featured-gallery__slides,
.blakely-featured-gallery__slide {
	height: 100%;
	width: 100%;
}

.blakely-featured-gallery__slide {
	display: none;
	margin: 0;
}

.blakely-featured-gallery__slide.is-active {
	display: block;
}

.blakely-featured-gallery__image {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.blakely-featured-gallery__button {
	align-items: center;
	background: rgba(0, 0, 0, 0.62);
	border: 0;
	border-radius: 999px;
	color: #fff;
	cursor: pointer;
	display: flex;
	font-size: 30px;
	height: 44px;
	justify-content: center;
	line-height: 1;
	padding: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	z-index: 2;
}

.blakely-featured-gallery__button:hover,
.blakely-featured-gallery__button:focus {
	background: rgba(0, 0, 0, 0.78);
	color: #fff;
}

.blakely-featured-gallery__button:focus-visible,
.blakely-featured-gallery__dot:focus-visible,
.blakely-featured-gallery:focus-visible {
	outline: 2px solid #2271b1;
	outline-offset: 3px;
}

.blakely-featured-gallery__button--previous {
	left: 12px;
}

.blakely-featured-gallery__button--next {
	right: 12px;
}

.blakely-featured-gallery__pagination {
	display: flex;
	gap: 8px;
	justify-content: center;
	margin-top: 12px;
}

.blakely-featured-gallery__dot {
	background: transparent;
	border: 1px solid #6b7280;
	border-radius: 999px;
	cursor: pointer;
	height: 10px;
	padding: 0;
	width: 10px;
}

.blakely-featured-gallery__dot.is-active,
.blakely-featured-gallery__dot:hover,
.blakely-featured-gallery__dot:focus {
	background: #111827;
	border-color: #111827;
}

.blakely-featured-gallery__count {
	background: rgba(0, 0, 0, 0.62);
	border-radius: 999px;
	bottom: 12px;
	color: #fff;
	font-size: 12px;
	line-height: 1;
	padding: 7px 10px;
	position: absolute;
	right: 12px;
	z-index: 2;
}

.blakely-featured-gallery__visually-hidden {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal;
}

@media (min-width: 1000px) {
	.blakely-featured-gallery {
		margin-bottom: 50px;
	}
}

@media (max-width: 600px) {
	.blakely-featured-gallery__button {
		font-size: 26px;
		height: 38px;
		width: 38px;
	}

	.blakely-featured-gallery__button--previous {
		left: 8px;
	}

	.blakely-featured-gallery__button--next {
		right: 8px;
	}

	.blakely-featured-gallery__count {
		bottom: 8px;
		right: 8px;
	}
}
