/* ==========================================================================
   UCD Design System — "Precision Instrument"  (v0.7.0)
   Grounded in atlas/axis alignment measured with clinical precision:
   drafting-table calm crossed with an intake chart, not a wellness-spa
   aesthetic. One signature motif (the atlas mark, see ucd-svg-helper.php)
   used consistently rather than scattered decoration.

   v0.7.0 adds the sticky doctor-card component (shared identically
   across the profile page, every condition page, and the city hub grid)
   and the two-column .ucd-layout wrapper that holds it. Everything else
   below is the same token system as v0.6.0.

   This only styles the content injected by this plugin (the .ucd-* scoped
   classes below). Kadence continues to control header, nav, footer, and
   the outer page wrapper/columns.
   ========================================================================== */

.ucd-condition-page,
.ucd-doctor-profile,
.ucd-city-hub,
.ucd-dashboard,
.ucd-dashboard-login {
	--ucd-ink: #16233A;
	--ucd-ink-soft-bg: #233450;
	--ucd-paper: #F0F2ED;
	--ucd-card: #FFFFFF;
	--ucd-line: #D7DBD4;
	--ucd-teal: #2B6E68;
	--ucd-teal-deep: #1E4F4B;
	--ucd-teal-tint: #E4EEEC;
	--ucd-gold: #B98A3D;
	--ucd-gold-deep: #93692C;
	--ucd-gold-tint: #F5EBDA;
	--ucd-ink-soft: rgba(22, 35, 58, 0.62);
	--ucd-ink-faint: rgba(22, 35, 58, 0.42);

	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	color: var(--ucd-ink);
}

.ucd-condition-page *,
.ucd-doctor-profile *,
.ucd-city-hub *,
.ucd-page-wrap * {
	box-sizing: border-box;
}

.ucd-atlas-mark {
	flex-shrink: 0;
}

/* ==========================================================================
   Two-column layout: sticky doctor card + main content
   Used on both the condition page and the doctor profile page.
   ========================================================================== */

.ucd-layout {
	display: grid;
	grid-template-columns: 300px 1fr;
	gap: 2.75rem;
	align-items: start;
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 1.5rem 4rem;
}

.ucd-sidebar-sticky {
	position: sticky;
	top: 1.5rem;
}

.ucd-main-col {
	min-width: 0; /* prevents grid blowout from long unbroken strings */
}

@media (max-width: 860px) {
	.ucd-layout {
		grid-template-columns: 1fr;
	}
	.ucd-sidebar-sticky {
		position: static;
		max-width: 380px;
	}
}

/* ==========================================================================
   Doctor card (sticky sidebar component)
   Identical markup/styling wherever it appears: doctor profile sidebar,
   every condition-page sidebar, and each cell of the city hub grid.
   ========================================================================== */

.ucd-doctor-card {
	background: var(--ucd-card);
	border: 1px solid var(--ucd-line);
	border-radius: 4px;
	box-shadow: 0 1px 2px rgba(22, 35, 58, 0.06), 0 8px 24px -12px rgba(22, 35, 58, 0.18);
	overflow: hidden;
}

