/* EME Category Circles — frontend styles */

.emecc-wrap {
	width: 100%;
}

.emecc-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	justify-content: center;
	row-gap: 28px;
	column-gap: 20px;
}

.emecc-cat {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	text-decoration: none;
	color: inherit;
	justify-self: center;
	width: 100%;
	max-width: 220px;
}

.emecc-medal {
	position: relative;
	display: block;
	width: 150px;
	height: 150px;
	border-radius: 50%;
	background: #ffffff;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.emecc-medal img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.emecc-label {
	margin-top: 16px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.3;
	transition: color 0.3s ease;
}

/* Optional hover effects, toggled via widget switchers (prefix classes) */
.emecc-hover-lift-yes .emecc-cat:hover .emecc-medal {
	transform: translateY(-4px);
}

.emecc-hover-zoom-yes .emecc-medal img {
	transition: transform 0.45s ease;
}
.emecc-hover-zoom-yes .emecc-cat:hover .emecc-medal img {
	transform: scale(1.08);
}

@media (max-width: 767px) {
	.emecc-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}
