.psa-container-5828684b {
	display: flex;
	flex-direction: row;
	width: 100%;
	height: 400px; /* customizable via Elementor */
	overflow: hidden;
	gap: 10px;
}

.psa-item-5828684b {
	flex: 1;
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	transition: flex 0.5s ease;
	cursor: pointer;
	display: flex;
}

.psa-item-5828684b.active {
	flex: 4;
}

.psa-bg-5828684b {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	z-index: 1;
	transition: transform 0.5s ease;
}

.psa-item-5828684b:hover .psa-bg-5828684b {
	transform: scale(1.05);
}

.psa-overlay-5828684b {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 100%);
	z-index: 2;
}

.psa-content-5828684b {
	position: relative;
	z-index: 3;
	padding: 20px;
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
}

.psa-info-container-5828684b {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
	transition: transform 0.5s ease;
	transform: translateY(calc(100% + 20px)); /* Push down when closed */
}

.psa-item-5828684b.active .psa-info-container-5828684b {
	transform: translateY(0); /* Reset when open */
}

.psa-name-5828684b {
	font-size: 24px;
	font-weight: bold;
	white-space: nowrap;
	margin-bottom: 5px;
	text-align: left;
}

.psa-role-pos-5828684b {
	font-size: 14px;
	opacity: 0.9;
	margin-bottom: 10px;
	white-space: nowrap;
	text-align: left;
}

.psa-stats-5828684b {
	display: flex;
	gap: 15px;
	white-space: nowrap;
	align-self: flex-end;
	transform: translateY(100px); /* Slide down when closed */
	opacity: 0;
	transition: transform 0.5s ease, opacity 0.5s ease;
}

.psa-item-5828684b.active .psa-stats-5828684b {
	transform: translateY(0); /* Slide up when open */
	opacity: 1;
}

.psa-stat-box-5828684b {
	background: rgba(255, 255, 255, 0.2);
	padding: 8px 12px;
	border-radius: 6px;
	backdrop-filter: blur(5px);
	text-align: center;
}

.psa-stat-value-5828684b {
	font-size: 20px;
	font-weight: bold;
	display: block;
}

.psa-stat-label-5828684b {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1px;
	opacity: 0.8;
}