.ucd-doctor-card__photo {
	position: relative;
	aspect-ratio: 4 / 3.1;
	background: linear-gradient(160deg, var(--ucd-ink) 0%, var(--ucd-ink-soft-bg) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.ucd-doctor-card__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ucd-doctor-card__photo-placeholder {
	color: var(--ucd-gold);
	opacity: 0.85;
}

.ucd-doctor-card__body {
	padding: 1.25rem 1.25rem 1.4rem;
}

.ucd-doctor-card__name {
	font-family: 'Fraunces', Georgia, serif;
	font-weight: 600;
	font-size: 1.25rem;
	line-height: 1.2;
	margin-bottom: 0.35rem;
}

.ucd-doctor-card__practice {
	font-family: 'IBM Plex Mono', ui-monospace, monospace;
	font-size: 0.76rem;
	color: var(--ucd-ink-soft);
	margin-bottom: 0.75rem;
}

.ucd-doctor-card__creds {
	list-style: none;
	margin: 0.9rem 0;
	padding: 0.75rem 0;
	border-top: 1px solid var(--ucd-line);
	border-bottom: 1px solid var(--ucd-line);
}

.ucd-doctor-card__creds li {
	font-family: 'IBM Plex Mono', ui-monospace, monospace;
	font-size: 0.72rem;
	color: var(--ucd-ink-soft);
	padding: 0.2rem 0;
	display: flex;
	gap: 0.5rem;
}

.ucd-doctor-card__creds li::before {
	content: "\2014";
	color: var(--ucd-teal);
	flex-shrink: 0;
}

.ucd-doctor-card__nap {
	margin: 0.9rem 0 1.1rem;
	font-size: 0.85rem;
	color: var(--ucd-ink-soft);
}

.ucd-doctor-card__nap div {
	margin-bottom: 0.2rem;
}

.ucd-doctor-card__phone a {
	font-family: 'IBM Plex Mono', ui-monospace, monospace;
	color: var(--ucd-ink);
	font-weight: 600;
	font-size: 0.85rem;
	text-decoration: none;
}

.ucd-doctor-card__phone a:hover {
	color: var(--ucd-teal-deep);
}

.ucd-doctor-card__cta-group {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-top: 1rem;
}

.ucd-doctor-card__claim {
	margin-top: 1rem;
	padding: 1rem 1.1rem;
	background: rgba(185, 138, 61, 0.06);
	border: 1px dashed rgba(185, 138, 61, 0.45);
	border-radius: 4px;
	text-align: center;
	font-size: 0.82rem;
	line-height: 1.5;
	color: var(--ucd-ink-soft);
}

.ucd-doctor-card__claim strong {
	display: block;
	color: var(--ucd-ink);
	font-family: 'Fraunces', Georgia, serif;
	font-weight: 600;
	font-size: 0.92rem;
	margin-bottom: 0.2rem;
}

.ucd-doctor-card__claim a {
	color: var(--ucd-teal-deep);
	font-weight: 600;
	text-decoration: underline;
}

/* ---- Verified / Not Verified badge ---- */

.ucd-verify-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-family: 'IBM Plex Mono', ui-monospace, monospace;
	font-size: 0.68rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-weight: 600;
	padding: 0.25rem 0.6rem 0.25rem 0.4rem;
	border-radius: 100px;
	margin-bottom: 0.75rem;
}

.ucd-verify-badge.is-verified {
	background: rgba(43, 110, 104, 0.10);
	color: var(--ucd-teal-deep);
	border: 1px solid rgba(43, 110, 104, 0.35);
}

.ucd-verify-badge.is-verified svg circle {
	fill: var(--ucd-teal);
}

.ucd-verify-badge.is-unclaimed {
	background: rgba(185, 138, 61, 0.08);
	color: var(--ucd-gold-deep);
	border: 1px dashed rgba(185, 138, 61, 0.55);
}

.ucd-verify-badge.is-unclaimed svg circle {
	stroke: var(--ucd-gold-deep);
}

/* ---- Buttons ---- */

.ucd-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	font-size: 0.9rem;
	padding: 0.75rem 1.1rem;
	border-radius: 4px;
	text-decoration: none;
	border: 1px solid transparent;
	width: 100%;
	transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.ucd-btn:hover {
	transform: translateY(-1px);
}

.ucd-btn-primary {
	background: var(--ucd-gold);
	color: #fff;
}

.ucd-btn-primary:hover {
	background: var(--ucd-gold-deep);
	color: #fff;
}

.ucd-btn-outline {
	background: transparent;
	border-color: var(--ucd-line);
	color: var(--ucd-ink);
}

.ucd-btn-outline:hover {
	border-color: var(--ucd-ink);
}

.ucd-premium-tag {
	font-family: 'IBM Plex Mono', ui-monospace, monospace;
	font-size: 0.6rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	background: rgba(255, 255, 255, 0.22);
	padding: 0.05rem 0.4rem;
	border-radius: 100px;
}

/* ==========================================================================
   Condition page hero (in-flow, not the dark instrument panel — that's
   reserved for the doctor profile hero now that the card carries the
   photo/NAP/CTA weight on condition pages)
   ========================================================================== */

.ucd-cond-hero {
	margin-bottom: 0.5rem;
}

.ucd-cond-hero-eyebrow {
	font-family: 'IBM Plex Mono', ui-monospace, monospace;
	font-size: 0.75rem;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--ucd-teal-deep);
	margin-bottom: 0.6rem;
}

