/**
 * Lumos Student Profile Styling
 *
 * Custom styles for the Lumos student profile display.
 */

/* Profile Container */
.llms-lumos-student-profile {
	text-align: center;
}

/* Individual Item */
.llms-lumos-student-item {
	text-align: center;
}

.llms-lumos-student-link {
	display: inline-block;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.llms-lumos-student-link:hover {
	transform: scale(1.05);
	opacity: 0.8;
}

.llms-lumos-student-profile .llms-lumos-student-avatar {
	border-radius: 16px;
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	aspect-ratio: 1 / 1;
	max-width: 100%;
	background: white;
}

/* Student Name */
.llms-lumos-student-name {
	display: block;
	margin-top: 8px;
	font-size: 14px;
	color: #666;
}
