/* ==========================================================================
   Section: Home / Team. Ported from home-styles.css.
   ========================================================================== */

.team-wrap { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 56px; align-items: center; }
.team-copy { display: flex; flex-direction: column; gap: 18px; }
.team-copy h2 { font-size: clamp(30px, 3.2vw, 44px); }
.team-copy p { font-size: 17px; color: var(--body); }
.team-link {
	display: inline-flex; align-items: center; gap: 9px; font-weight: 600; font-size: 16px; color: var(--cyan);
	width: fit-content; margin-top: 4px; transition: gap .2s ease;
}
.team-link:hover { gap: 14px; }
.team-link svg { width: 18px; height: 18px; }
/* signature visual */
.team-aside { display: flex; flex-direction: column; gap: 16px; }
.sig-card {
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 30px;
	box-shadow: var(--shadow);
}
.sig-row { display: flex; align-items: center; gap: 16px; }
.sig-row + .sig-row { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line-soft); }
.sig-avatar {
	width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0; color:#fff; font-family: var(--sans);
	font-weight: 700; font-size: 17px; display: flex; align-items: center; justify-content: center;
	background: var(--grad);
}
.sig-meta { flex-shrink: 0; width: 190px; }
.sig-meta strong { display: block; font-family: var(--sans); color: var(--navy); font-size: 16px; }
.sig-meta span { display: block; font-size: 13.5px; color: var(--muted); }
.sig-bio {
	flex: 1; padding-left: 20px; border-left: 1px solid var(--line);
	font-size: 13.5px; color: var(--body); line-height: 1.5;
}

@media (max-width: 560px) {
	/* Stack on small phones: divider becomes a top rule under name/role. */
	.sig-row { flex-wrap: wrap; }
	/* flex:1 + min-width:0 lets a long role (e.g. "Government Relations &
	   Partnerships") wrap inside the meta column instead of pushing itself —
	   and the avatar — onto a new line. */
	.sig-meta { width: auto; flex: 1; min-width: 0; }
	.sig-bio { flex-basis: 100%; padding-left: 64px; border-left: 0; margin-top: 4px; }
}

@media (max-width: 1080px) {
	.team-wrap { grid-template-columns: 1fr; gap: 44px; }
}