.ucd-cond-hero h1 {
	font-family: 'Fraunces', Georgia, serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-size: clamp(1.7rem, 3.2vw, 2.35rem);
	line-height: 1.12;
	letter-spacing: -0.01em;
	color: var(--ucd-ink);
	margin: 0 0 1rem;
	max-width: 22ch;
}

.ucd-cond-hero-lede {
	font-size: 1.05rem;
	line-height: 1.6;
	color: var(--ucd-ink-soft);
	max-width: 58ch;
	margin: 0;
}

.ucd-trust-panel {
	background: var(--ucd-ink);
	border-radius: 4px;
	padding: 0.9rem 1.4rem;
	margin: 1.6rem 0 2.1rem;
	display: flex;
	gap: 1.3rem;
	flex-wrap: wrap;
	font-family: 'IBM Plex Mono', ui-monospace, monospace;
	font-size: 0.7rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(240, 242, 237, 0.82);
}

.ucd-trust-panel span::before {
	content: "\2713 ";
	color: #8FBFB9;
}

.ucd-trust-panel-light {
	background: var(--ucd-card);
	border: 1px solid var(--ucd-line);
	color: var(--ucd-teal-deep);
}

.ucd-trust-panel-light span::before {
	color: var(--ucd-teal);
}

/* ---- Mechanism section ---- */

.ucd-mechanism {
	display: grid;
	grid-template-columns: 72px 1fr;
	gap: 1.25rem;
	align-items: start;
	background: var(--ucd-card);
	border: 1px solid var(--ucd-line);
	border-radius: 4px;
	padding: 1.75rem;
	margin: 0 0 2rem;
}

.ucd-mechanism-mark {
	color: var(--ucd-teal);
	opacity: 0.9;
}

.ucd-mechanism h2 {
	font-family: 'Fraunces', Georgia, serif;
	font-weight: 600;
	font-size: 1.2rem;
	margin: 0 0 0.5rem;
	grid-column: 2;
	color: var(--ucd-ink);
}

.ucd-mechanism p {
	grid-column: 2;
	font-size: 0.97rem;
	line-height: 1.65;
	color: var(--ucd-ink-soft);
	margin: 0;
}

@media (max-width: 560px) {
	.ucd-mechanism {
		grid-template-columns: 1fr;
		padding: 1.4rem;
	}
	.ucd-mechanism h2,
	.ucd-mechanism p {
		grid-column: 1;
	}
	.ucd-mechanism-mark {
		display: none;
	}
}

/* ---- Testimonial ---- */

.ucd-testimonial {
	border-left: 3px solid var(--ucd-gold);
	margin: 1.75rem 0;
	padding: 0.3rem 0 0.3rem 1.4rem;
	font-family: 'Fraunces', Georgia, serif;
	font-size: 1.15rem;
	font-style: italic;
	font-weight: 400;
	line-height: 1.5;
	color: var(--ucd-ink);
	max-width: 58ch;
}

.ucd-testimonial cite {
	display: block;
	font-family: 'IBM Plex Mono', ui-monospace, monospace;
	font-style: normal;
	font-size: 0.72rem;
	color: var(--ucd-ink-faint);
	margin-top: 0.6rem;
	letter-spacing: 0.03em;
}

/* ---- Generic content sections (doctor bio, inline CTA line) ---- */

.ucd-content-section {
	margin: 2.1rem 0;
}

.ucd-content-section h2 {
	font-family: 'Fraunces', Georgia, serif;
	font-weight: 600;
	font-size: 1.3rem;
	margin: 0 0 0.85rem;
	color: var(--ucd-ink);
}

