/* Category terms */
.category-terms {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.category-terms .category-terms-tabs {
	display: flex;
	flex-wrap: nowrap;
	gap: 16px;

	list-style: none;

	margin: 0;
	padding: 0;

	overflow: auto;
}

.category-terms .category-terms-tabs-item {
	font-size: 16px;
	font-weight: 500;

	border: 1px solid var(--wd-primary-color);
	border-radius: 40px;

	margin: 0;

	transition: all 300ms ease-in-out;
}

.category-terms .category-terms-tabs-link {
	color: var(--e-global-color-f006f99);
	text-wrap: nowrap;

	padding: 8px 16px;

	display: block;
}

@media (max-width: 1024px) {
	.category-terms .category-terms-tabs {
		margin: 0 -25px;
		padding: 0 25px;

		position: relative;
	}
}

/* Tag terms */
.tag-terms {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.tag-terms .tag-terms-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;

	list-style: none;

	margin: 0;
	padding: 0;

	overflow: auto;
}

.tag-terms .tag-terms-tabs-item {
	font-size: 16px;
	font-weight: 500;

	border-radius: 40px;

	background-color: var(--e-global-color-4b9e497);

	margin: 0;

	transition: all 300ms ease-in-out;
}

.tag-terms .tag-terms-tabs-link {
	color: var(--e-global-color-secondary);
	text-wrap: nowrap;

	padding: 8px 16px;

	display: block;
}

@media (max-width: 1024px) {
	.tag-terms .tag-terms-tabs {
		margin: 0 -25px;
		padding: 0 25px;

		position: relative;
	}
}