/**
 * Sterling Millwork — Staff Page
 *
 * Profile cards and team tiles.
 *
 * @package Sterling_Millwork
 * @since 1.0.0
 */

/* ==========================================================================
   Featured Profile Cards (2-col)
   ========================================================================== */

.sterling-profile-card {
	position: relative;
	overflow: hidden;
	background: #ffffff;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.sterling-profile-card:hover {
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
	transform: translateY(-2px);
}

.sterling-profile-card img {
	transition: transform 0.5s ease;
}

.sterling-profile-card:hover img {
	transform: scale(1.03);
}

/* ==========================================================================
   Team Tiles (4-col)
   ========================================================================== */

.sterling-team-tile {
	background: #ffffff;
	border: 1px solid #e8e8e8;
	padding: 32px 24px;
	text-align: center;
	transition: all 0.3s ease;
}

.sterling-team-tile:hover {
	border-color: #c9a84c;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
	transform: translateY(-2px);
}

/* Gold top accent bar */
.sterling-team-tile::before {
	content: '';
	display: block;
	width: 40px;
	height: 2px;
	background: #c9a84c;
	margin: 0 auto 20px;
	transition: width 0.3s ease;
}

.sterling-team-tile:hover::before {
	width: 60px;
}

.sterling-team-tile h4 {
	margin: 0 0 6px;
}

.sterling-team-tile p {
	margin: 0;
}

.sterling-team-tile a {
	color: #c9a84c;
	text-decoration: none;
	transition: color 0.2s ease;
}

.sterling-team-tile a:hover {
	color: #1a1a1a;
}