.ucd-content-section p,
.ucd-profile-bio p {
	font-size: 0.97rem;
	line-height: 1.65;
	color: var(--ucd-ink-soft);
	margin: 0 0 0.9rem;
}

.ucd-cta-inline p {
	font-family: 'Fraunces', Georgia, serif;
	font-style: italic;
	font-size: 1.1rem;
	color: var(--ucd-ink);
}

/* ---- "Also treated by" chip row ---- */

.ucd-other-conditions {
	margin-top: 2.5rem;
	padding-top: 1.75rem;
	border-top: 1px solid var(--ucd-line);
}

.ucd-other-conditions h3 {
	font-family: 'IBM Plex Mono', ui-monospace, monospace;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: var(--ucd-ink-soft);
	margin: 0 0 0.9rem;
}

.ucd-chip-row {
	display: flex;
	gap: 0.6rem;
	flex-wrap: wrap;
}

.ucd-chip {
	font-size: 0.82rem;
	padding: 0.45rem 0.9rem;
	border: 1px solid var(--ucd-line);
	border-radius: 100px;
	color: var(--ucd-ink-soft);
	background: var(--ucd-card);
	text-decoration: none;
	transition: border-color 0.15s ease;
}

a.ucd-chip:hover {
	border-color: var(--ucd-teal);
	color: var(--ucd-teal-deep);
}

.ucd-chip.is-active {
	background: var(--ucd-teal);
	color: #fff;
	border-color: var(--ucd-teal);
}

/* ==========================================================================
   Doctor profile page: dark hero (name, photo-free instrument panel with
   the atlas dial) sits above the two-column layout used by everything
   else, so the profile page still gets its own "arrival" moment.
   ========================================================================== */

.ucd-profile-hero {
	position: relative;
	background: linear-gradient(155deg, var(--ucd-ink) 0%, var(--ucd-ink-soft-bg) 100%);
	overflow: hidden;
	padding: 3rem 0 3.5rem;
	background-image:
		linear-gradient(rgba(240, 242, 237, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(240, 242, 237, 0.035) 1px, transparent 1px);
	background-size: 32px 32px;
	margin-bottom: 2.5rem;
}

.ucd-profile-hero-inner {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 1.5rem;
	display: grid;
	grid-template-columns: 1fr 220px;
	gap: 2.5rem;
	align-items: center;
	position: relative;
}

.ucd-profile-hero-text h1 {
	font-family: 'Fraunces', Georgia, serif;
	font-weight: 600;
	font-size: clamp(1.9rem, 3.6vw, 2.6rem);
	line-height: 1.1;
	color: #F5F6F2;
	margin: 0 0 0.85rem;
	max-width: 16ch;
}

.ucd-profile-hero .ucd-cond-hero-eyebrow {
	color: #E7B75E;
}

.ucd-profile-hero-sub {
	font-size: 1rem;
	line-height: 1.6;
	color: rgba(240, 242, 237, 0.72);
	max-width: 52ch;
	margin: 0 0 1.4rem;
}

.ucd-profile-hero-actions {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	flex-wrap: wrap;
}

.ucd-hero-cta {
	background: var(--ucd-gold);
	color: #fff;
	font-weight: 600;
	font-size: 0.9rem;
	padding: 0.75rem 1.35rem;
	border-radius: 4px;
	text-decoration: none;
	display: inline-block;
}

.ucd-hero-cta:hover {
	background: var(--ucd-gold-deep);
}

.ucd-profile-hero-nap {
	font-family: 'IBM Plex Mono', ui-monospace, monospace;
	font-size: 0.78rem;
	color: rgba(240, 242, 237, 0.75);
	display: flex;
	gap: 1.1rem;
	flex-wrap: wrap;
}

.ucd-profile-hero-dial {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--ucd-gold);
	opacity: 0.9;
}

@media (max-width: 860px) {
	.ucd-profile-hero-inner {
		grid-template-columns: 1fr;
	}
	.ucd-profile-hero-dial {
		display: none;
	}
}

