.wet-taxonomy-terms {
	--wet-taxonomy-gap: 24px;
	--wet-taxonomy-columns: 4;
	--wet-taxonomy-speed: 450ms;
	position: relative;
	min-width: 0;
}

.wet-taxonomy-terms__viewport {
	overflow: hidden;
	min-width: 0;
}

.wet-taxonomy-terms__track {
	display: flex;
	gap: var(--wet-taxonomy-gap);
	transition: transform var(--wet-taxonomy-speed) ease;
	will-change: transform;
}

.wet-taxonomy-terms--grid .wet-taxonomy-terms__viewport {
	overflow: visible;
}

.wet-taxonomy-terms--grid .wet-taxonomy-terms__track {
	display: grid;
	grid-template-columns: repeat(var(--wet-taxonomy-columns), minmax(0, 1fr));
	column-gap: var(--wet-taxonomy-gap);
	transform: none !important;
}

.wet-taxonomy-terms__item {
	flex: 0 0 auto;
	min-width: 0;
}

.wet-taxonomy-terms--grid .wet-taxonomy-terms__item {
	width: auto !important;
}

.wet-taxonomy-terms__card,
.wet-taxonomy-terms__card:link,
.wet-taxonomy-terms__card:visited,
.wet-taxonomy-terms__card:hover,
.wet-taxonomy-terms__card:focus,
.wet-taxonomy-terms__card:active {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-width: 0;
	overflow: hidden;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	color: inherit;
	text-decoration: none !important;
	box-shadow: none;
	transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.wet-taxonomy-terms__card::before,
.wet-taxonomy-terms__card::after {
	display: none;
	content: none;
}

.wet-taxonomy-terms__name,
.wet-taxonomy-terms__button {
	border-bottom: 0;
	text-decoration: none !important;
	box-shadow: none;
}

.wet-taxonomy-terms__card:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 3px;
}

.wet-taxonomy-terms__image {
	display: block;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: #f3f4f6;
}

.wet-taxonomy-terms__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .35s ease;
}

.wet-taxonomy-terms__content {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: flex-start;
	gap: 14px;
	padding: 20px;
}

.wet-taxonomy-terms__name {
	color: #191919;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.3;
	transition: color .2s ease;
}

.wet-taxonomy-terms__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: auto;
	padding: 9px 16px;
	border: 1px solid currentColor;
	border-radius: 999px;
	color: #191919;
	line-height: 1.2;
	transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}

.wet-taxonomy-terms__button-icon {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.wet-taxonomy-terms__button-icon i,
.wet-taxonomy-terms__button-icon svg {
	display: block;
	width: 1em;
	height: 1em;
	font-size: inherit;
	fill: currentColor;
}

.wet-taxonomy-terms__button-text {
	display: inline-block;
}

.wet-taxonomy-terms__nav {
	position: absolute;
	z-index: 2;
	top: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid #e5e7eb;
	border-radius: 50%;
	background: #fff;
	color: #191919;
	font: inherit;
	font-size: 32px;
	line-height: 1;
	cursor: pointer;
	transform: translateY(-50%);
	transition: color .2s ease, background-color .2s ease, opacity .2s ease;
}

.wet-taxonomy-terms__prev {
	inset-inline-start: 12px;
}

.wet-taxonomy-terms__next {
	inset-inline-end: 12px;
}

.wet-taxonomy-terms__nav:disabled {
	opacity: .35;
	cursor: not-allowed;
}

.wet-taxonomy-terms__nav:focus-visible,
.wet-taxonomy-terms__dot:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 2px;
}

.wet-taxonomy-terms__dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 18px;
}

.wet-taxonomy-terms__dot {
	width: 8px;
	height: 8px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #cbd5e1;
	cursor: pointer;
	transition: background-color .2s ease, transform .2s ease;
}

.wet-taxonomy-terms__dot.is-active {
	background: #191919;
	transform: scale(1.25);
}

.wet-taxonomy-terms.is-static .wet-taxonomy-terms__nav,
.wet-taxonomy-terms.is-static .wet-taxonomy-terms__dots {
	display: none;
}

@media (prefers-reduced-motion: reduce) {
	.wet-taxonomy-terms__track,
	.wet-taxonomy-terms__card,
	.wet-taxonomy-terms__image img {
		transition-duration: 0.01ms !important;
	}
}
