.dg-501st-grid{
	display:grid;
	grid-template-columns:repeat(3,1fr);
	gap:20px;
}
.dg-501st-card{
	display:flex;
	flex-direction:column;
	align-items:center;
	gap:6px;
	padding:16px;
	text-decoration:none;
	color:inherit;
	background:#fff;
	border-radius:6px;
	transition:background .2s ease, box-shadow .2s ease, transform .2s ease;
}
.dg-501st-card img{
	width:120px;
	height:auto;
	display:block;
	max-width:100%;
}
.dg-501st-name{
	font-weight:600;
	font-size:1rem;
	line-height:1.2;
}
.dg-501st-sub{
	font-size:.85rem;
	opacity:.8;
}
.dg-501st-card:hover{
	transform:translateY(-2px);
}
.dg-501st-status-in-memoriam{
	opacity:.85;
}
.dg-501st-card a{
	text-decoration:none;
	color:inherit;
}
.dg-501st-icons{
	display:flex;
	justify-content:center;
	align-items:center;
	gap:10px;
	margin-top:8px;
}
.dg-501st-icons a{
	display:inline-flex;
	line-height:1;
	transition:color .15s ease, transform .15s ease;
}
.dg-501st-icons a:hover{
	transform:translateY(-1px);
}