/* ---- Conditions grid on the profile page ---- */

.ucd-conditions-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 0.75rem;
}

.ucd-cond-card {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.95rem 1.1rem;
	background: var(--ucd-card);
	border: 1px solid var(--ucd-line);
	border-radius: 4px;
	text-decoration: none;
	color: var(--ucd-ink);
	font-weight: 600;
	font-size: 0.92rem;
	transition: border-color 0.15s ease;
}

.ucd-cond-card:hover {
	border-color: var(--ucd-teal);
}

.ucd-cond-card span {
	color: var(--ucd-teal);
	font-size: 1.05rem;
}

/* ==========================================================================
   City hub page
   ========================================================================== */

.ucd-page-wrap {
	max-width: 1180px;
	margin: 0 auto;
	padding: 2.5rem 1.5rem 4rem;
}

.ucd-city-hub .ucd-cond-hero {
	margin-bottom: 0.5rem;
}

.ucd-hub-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 1.5rem;
	margin-top: 1rem;
}

.ucd-hub-grid__item .ucd-doctor-card {
	height: 100%;
}

.ucd-hub-empty {
	background: var(--ucd-card);
	border: 1px dashed var(--ucd-line);
	border-radius: 4px;
	padding: 2rem;
	text-align: center;
	color: var(--ucd-ink-soft);
	margin-top: 1.5rem;
}

.ucd-hub-empty a {
	color: var(--ucd-teal-deep);
	font-weight: 600;
}

/* ---- Unclaimed banner (still used, e.g. above hero, on legacy content) --- */

.ucd-unclaimed-notice {
	background: var(--ucd-gold-tint);
	border: 1px solid rgba(185, 138, 61, 0.35);
	border-left: 3px solid var(--ucd-gold);
	padding: 0.9rem 1.1rem;
	border-radius: 3px;
	font-size: 0.92rem;
	margin-bottom: 2rem;
	line-height: 1.5;
}

.ucd-unclaimed-notice a {
	font-weight: 600;
	color: var(--ucd-ink);
	display: inline-block;
	margin-top: 0.3rem;
}

/* ---- FAQ accordion ---- */

.ucd-faq-section h2 {
	margin-bottom: 1.1rem;
}

.ucd-faq-list {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}

.ucd-faq-item {
	background: var(--ucd-card);
	border: 1px solid var(--ucd-line);
	border-radius: 4px;
	padding: 0;
	overflow: hidden;
}

.ucd-faq-item summary {
	cursor: pointer;
	list-style: none;
	padding: 1rem 1.2rem;
	font-family: 'Fraunces', Georgia, serif;
	font-weight: 600;
	font-size: 1rem;
	color: var(--ucd-ink);
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
}

.ucd-faq-item summary::-webkit-details-marker {
	display: none;
}

.ucd-faq-item summary::after {
	content: "+";
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	font-size: 1.3rem;
	color: var(--ucd-teal);
	flex-shrink: 0;
	transition: transform 0.15s ease;
}

.ucd-faq-item[open] summary::after {
	transform: rotate(45deg);
}

.ucd-faq-answer {
	padding: 0 1.2rem 1.1rem;
}

.ucd-faq-answer p {
	font-size: 0.92rem;
	line-height: 1.6;
	color: var(--ucd-ink-soft);
	margin: 0;
}

.ucd-faq-unanswered {
	font-style: italic;
}

.ucd-faq-unanswered a {
	font-style: normal;
	font-weight: 600;
	color: var(--ucd-teal-deep);
	text-decoration: underline;
}

/* ---- Doctor Dashboard ---- */

