/**
 * Student Badges Styles.
 *
 * @package WDM_Student_Badge_Display
 * @since 1.0.0
 */

.wdm-student-badges-container {
	max-width: 1200px;
	margin: 40px auto;
	padding: 30px;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 8px;
}

.wdm-student-header {
	margin-bottom: 40px;
	padding-bottom: 20px;
	border-bottom: 2px solid #0073aa;
}

.wdm-student-header h2 {
	margin: 0;
	padding: 0;
	font-size: 33px;
	font-weight: 600;
	font-family: 'Raleway';
	color: #8A31F1;
	text-align: center;
}

.wdm-badge-section {
	margin-bottom: 50px;
}

.wdm-section-header {
	margin-bottom: 25px;
}

.wdm-section-header h3 {
	margin: 0 0 10px 0;
	padding: 0;
	font-size: 20px;
	font-weight: 500;
	font-family:'Raleway';
	color: #002B54;
}

.wdm-badge-empty-message {
	margin: 20px 0;
	padding: 20px;
	text-align: center;
	color: #666;
	font-style: italic;
}

.wdm-badge-empty-message p {
	margin: 0;
	padding: 0;
	font-size: 16px;
}

.wdm-section-description {
	margin: 0;
	padding: 0;
	font-size: 14px;
	color: #666;
	font-style: italic;
}

.wdm-badge-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	gap: 20px;
	max-width: 100%;
}

.wdm-badge-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.wdm-badge-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 20px;
	border: 2px solid #ddd;
	border-radius: 8px;
	background: #fff;
	transition: all 0.3s ease;
	min-height: 170px;
	justify-content: center;
	width: 100%;
}

.wdm-badge-item:not(.wdm-badge-empty):hover {
	transform: translateY(-5px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	border-color: #0073aa;
}

.wdm-badge-item.wdm-badge-empty {
	background: #f5f5f5;
	border: 2px dashed #ddd;
	opacity: 0.3;
}

.wdm-badge-image {
	width: 100%;
	max-width: 120px;
	aspect-ratio: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.wdm-badge-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 0;
	border: none;
}

.wdm-badge-title {
	text-align: center;
	width: 100%;
	margin-top: 10px;
	padding: 0 5px;
}

.wdm-badge-title p {
	margin: 0;
	padding: 0;
	font-size: 14px;
	font-weight: 600;
	color: #23282d;
	word-wrap: break-word;
}

.wdm-badges-login-notice {
	text-align: center;
	padding: 40px;
	font-size: 16px;
	color: #666;
	background: #f5f5f5;
	border: 1px solid #ddd;
	border-radius: 4px;
}

@media screen and (max-width: 1024px) {
	.wdm-badge-grid {
		grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
		gap: 15px;
	}

	.wdm-badge-item {
		padding: 15px;
		min-height: 160px;
	}

	.wdm-badge-title {
		margin-top: 8px;
		font-size: 13px;
	}
}

@media screen and (max-width: 768px) {
	.wdm-student-badges-container {
		padding: 20px;
		margin: 20px;
	}

	.wdm-badge-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}

	.wdm-badge-item {
		min-height: 150px;
	}

	.wdm-badge-image {
		max-width: 100px;
	}

	.wdm-badge-title {
		margin-top: 8px;
		font-size: 12px;
	}
}

@media screen and (max-width: 480px) {
	.wdm-badge-grid {
		grid-template-columns: 1fr;
	}

	.wdm-student-header h2 {
		font-size: 20px;
	}

	.wdm-section-header h3 {
		font-size: 18px;
	}
}

