#viewcredits {
	position: relative;
	z-index: 1;
}
#credsect {
	padding: 160px 60px 80px;
}

#credlist {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	max-width: 1000px;
	margin: 0 auto;
}
.user {
	background-color: #1a1a1c;
	border-radius: 18px;
	padding: 28px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.icon {
	width: 52px;
	height: 52px;
	border-radius: 12px;
	overflow: hidden;
	background-color: #2a2a2d;
	flex-shrink: 0;
}
.credname {
	font-size: 15px;
	font-weight: 500;
	color: #e8e8e8;
}
.credjob {
	font-size: 10px;
	font-weight: 600;
	color: #e8e8e8;
	background-color: #222225;
	padding: 3px 10px;
	border-radius: 999px;
	width: fit-content;
	letter-spacing: 0.05em;
}
.credinfo {
	font-size: 12.5px;
	font-weight: 300;
	color: #888890;
	background-color: #222225;
	padding: 10px 14px;
	border-radius: 14px;
	line-height: 1.4;
	margin-top: 2px;
}
.credcard {
	background-color: #1a1a1c;
	border-radius: 18px;
	padding: 28px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.credicon {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background-color: #2a2a2d;
}
.credtitle {
	width: 60%;
	height: 16px;
	border-radius: 999px;
	background-color: #2a2a2d;
}
.credline {
	width: 100%;
	height: 10px;
	border-radius: 999px;
	background-color: #222224;
}
.credline.short {
	width: 70%;
}