/*!
Theme Name: Kadence Child
Theme URI: https://bowdenworks.com
Template: kadence
Author: Bowden Works
Author URI: https://bowdenworks.com
Description: Kadence child theme
Version: 1.0.0
License: GNU General Public License v3.0 (or later)
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Text Domain: kadence-child
*/

/* ==========================================================================
   Staff Profile Template
   ========================================================================== */

.staff-profile {
	max-width: 960px;
	margin: 0 auto;
	padding: 40px 20px 60px;
}

.staff-profile__inner {
	background: #fff;
}

/* Hero: photo + intro */
.staff-profile__hero {
	display: flex;
	gap: 40px;
	align-items: flex-start;
	padding-bottom: 32px;
	border-bottom: 1px solid #e2e8f0;
	margin-bottom: 32px;
}

.staff-profile__photo {
	flex-shrink: 0;
	width: 220px;
	height: 220px;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.staff-profile__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.staff-profile__intro {
	flex: 1;
	min-width: 0;
	padding-top: 8px;
}

.staff-profile__name {
	font-size: 2rem;
	font-weight: 700;
	color: #1b557e;
	margin: 0 0 4px;
	line-height: 1.2;
}

.staff-profile__title {
	font-size: 1.15rem;
	color: #00a04d;
	font-weight: 600;
	margin: 0 0 16px;
}

/* Highlight bullets (ACF description_item) */
.staff-profile__highlights {
	list-style: none;
	padding: 0;
	margin: 0 0 16px;
	display: flex;
	flex-wrap: wrap;
	gap: 6px 16px;
}

.staff-profile__highlights li {
	font-size: 0.9rem;
	color: #4A5568;
	position: relative;
	padding-left: 14px;
}

.staff-profile__highlights li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #00a04d;
}

/* Social links */
.staff-profile__social {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.staff-profile__social-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 14px;
	border-radius: 6px;
	font-size: 0.875rem;
	font-weight: 500;
	text-decoration: none;
	transition: background 0.15s, color 0.15s;
	color: #1b557e;
	background: #edf2f7;
}

.staff-profile__social-link:hover {
	background: #1b557e;
	color: #fff;
}

.staff-profile__social-link svg {
	flex-shrink: 0;
}

/* Bio section */
.staff-profile__bio h2 {
	font-size: 1.35rem;
	font-weight: 700;
	color: #1b557e;
	margin: 0 0 12px;
}

.staff-profile__bio-text,
.staff-profile__bio-text p {
	font-size: 1rem;
	line-height: 1.75;
	color: #444;
	margin-bottom: 0;
}

/* Details grid */
.staff-profile__details {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-top: 32px;
}

.staff-profile__card {
	background: #f8fafb;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	padding: 24px;
}

.staff-profile__card h3 {
	font-size: 1rem;
	font-weight: 700;
	color: #1b557e;
	margin: 0 0 14px;
	padding-bottom: 10px;
	border-bottom: 2px solid #00a04d;
}

/* Expertise tags */
.staff-profile__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.staff-profile__tag {
	display: inline-block;
	background: #fff;
	border: 1px solid #d1dce6;
	border-radius: 20px;
	padding: 4px 14px;
	font-size: 0.82rem;
	color: #444;
	line-height: 1.5;
}

/* Credentials list */
.staff-profile__credentials {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.staff-profile__credential {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.staff-profile__credential-type {
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #00a04d;
}

.staff-profile__credential-name {
	font-size: 0.95rem;
	font-weight: 600;
	color: #333;
}

.staff-profile__credential-school {
	font-size: 0.85rem;
	color: #666;
}

.staff-profile__credential-desc {
	font-size: 0.82rem;
	color: #888;
	font-style: italic;
}

/* Simple lists (memberships, awards) */
.staff-profile__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.staff-profile__list li {
	font-size: 0.92rem;
	color: #444;
	padding-left: 18px;
	position: relative;
}

.staff-profile__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 7px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #1b557e;
}

/* Section spacing */
.staff-profile__section {
	margin-bottom: 0;
}

.staff-profile__bio {
	padding-bottom: 32px;
	border-bottom: 1px solid #e2e8f0;
}

/* Responsive */
@media (max-width: 768px) {
	.staff-profile {
		padding: 24px 16px 40px;
	}

	.staff-profile__hero {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 24px;
	}

	.staff-profile__photo {
		width: 180px;
		height: 180px;
	}

	.staff-profile__highlights {
		justify-content: center;
	}

	.staff-profile__social {
		justify-content: center;
	}

	.staff-profile__details {
		grid-template-columns: 1fr;
	}

	.staff-profile__name {
		font-size: 1.6rem;
	}
}

@media (max-width: 480px) {
	.staff-profile__photo {
		width: 150px;
		height: 150px;
	}

	.staff-profile__name {
		font-size: 1.4rem;
	}
}
