/**
 * Public-facing shortcode styling (the single-artist template).
 *
 * Loads for ALL visitors, so it stays separate from the logged-in-only
 * profile-form styles. Everything is a CSS custom property you can override in
 * Elementor -> Site Settings -> Custom CSS, or per shortcode via attributes.
 *
 * Sections:
 *   1. Social Links icons  ([daa_social_icons])
 *   2. Discipline pills    ([daa_discipline_areas], [daa_specialties])
 */

/* ====================================================================
   1. Social Links icons ([daa_social_icons])
   A wrapping row of circular icon links; inverse fill on hover.
   ==================================================================== */
.daa-social-icons {
	--daa-social-size: 48px;
	--daa-social-icon: 20px;
	--daa-social-gap: 14px;
	--daa-social-color: var( --e-global-color-text, #1c1c1c );
	--daa-social-bg: transparent;
	/* Faint ring that follows the icon color; falls back to a light grey on
	   browsers without color-mix. */
	--daa-social-border-color: rgba( 0, 0, 0, 0.15 );
	--daa-social-border-color: color-mix( in srgb, currentColor 20%, transparent );
	--daa-social-hover-color: #ffffff;
	--daa-social-hover-bg: var( --e-global-color-text, #1c1c1c );

	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var( --daa-social-gap );
	margin: 0;
	padding: 0;
	list-style: none;
}

.daa-social-icons .daa-social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: var( --daa-social-size );
	height: var( --daa-social-size );
	border-radius: 50%;
	border: 1px solid var( --daa-social-border-color );
	background: var( --daa-social-bg );
	color: var( --daa-social-color );
	text-decoration: none;
	line-height: 0;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.daa-social-icons .daa-social-icon svg {
	display: block;
	width: var( --daa-social-icon );
	height: var( --daa-social-icon );
	fill: currentColor;
}

/* Inverse hover: the circle fills and the icon flips to the inverse color. */
.daa-social-icons .daa-social-icon:hover,
.daa-social-icons .daa-social-icon:focus-visible {
	background: var( --daa-social-hover-bg );
	color: var( --daa-social-hover-color );
	border-color: var( --daa-social-hover-bg );
}

/* ====================================================================
   2. Discipline pills ([daa_discipline_areas], [daa_specialties])
   Display only: NOT links, no hover. A wrapping row of bordered,
   fully-rounded pills with semibold text.
   ==================================================================== */
.daa-terms {
	--daa-term-color: var( --e-global-color-text, #101010 );
	--daa-term-border: rgba( 0, 0, 0, 0.1 );
	--daa-term-size: 18px;
	--daa-term-gap: 12px;

	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var( --daa-term-gap );
	margin: 0;
	padding: 0;
	list-style: none;
}

.daa-terms .daa-term {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 16px;
	border: 1px solid var( --daa-term-border );
	border-radius: 49px;
	background: transparent;
	color: var( --daa-term-color );
	font-size: var( --daa-term-size );
	font-weight: 600;
	line-height: 1.5;
	white-space: nowrap;
}

/* ====================================================================
   3. Facet dropdown ([daa_facet_dropdown])
   A labeled button that opens a panel housing a FacetWP facet.
   Desktop (>=768px): a popover that floats over the grid.
   Mobile (<768px): an accordion that pushes the content below it down.
   ==================================================================== */
.daa-fdd {
	position: relative;
	display: inline-block;
	vertical-align: top;
	text-align: left;
}

.daa-fdd-toggle {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 0;
	padding: 11px 22px;
	border: 1px solid rgba( 0, 0, 0, 0.12 );
	border-radius: 999px; /* full pill, matching Search / City / ZIP */
	background: #ffffff;
	color: var( --e-global-color-text, #101010 );
	font-family: inherit; /* a <button> otherwise falls back to Arial, not the site font */
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
	white-space: nowrap;
	cursor: pointer;
	transition: border-color 0.15s ease, background-color 0.15s ease;
}
.daa-fdd-toggle:hover,
.daa-fdd.is-open .daa-fdd-toggle {
	border-color: rgba( 0, 0, 0, 0.25 );
}

/* Chevron drawn from borders so it needs no icon font; flips when open. */
.daa-fdd-caret {
	flex: 0 0 auto;
	width: 8px;
	height: 8px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: translateY( -2px ) rotate( 45deg );
	opacity: 0.5;
	transition: transform 0.2s ease;
}
.daa-fdd.is-open .daa-fdd-caret {
	transform: translateY( 2px ) rotate( -135deg );
}

.daa-fdd-panel {
	box-sizing: border-box;
	max-height: 70vh;
	overflow-y: auto;
	padding: 16px 18px;
	background: #ffffff;
	border: 1px solid rgba( 0, 0, 0, 0.1 );
	border-radius: 12px;
	box-shadow: 0 12px 32px rgba( 0, 0, 0, 0.12 );
}
.daa-fdd-panel[hidden] {
	display: none;
}

/* Desktop: float the panel below the button, over the grid. */
@media ( min-width: 768px ) {
	.daa-fdd-panel {
		position: absolute;
		top: calc( 100% + 8px );
		left: 0;
		z-index: 100;
		width: var( --daa-fdd-width, 360px );
		max-width: 92vw;
	}
	.daa-fdd--right .daa-fdd-panel,
	.daa-fdd--flip .daa-fdd-panel {
		left: auto;
		right: 0;
	}
}

/* Mobile: the panel sits in normal flow, so opening it pushes content down. */
@media ( max-width: 767px ) {
	.daa-fdd {
		display: block;
		width: 100%;
	}
	.daa-fdd-toggle {
		width: 100%;
		justify-content: space-between;
	}
	.daa-fdd-panel {
		position: static;
		width: 100%;
		margin-top: 8px;
		box-shadow: none;
	}
}

/* ---- Two-pane layout (daa_facet_dropdown layout="twopane") -------------
   Areas on the left, the active area's children in columns on the right. The
   raw FacetWP facet (.daa-fdd-source) is the engine; public.js hides it once
   the two-pane is built, and reveals it again as a fallback if the build fails. */
.daa-fdd-source[hidden],
.daa-fdd-twopane[hidden] {
	display: none;
}
.daa-fdd-twopane {
	display: flex;
	align-items: flex-start;
	gap: 4px;
}
.daa-tp-areas {
	flex: 0 0 auto;
	width: 240px;
	padding-right: 10px;
	border-right: 1px solid rgba( 0, 0, 0, 0.1 );
}
.daa-tp-children {
	flex: 1 1 auto;
	min-width: 0;
	padding-left: 18px;
	columns: 190px auto;
	column-gap: 14px;
}
.daa-tp-area,
.daa-tp-child {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 10px;
	border-radius: 8px;
	cursor: pointer;
	line-height: 1.3;
	break-inside: avoid;
}
.daa-tp-area:hover,
.daa-tp-child:hover {
	background: rgba( 0, 0, 0, 0.035 );
}
.daa-tp-area.is-active {
	background: rgba( 0, 0, 0, 0.06 );
}
/* Ghost rows: areas / specialties with no artists tagged yet. Greyed, and the
   filter affordances are non-interactive (there is nothing in FacetWP to filter
   to). Area ghosts stay navigable so their specialty list can still be browsed. */
.daa-tp-area.is-ghost .daa-tp-name,
.daa-tp-child.is-ghost .daa-tp-name {
	color: rgba( 0, 0, 0, 0.4 );
	font-weight: 500;
}
.daa-tp-child.is-ghost {
	opacity: 0.6;
	cursor: default;
}
.daa-tp-child.is-ghost:hover {
	background: transparent;
}
.daa-tp-area.is-ghost .daa-tp-check {
	opacity: 0.5;
	pointer-events: none;
}
.daa-tp-name {
	flex: 1 1 auto;
	min-width: 0;
	font-size: 15px;
	font-weight: 600;
	color: var( --e-global-color-text, #101010 );
	overflow-wrap: anywhere;
}
.daa-tp-count {
	flex: 0 0 auto;
	font-size: 13px;
	color: rgba( 0, 0, 0, 0.35 );
}
.daa-tp-arrow {
	flex: 0 0 auto;
	width: 7px;
	height: 7px;
	border-top: 2px solid rgba( 0, 0, 0, 0.3 );
	border-right: 2px solid rgba( 0, 0, 0, 0.3 );
	transform: rotate( 45deg );
}
/* CSS checkbox that mirrors the FacetWP selection state. */
.daa-tp-check {
	flex: 0 0 auto;
	position: relative;
	box-sizing: border-box;
	width: 18px;
	height: 18px;
	border: 1.5px solid rgba( 0, 0, 0, 0.3 );
	border-radius: 4px;
}
.daa-tp-check.is-checked {
	background: var( --e-global-color-secondary, #df88b7 );
	border-color: var( --e-global-color-secondary, #df88b7 );
}
.daa-tp-check.is-checked::after {
	content: "";
	position: absolute;
	left: 5px;
	top: 1px;
	width: 5px;
	height: 9px;
	border: solid #ffffff;
	border-width: 0 2px 2px 0;
	transform: rotate( 45deg );
}

/* Desktop: a wider panel to hold both panes. */
@media ( min-width: 768px ) {
	.daa-fdd--twopane .daa-fdd-panel {
		width: var( --daa-fdd-width, 720px );
	}
}

/* Mobile: stack the panes (areas on top, the active area's children below). */
@media ( max-width: 767px ) {
	.daa-fdd-twopane {
		flex-direction: column;
	}
	.daa-tp-areas {
		width: 100%;
		padding-right: 0;
		padding-bottom: 6px;
		margin-bottom: 6px;
		border-right: 0;
		border-bottom: 1px solid rgba( 0, 0, 0, 0.1 );
	}
	.daa-tp-children {
		padding-left: 0;
		columns: 150px auto;
	}
}

/* ====================================================================
   4. Standalone FacetWP facets on the directory (search + checkboxes)
   These render directly (not inside the dropdown), so they need skinning.
   ==================================================================== */

/* FacetWP wraps each facet with a default bottom margin; remove it so the
   filter-bar spacing is controlled by the Elementor layout. */
.facetwp-facet {
	margin-bottom: 0 !important;
}

/* Mobile: let the Search, Discipline, City, and ZIP filter controls each fill
   the row. The inner pill/button are already 100%; it is the Elementor widget
   wrapper that needs stretching. The :has() selectors need no extra markup; the
   .search-facet / .discipline-facet / .city-facet / .zipsearch-facet classes are
   a fallback for browsers without :has() (add the matching class under Elementor
   > Advanced > CSS Classes). */
@media ( max-width: 767px ) {
	.elementor-widget-shortcode:has( .daa-fdd ),
	.elementor-widget-shortcode:has( .daa-zipsearch ),
	.elementor-widget-facetwp-facet:has( .facetwp-facet-search ),
	.elementor-widget-facetwp-facet:has( .facetwp-facet-city ),
	.search-facet,
	.discipline-facet,
	.city-facet,
	.zipsearch-facet {
		width: 100%;
		max-width: 100%;
		/* Hold full width in a row-wrap flex without stretching height in a
		   column flex (flex-basis is left at auto). */
		flex-shrink: 0;
	}
}

/* Form controls (input / select / button) don't inherit font-family by default,
   so force the site font on every filter field to match the labels. */
.daa-zipsearch-zip,
.daa-zipsearch-radius,
.daa-zipsearch-clear,
.facetwp-facet-search .facetwp-search,
.facetwp-type-fselect .fs-dropdown .fs-search input {
	font-family: inherit;
}

/* Search: a rounded pill with the magnifier on the left. */
.facetwp-facet-search .facetwp-input-wrap {
	position: relative;
	display: block;
}
.facetwp-facet-search .facetwp-search {
	width: 100%;
	box-sizing: border-box;
	margin: 0;
	padding: 13px 22px 13px 50px;
	border: 1px solid rgba( 0, 0, 0, 0.12 );
	border-radius: 999px;
	background: #ffffff;
	color: var( --e-global-color-text, #101010 );
	font-size: 16px;
	line-height: 1.4;
	box-shadow: none;
	outline: none;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.facetwp-facet-search .facetwp-search::placeholder {
	color: rgba( 0, 0, 0, 0.4 );
}
.facetwp-facet-search .facetwp-search:focus {
	border-color: rgba( 0, 0, 0, 0.35 );
	box-shadow: 0 0 0 3px rgba( 0, 0, 0, 0.05 );
}
.facetwp-facet-search .facetwp-icon {
	position: absolute !important;
	left: 20px;
	right: auto !important;
	top: 50%;
	margin: 0;
	transform: translateY( -50% );
}

/* City dropdown (FacetWP fSelect): match the rounded-pill look + font of the
   other filters, give it comfortable width, and make the open panel read as a
   rounded sheet below the pill (not a square box overlapping it). */
.facetwp-type-fselect .fs-wrap {
	width: 100% !important;
	min-width: 190px;
}
.facetwp-type-fselect .fs-label-wrap {
	box-sizing: border-box;
	border: 1px solid rgba( 0, 0, 0, 0.12 ) !important;
	border-radius: 999px !important;
	background: #ffffff !important;
	padding: 11px 22px !important;
}
.facetwp-type-fselect .fs-label-wrap .fs-label {
	color: var( --e-global-color-text, #101010 );
	font-size: 16px;
	font-weight: 600;
}
/* Reshape fSelect's solid triangle into the same thin chevron as the Discipline
   caret. fSelect vertically centers .fs-arrow with top:0;bottom:0;margin:auto, so
   we must NOT set margin (that pushes it out of the box) - keep its centering and
   nudge with translateY inside the transform, exactly like .daa-fdd-caret. */
.facetwp-type-fselect .fs-arrow {
	box-sizing: border-box !important;
	width: 8px !important;
	height: 8px !important;
	right: 18px !important;
	border: 0 !important;
	border-right: 2px solid rgba( 0, 0, 0, 0.5 ) !important;
	border-bottom: 2px solid rgba( 0, 0, 0, 0.5 ) !important;
	transform: translateY( -2px ) rotate( 45deg ) !important;
	transition: transform 0.2s ease !important;
}
.facetwp-type-fselect .fs-wrap.fs-open .fs-arrow {
	transform: translateY( 2px ) rotate( -135deg ) !important;
}
/* The open panel. */
.facetwp-type-fselect .fs-dropdown {
	margin-top: 6px !important;
	border: 1px solid rgba( 0, 0, 0, 0.12 ) !important;
	border-radius: 14px !important;
	box-shadow: 0 12px 32px rgba( 0, 0, 0, 0.12 ) !important;
	overflow: hidden !important;
}
.facetwp-type-fselect .fs-dropdown .fs-search {
	padding: 8px !important;
}
.facetwp-type-fselect .fs-dropdown .fs-search input {
	box-sizing: border-box;
	width: 100%;
	margin: 0;
	padding: 8px 14px !important;
	border: 1px solid rgba( 0, 0, 0, 0.12 ) !important;
	border-radius: 999px !important;
	font-size: 15px !important;
	color: var( --e-global-color-text, #101010 );
}
.facetwp-type-fselect .fs-dropdown .fs-option {
	padding: 9px 16px !important;
	font-size: 15px !important;
	color: var( --e-global-color-text, #101010 );
}
.facetwp-type-fselect .fs-dropdown .fs-option.hl,
.facetwp-type-fselect .fs-dropdown .fs-option:hover {
	background: rgba( 0, 0, 0, 0.05 ) !important;
}
.facetwp-type-fselect .fs-dropdown .fs-option.selected {
	background: rgba( 0, 0, 0, 0.06 ) !important;
}

/* ZIP-radius search ([daa_zip_search]): a rounded pill with a map pin, the ZIP
   field, a "within N mi" selector, and a clear button. */
.daa-zipsearch {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	box-sizing: border-box;
	max-width: 100%;
	padding: 5px 8px 5px 16px;
	border: 1px solid rgba( 0, 0, 0, 0.12 );
	border-radius: 999px;
	background: #ffffff;
}
.daa-zipsearch-field {
	position: relative;
	display: inline-flex;
	align-items: center;
	flex: 0 1 auto;
	min-width: 0;
}
.daa-zipsearch-pin {
	position: relative;
	flex: 0 0 auto;
	width: 12px;
	height: 12px;
	margin-right: 9px;
	border-radius: 50% 50% 50% 0;
	transform: rotate( -45deg );
	background: rgba( 0, 0, 0, 0.4 );
}
.daa-zipsearch-pin::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 4px;
	height: 4px;
	margin: -2px 0 0 -2px;
	border-radius: 50%;
	background: #ffffff;
}
.daa-zipsearch-zip {
	flex: 0 1 auto;
	width: 92px; /* wide enough for the "ZIP code" placeholder + 5 digits, no more */
	min-width: 0;
	margin: 0;
	padding: 8px 0;
	border: 0;
	background: transparent;
	color: var( --e-global-color-text, #101010 );
	font-size: 16px;
	line-height: 1.2;
	outline: none;
	box-shadow: none;
}
.daa-zipsearch-zip::placeholder {
	color: rgba( 0, 0, 0, 0.4 );
}
.daa-zipsearch-within {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	flex: 0 0 auto;
	padding-left: 10px;
	border-left: 1px solid rgba( 0, 0, 0, 0.12 );
}
.daa-zipsearch-within-text {
	color: rgba( 0, 0, 0, 0.5 );
	font-size: 13px;
}
.daa-zipsearch-radius {
	margin: 0;
	padding: 6px 2px;
	border: 0;
	background: transparent;
	color: var( --e-global-color-text, #101010 );
	font-size: 14px;
	line-height: 1.2;
	cursor: pointer;
	outline: none;
}
.daa-zipsearch-clear {
	flex: 0 0 auto;
	margin: 0;
	padding: 2px 6px;
	border: 0;
	background: transparent;
	color: rgba( 0, 0, 0, 0.4 );
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
}
.daa-zipsearch-clear:hover {
	color: rgba( 0, 0, 0, 0.7 );
}
@media ( max-width: 767px ) {
	.daa-zipsearch {
		display: flex;
		width: 100%;
	}
	/* Let the ZIP field fill the row on mobile (desktop caps it). */
	.daa-zipsearch-field {
		flex: 1 1 auto;
	}
	.daa-zipsearch-zip {
		flex: 1 1 auto;
		width: auto;
	}
}

/* Checkboxes (Local + any visible checkbox facet): a clean square that fills
   with the brand color when checked. The hidden discipline facet is unaffected. */
.facetwp-type-checkboxes .facetwp-checkbox {
	position: relative;
	display: block;
	margin: 0 0 6px 0;
	padding: 3px 0 3px 28px !important;
	background-image: none !important;
	color: var( --e-global-color-text, #101010 );
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4;
	cursor: pointer;
}
.facetwp-type-checkboxes .facetwp-checkbox::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -9px;
	box-sizing: border-box;
	width: 18px;
	height: 18px;
	border: 1.5px solid rgba( 0, 0, 0, 0.3 );
	border-radius: 4px;
	background: #ffffff;
}
.facetwp-type-checkboxes .facetwp-checkbox.checked::before {
	background: var( --e-global-color-secondary, #df88b7 );
	border-color: var( --e-global-color-secondary, #df88b7 );
}
.facetwp-type-checkboxes .facetwp-checkbox.checked::after {
	content: "";
	position: absolute;
	left: 6px;
	top: 50%;
	margin-top: -6px;
	width: 5px;
	height: 9px;
	border: solid #ffffff;
	border-width: 0 2px 2px 0;
	transform: rotate( 45deg );
}
.facetwp-type-checkboxes .facetwp-counter {
	margin-left: 6px;
	color: rgba( 0, 0, 0, 0.35 );
	font-size: 13px;
	font-weight: 400;
}
/* The Local toggle is a single boolean, so no count. */
.facetwp-facet-local .facetwp-counter {
	display: none;
}

/* Pagination (FacetWP pager facet in an Elementor widget with the CSS class
   "ar-pagination"). Centered "< 1 2 3 >": the active page is bold near-black,
   the others 30% black, flanked by chevron arrows. The prev/next chevrons show
   at BOTH ends even on the first/last page - where FacetWP omits the real link,
   a same-styled, non-clickable chevron is drawn on the pager's ::before/::after
   (matching the Figma, which shows a left chevron on page 1). Needs :has();
   without it the boundary chevron is simply absent (real prev/next still work). */
.ar-pagination .facetwp-pager {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 24px;
}
.ar-pagination .facetwp-pager .facetwp-page {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
	background: none;
	border: 0;
	border-radius: 0;
	color: rgba( 0, 0, 0, 0.3 );
	font-size: 16px;
	font-weight: 400;
	line-height: 1.75;
	text-decoration: none;
	cursor: pointer;
	transition: color 0.15s ease;
}
.ar-pagination .facetwp-pager .facetwp-page:hover {
	color: rgba( 0, 0, 0, 0.6 );
}
.ar-pagination .facetwp-pager .facetwp-page.active {
	color: var( --e-global-color-text, #101010 );
	font-weight: 700;
	cursor: default;
}
/* The "..." gap marker: muted, not interactive. */
.ar-pagination .facetwp-pager .facetwp-page.dots {
	color: rgba( 0, 0, 0, 0.3 );
	cursor: default;
}

/* Prev / Next: hide the "Previous"/"Next" text; the arrow is a chevron. */
.ar-pagination .facetwp-pager .facetwp-page.prev,
.ar-pagination .facetwp-pager .facetwp-page.next {
	font-size: 0;
	line-height: 0;
	color: transparent;
}
/* Shared chevron box: the real prev/next arrows, plus the boundary arrows drawn
   on the pager itself when the matching real link is absent (page 1 / last). */
.ar-pagination .facetwp-pager .facetwp-page.prev::before,
.ar-pagination .facetwp-pager .facetwp-page.next::before,
.ar-pagination .facetwp-pager:not( :has( .facetwp-page.prev ) )::before,
.ar-pagination .facetwp-pager:not( :has( .facetwp-page.next ) )::after {
	content: "";
	display: block;
	box-sizing: border-box;
	width: 8px;
	height: 8px;
	border-style: solid;
	border-color: rgba( 0, 0, 0, 0.7 );
}
/* Left chevron "<" - prev link + the page-1 boundary (::before, leftmost item). */
.ar-pagination .facetwp-pager .facetwp-page.prev::before,
.ar-pagination .facetwp-pager:not( :has( .facetwp-page.prev ) )::before {
	border-width: 0 0 1.5px 1.5px;
	transform: rotate( 45deg );
}
/* Right chevron ">" - next link + the last-page boundary (::after, rightmost). */
.ar-pagination .facetwp-pager .facetwp-page.next::before,
.ar-pagination .facetwp-pager:not( :has( .facetwp-page.next ) )::after {
	border-width: 1.5px 1.5px 0 0;
	transform: rotate( 45deg );
}
.ar-pagination .facetwp-pager .facetwp-page.prev:hover::before,
.ar-pagination .facetwp-pager .facetwp-page.next:hover::before {
	border-color: var( --e-global-color-text, #101010 );
}
/* Tighten the spacing a touch on very narrow screens. */
@media ( max-width: 480px ) {
	.ar-pagination .facetwp-pager {
		gap: 18px;
	}
}

/* ====================================================================
   5. Directory card bits ([daa_card_meta], [daa_specialty_summary])
   ==================================================================== */

/* Card meta line: "AREA • CITY", uppercase, letter-spaced, muted green. */
.daa-card-meta {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 3.5px;
	line-height: 1.4;
	text-transform: uppercase;
	color: var( --daa-card-meta-color, #86a293 );
}
.daa-card-meta-dot {
	flex: 0 0 auto;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: currentColor;
}

/* Specialty summary pills reuse .daa-term; the "+N" pill is the same look. The
   card version is a touch smaller than the filter pills. */
.daa-specsum.daa-terms {
	--daa-term-size: 16px;
	--daa-term-gap: 12px;
}
