
/* ==========================================================================
   Clinician Credential Cards
   Matches classes output by the clinician_credential_cards shortcode
   ========================================================================== */
.clinician-cards-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	margin: 32px 0;
}

.clinician-card {
	background: #f4f4f2;
	padding: 32px;
	display: flex;
	flex-direction: column;
}

/* Eyebrow label — small caps with a short accent dash before it */
.clinician-card .eyebrow {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: #4a4a4a;
	margin: 0 0 20px;
}

.clinician-card .eyebrow::before {
	content: "";
	display: inline-block;
	width: 22px;
	height: 2px;
	background: #a9c23d;
}

/* Photo + name row */
.clinician-card .card-header {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	margin-bottom: 16px;
}

.clinician-card .photo {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
	background: #d8e0e2;
}

.clinician-card .name-block h3 {
	font-size: 32px;
	font-weight: 600;
	color: #3e5c6e;
	margin: 0 0 4px;
	text-transform: uppercase;
}

.clinician-card .subtitle {
	font-size: 18px;
	color: #8a8a8a;
	text-transform: uppercase;
	letter-spacing: .04em;
	margin: 0;
}

.clinician-card .highlight {
	font-size: 18px;
	color: #4a4a4a;
	margin: 10px 0 0;
}

.clinician-card .highlight strong {
	color: #333;
}

/* All 3 credential boxes, side by side, nested under highlight in the name column */
.clinician-card .credential-boxes {
	display: flex;
	gap: 16px;
	margin-top: 16px;
}

.clinician-card .credential-box {
	background: #fff;
	padding: 14px 16px 16px;
	flex: 1;
	position: relative;
}

.clinician-card .credential-box .badge {
	display: inline-block;
	background: #a9c23d;
	/* accent green — check against brand palette */
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: .05em;
	text-transform: uppercase;
	padding: 3px 8px;
	margin-bottom: 8px;
	font-family: "Jost", sans-serif;
	float: right;
}

.clinician-card .credential-box h4 {
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
	color: #3e5c6e;
	margin: 0 0 8px;
	line-height: 1.3;
}

.clinician-card .credential-box p {
	font-size: 18px;
	color: #6b6b6b;
	line-height: 1.5;
	margin: 0;
}

/* Footer: italic footnote / stat + view bio button */
.clinician-card .card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	border-top: 1px solid #e2e2e0;
	padding-top: 16px;
	margin-top: 20px;
}

.clinician-card .footnote {
	font-size: 18px;
	font-style: italic;
	color: #6b6b6b;
	margin: 0;
	line-height: 1.5;
}

.clinician-card .footnote strong {
	font-style: normal;
	color: #333;
}

.clinician-card .view-bio-btn {
	display: inline-block;
	background: #a9c23d;
	/* accent green — check against brand palette */
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
	padding: 12px 20px;
	white-space: nowrap;
	text-decoration: none;
	flex-shrink: 0;
	font-family: "Jost", sans-serif;
}

.clinician-card .view-bio-btn:hover {
	background: #035c59;
	color: #fff;
}

/* ==========================================================================
   Mobile — stack everything cleanly
   ========================================================================== */
@media (max-width: 700px) {
	.clinician-card {
		padding: 24px 20px;
	}
	
	/* Photo drops above the text column instead of sitting beside it */
	.clinician-card .card-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}
	
	.clinician-card .photo {
		width: 72px;
		height: 72px;
	}
	
	.clinician-card .name-block h3 {
		font-size: 24px;
	}
	
	.clinician-card .subtitle, .clinician-card .highlight {
		font-size: 15px;
	}
	
	/* Credential boxes stack instead of sitting side by side */
	.clinician-card .credential-boxes {
		flex-direction: column;
		gap: 12px;
	}
	
	.clinician-card .credential-box h4 {
		font-size: 16px;
	}
	
	.clinician-card .credential-box p, .clinician-card .credential-box .badge {
		font-size: 14px;
	}
	
	/* Footnote + button stack instead of sitting side by side */
	.clinician-card .card-footer {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}
	
	.clinician-card .footnote {
		font-size: 14px;
	}
	
	.clinician-card .view-bio-btn {
		width: 100%;
		box-sizing: border-box;
		text-align: center;
		font-size: 14px;
	}
}
