/*
 * Minimal styling for [bd_book_authors] and [bd_product_taxonomy] output.
 * Both render as an inline, comma-separated link list meant to sit inside
 * body text (e.g. a Divi text module) — not a block-level layout, so this
 * intentionally stays light: a subtle hover treatment for linked names, and
 * a small pill for the "+N more" indicator so it reads as an affordance
 * (it already carries a `title` tooltip with the full remaining list)
 * rather than plain text. Uses currentColor/inherit throughout since this
 * renders inside an arbitrary theme/page background.
 *
 * Overridable from a child theme or Divi's own Custom CSS.
 */
.bd-cs-book-authors-link,
.bd-cs-product-taxonomy-link {
	text-decoration: underline;
	text-decoration-color: currentColor;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.15em;
	opacity: 0.85;
	transition: opacity 0.15s ease;
}

.bd-cs-book-authors-link:hover,
.bd-cs-product-taxonomy-link:hover {
	opacity: 1;
}

.bd-cs-book-authors-more,
.bd-cs-product-taxonomy-more {
	display: inline-block;
	margin-left: 0.35em;
	padding: 0.05em 0.6em;
	font-size: 0.85em;
	line-height: 1.6;
	color: inherit;
	background-color: #f0f0f1;
	border-radius: 1em;
	cursor: help;
	white-space: nowrap;
}