.ucd-dashboard-login,
.ucd-dashboard {
	max-width: 720px;
	margin: 0 auto;
	padding: 2.5rem 1.5rem 4rem;
	font-family: 'Inter', -apple-system, sans-serif;
	color: var(--ucd-ink, #16233A);
}

.ucd-dashboard-login h2 {
	font-family: 'Fraunces', Georgia, serif;
	font-weight: 600;
	font-size: 1.5rem;
	margin: 0 0 0.75rem;
}

.ucd-dashboard-login p {
	color: rgba(22, 35, 58, 0.62);
	font-size: 0.95rem;
	line-height: 1.6;
}

.ucd-dashboard-login form.login p {
	margin: 0 0 0.9rem;
}

.ucd-dashboard-login form.login label {
	display: block;
	font-weight: 600;
	font-size: 0.85rem;
	margin-bottom: 0.3rem;
}

.ucd-dashboard-login form.login input[type="text"],
.ucd-dashboard-login form.login input[type="password"] {
	width: 100%;
	padding: 0.7rem 0.9rem;
	border: 1px solid #D7DBD4;
	border-radius: 4px;
	font-size: 0.95rem;
}

.ucd-dashboard-login form.login input[type="submit"] {
	background: #B98A3D;
	color: #fff;
	border: none;
	font-weight: 600;
	padding: 0.75rem 1.4rem;
	border-radius: 4px;
	cursor: pointer;
}

.ucd-dashboard-login-help {
	margin-top: 1.5rem;
	font-size: 0.85rem;
}

.ucd-dashboard-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 1rem;
	flex-wrap: wrap;
	margin-bottom: 1.75rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid #D7DBD4;
}

.ucd-dashboard-header h1 {
	font-family: 'Fraunces', Georgia, serif;
	font-weight: 600;
	font-size: 1.7rem;
	margin: 0.3rem 0 0;
}

.ucd-dashboard-notice {
	background: rgba(43, 110, 104, 0.10);
	border: 1px solid rgba(43, 110, 104, 0.35);
	color: #1E4F4B;
	padding: 0.8rem 1.1rem;
	border-radius: 4px;
	font-size: 0.9rem;
	margin-bottom: 1.5rem;
}

.ucd-dashboard-section {
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid #EAEBE6;
}

.ucd-dashboard-section h2 {
	font-family: 'Fraunces', Georgia, serif;
	font-weight: 600;
	font-size: 1.15rem;
	margin: 0 0 0.9rem;
}

.ucd-dashboard-section label {
	display: block;
	font-weight: 600;
	font-size: 0.85rem;
	margin-bottom: 1rem;
}

.ucd-dashboard-section label input[type="text"],
.ucd-dashboard-section label input[type="url"] {
	display: block;
	width: 100%;
	margin-top: 0.35rem;
	padding: 0.65rem 0.85rem;
	border: 1px solid #D7DBD4;
	border-radius: 4px;
	font-weight: 400;
	font-size: 0.95rem;
}

.ucd-dashboard-textarea {
	width: 100%;
	padding: 0.65rem 0.85rem;
	border: 1px solid #D7DBD4;
	border-radius: 4px;
	font-family: inherit;
	font-weight: 400;
	font-size: 0.95rem;
	margin-top: 0.35rem;
	resize: vertical;
}

.ucd-dashboard-help {
	font-size: 0.8rem;
	color: rgba(22, 35, 58, 0.5);
	margin: 0.4rem 0 0;
}

.ucd-dashboard-photo-preview {
	width: 140px;
	aspect-ratio: 4/3.1;
	border-radius: 4px;
	overflow: hidden;
	margin-bottom: 0.75rem;
}

.ucd-dashboard-photo-preview img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ucd-dashboard-checkbox-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 0.5rem;
}

.ucd-dashboard-checkbox {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 400;
	font-size: 0.9rem;
	background: #fff;
	border: 1px solid #D7DBD4;
	border-radius: 4px;
	padding: 0.6rem 0.8rem;
	margin-bottom: 0;
}

.ucd-dashboard-checkbox input {
	margin: 0;
}

/* ---- Motion / accessibility floor ---- */

.ucd-btn:focus-visible,
.ucd-cond-card:focus-visible,
a.ucd-chip:focus-visible,
.ucd-doctor-card__phone a:focus-visible,
.ucd-hero-cta:focus-visible {
	outline: 2px solid var(--ucd-teal);
	outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
	.ucd-btn {
		transition: none;
	}
}
