.op-member-card{
	width:320px;
	background:#fff;
	border:1px solid #e5e5e5;
	border-radius:12px;
	padding:25px;
	text-align:center;
	box-shadow:0 5px 15px rgba(0,0,0,.08);
	transition:.3s;
}
.op-member-card:hover{
	transform:translateY(-6px);
	box-shadow:0 10px 25px rgba(0,0,0,.15);
}
.op-members-directory{
	display:flex;
	flex-wrap:wrap;
	gap:30px;
	justify-content:center;
	margin:40px 0;
}
.op-member-actions{
	margin-top:20px;
}

.op-member-button{

	display:inline-block;
	padding:10px 20px;
	background:#0073aa;
	color:#fff;
	text-decoration:none;
	border-radius:5px;
	font-weight:600;
	transition:.3s;

}

.op-member-button:hover{

	background:#005177;
	color:#fff;

}
.op-member-photo img{
	width:120px;
	height:120px;
	border-radius:50%;
	object-fit:cover;
	margin-bottom:15px;
}

.op-member-card h3{
	margin:10px 0;
	font-size:22px;
}

.op-member-card p{
	margin:8px 0;
}

.op-member-status{
	display:inline-block;
	padding:6px 14px;
	background:#28a745;
	color:#fff;
	border-radius:20px;
	font-size:13px;
	font-weight:600;
}