.mmls-showcase {
	--mmls-columns: 3;
	--mmls-gap: 22px;
}

.mmls-title {
	margin: 0 0 28px;
	font-size: clamp(28px, 3vw, 44px);
	line-height: 1.08;
	font-weight: 700;
	letter-spacing: -0.03em;
	color: #111827;
}

.mmls-title-main {
	display: inline-block;
	margin-right: 8px;
}

.mmls-title-accent {
	display: inline-block;
	color: #8b5cf6;
}

.mmls-grid {
	display: grid;
	grid-template-columns: repeat(var(--mmls-columns), minmax(0, 1fr));
	gap: var(--mmls-gap);
}

.mmls-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 140px;
	padding: 22px 18px;
	border: 1px solid #ebeef3;
	border-radius: 24px;
	background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
	box-shadow: 0 18px 35px rgba(17, 24, 39, 0.06);
	text-align: center;
	text-decoration: none !important;
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.mmls-item:hover {
	transform: translateY(-4px);
	border-color: #d7deea;
	box-shadow: 0 22px 45px rgba(17, 24, 39, 0.1);
}

.mmls-logo-box {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 56px;
	margin-bottom: 16px;
	position: relative;
}

.mmls-logo {
	display: block;
	max-width: 100%;
	max-height: 56px;
	width: auto;
	height: auto;
	object-fit: contain;
}

.mmls-fallback-mark {
	display: none;
	align-items: center;
	justify-content: center;
	min-width: 58px;
	height: 58px;
	padding: 0 14px;
	border-radius: 999px;
	background: linear-gradient(135deg, #101827 0%, #2f3b4f 100%);
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.mmls-logo-box.is-fallback .mmls-fallback-mark,
.mmls-logo-box.has-fallback .mmls-fallback-mark {
	display: inline-flex;
}

.mmls-logo-box.has-fallback .mmls-logo {
	display: none;
}

.mmls-name {
	display: block;
	color: #111827;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.25;
}

.mmls-count {
	margin-top: 6px;
	color: #7a8598;
	font-size: 13px;
	line-height: 1.2;
}

.mmls-slider {
	position: relative;
	overflow: hidden;
}

.mmls-track {
	display: flex;
	transition: transform 0.5s ease;
	will-change: transform;
}

.mmls-slide {
	flex: 0 0 100%;
	max-width: 100%;
}

.mmls-dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 20px;
}

.mmls-dot {
	width: 10px;
	height: 10px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: #d6dbe4;
	transition: transform 0.18s ease, background-color 0.18s ease;
}

.mmls-dot.is-active {
	background: #8b5cf6;
	transform: scale(1.15);
}

@media (max-width: 991px) {
	.mmls-showcase {
		--mmls-gap: 18px;
	}

	.mmls-grid {
		grid-template-columns: repeat(min(var(--mmls-columns), 3), minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.mmls-item {
		min-height: 124px;
		padding: 18px 14px;
		border-radius: 20px;
	}

	.mmls-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.mmls-title {
		margin-bottom: 22px;
		font-size: 30px;
	}
}
