/* ==========================================================================
   Team Popup — Workers Section
   ========================================================================== */

/* Section wrapper — sits below the bio text inside .teamContent */
.team-workers-section {
    margin-top: 28px;
    width: 100%;
    max-width: 80%;
	padding-bottom: 50px;
}
.teamContent strong {
	font-weight: 600;
}

.teamContent li {
	margin-bottom: 5px;
}
/* "Team Members" heading */
.workers-title {
    font-size: 1.55rem;
    font-weight: 600;
    margin: 0 0 15px;
    color: #1A231D;
}

/* 2-column grid of worker items */
.workers-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px 54px;
}

/* Single worker — photo + name side by side */
.worker-item {
	display: flex;
	align-items: center;
	gap: 10px;
}

/* Square worker photo */
.worker-img {
	width: 52px;
	height: 52px;
	object-fit: cover;
	flex-shrink: 0;
	border-radius: 4px;
	background-color: #e8e8e8; /* fallback if no image */
}

/* Placeholder block shown when a worker has no image */
.worker-img--placeholder {
	display: block;
}

/* Worker name */
.worker-name {
	font-size: 0.95rem;
	font-weight: 500;
	line-height: 1.3;
	color: inherit;
}
