.aes-dynamic-gallery {
	--aes-gallery-columns: 3;
	--aes-gallery-gap: 16px;
	display: grid;
	grid-template-columns: repeat(var(--aes-gallery-columns), minmax(0, 1fr));
	gap: var(--aes-gallery-gap);
}

.aes-dynamic-gallery__item,
.aes-dynamic-gallery__link {
	display: block;
	min-width: 0;
}

.aes-dynamic-gallery__image {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	height: auto;
	object-fit: cover;
}

.aes-dynamic-gallery-empty {
	padding: 16px;
	border: 1px dashed #c3c4c7;
	color: #646970;
	font-size: 14px;
}

.aes-dynamic-gallery-carousel {
	position: relative;
}

.aes-dynamic-gallery-carousel__viewport {
	overflow: hidden;
}

.aes-dynamic-gallery-carousel .aes-dynamic-gallery__item {
	height: auto;
}

.aes-dynamic-gallery-carousel__arrow {
	position: absolute;
	top: 50%;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	background: #111827;
	border: 0;
	border-radius: 50%;
	color: #fff;
	cursor: pointer;
	transform: translateY(-50%);
	transition: background-color 0.2s ease, opacity 0.2s ease;
}

.aes-dynamic-gallery-carousel__arrow:hover,
.aes-dynamic-gallery-carousel__arrow:focus {
	background: #374151;
}

.aes-dynamic-gallery-carousel__arrow.swiper-button-disabled {
	opacity: 0.35;
	cursor: default;
}

.aes-dynamic-gallery-carousel__arrow--prev {
	left: 12px;
}

.aes-dynamic-gallery-carousel__arrow--next {
	right: 12px;
}

.aes-dynamic-gallery-carousel__arrow::before {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
}

.aes-dynamic-gallery-carousel__arrow--prev::before {
	transform: rotate(-135deg);
	margin-left: 4px;
}

.aes-dynamic-gallery-carousel__arrow--next::before {
	transform: rotate(45deg);
	margin-right: 4px;
}

.aes-dynamic-gallery-carousel__dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 16px;
}

.aes-dynamic-gallery-carousel__dots .swiper-pagination-bullet {
	width: 9px;
	height: 9px;
	margin: 0;
	background: #9ca3af;
	opacity: 1;
}

.aes-dynamic-gallery-carousel__dots .swiper-pagination-bullet-active {
	background: #111827;
}
