/**
 * FacetWP "See more / See less" toggle — link styling.
 *
 * FacetWP renders its facet expand/collapse control as <a class="facetwp-toggle">
 * ("See 7 more" / "See less"). By default it inherits body text color and reads as
 * plain text. Miranda's request (BugHerd #377): make it follow the site link style —
 * Cobalt + underlined — so it stands out from the surrounding facet labels.
 *
 * Cobalt #1053b7 + underline matches the shipped link convention in store-locator.css
 * and Miranda's T402 Figma spec. !important is required to beat Elementor's global
 * kit link styles (same reason store-locator.css uses it).
 *
 * See pp-custom/includes/facetwp-toggle-link-style.php for context.
 */

.facetwp-toggle {
	color: #1053b7 !important;
	text-decoration: underline !important;
	text-decoration-color: #1053b7 !important;
	text-underline-offset: 3px;
	cursor: pointer;
}

.facetwp-toggle:hover,
.facetwp-toggle:focus {
	color: #1053b7 !important;
	text-decoration: underline !important;
	text-decoration-color: #1053b7 !important;
}
