.mcl-style-1 .mcl-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 14px;
}

.mcl-style-1 .mcl-item {
	background: var(--mcl-s1-item-bg, #fff);
	border: 1px solid var(--mcl-s1-item-border, #ecf0f1);
	border-radius: 10px;
	padding: 14px;
	display: grid;
	grid-template-columns: 34px 130px 1fr 100px 170px;
	gap: 14px;
	align-items: center;
	box-shadow: 0 4px 16px rgba(21, 21, 21, .05);
}

.mcl-style-1 .mcl-rank {
	font-weight: 700;
	color: var(--mcl-s1-rank-color, #2d3436);
	text-align: center;
}

.mcl-style-1 .mcl-logo img {
	max-width: 120px;
	width: 100%;
	height: auto;
	display: block;
	border-radius: 6px;
}

.mcl-style-1 .mcl-title {
	margin: 0 0 6px;
	font-size: 20px;
	line-height: 1.15;
	font-weight: 700;
	color: var(--mcl-s1-title-color, #151515);
}

.mcl-style-1 .mcl-bonus {
	margin: 0 0 4px;
	font-weight: 700;
	color: var(--mcl-s1-bonus-color, #151515);
}

.mcl-style-1 .mcl-desc {
	margin: 0;
	color: var(--mcl-s1-desc-color, #7f8c8d);
	font-size: 14px;
	line-height: 1.4;
}

.mcl-style-1 .mcl-rating {
	text-align: center;
	color: var(--mcl-s1-rating-color, #151515);
	font-weight: 700;
}

.mcl-style-1 .mcl-rating span {
	color: var(--mcl-s1-rating-star-color, #f1c40f);
	margin-right: 4px;
}

.mcl-style-1 .mcl-action {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.mcl-style-1 .mcl-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 44px;
	border-radius: 8px;
	background: var(--mcl-s1-btn-bg, #2ebef6);
	color: var(--mcl-s1-btn-color, #fff);
	text-decoration: none;
	font-weight: 700;
}

.mcl-style-1 .mcl-btn:hover {
	color: var(--mcl-s1-btn-color, #fff);
	text-decoration: none;
	opacity: .9;
}

.mcl-style-1 .mcl-load-more-wrap {
	text-align: center;
	margin-top: 20px;
}

.mcl-style-1 .mcl-load-more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 180px;
	min-height: 44px;
	padding: 0 24px;
	border-radius: 8px;
	border: 2px solid var(--mcl-s1-load-more-border, #2ebef6);
	background: transparent;
	color: var(--mcl-s1-load-more-color, #2ebef6);
	font-weight: 700;
	font-size: 15px;
	cursor: pointer;
	transition: background .2s, color .2s;
}

.mcl-style-1 .mcl-load-more:hover {
	background: var(--mcl-s1-load-more-hover-bg, #2ebef6);
	color: var(--mcl-s1-load-more-hover-color, #fff);
}

.mcl-style-1 .mcl-load-more:disabled {
	opacity: .5;
	cursor: wait;
}

@media (max-width: 991px) {
	.mcl-style-1 .mcl-item {
		grid-template-columns: 34px 90px 1fr;
	}

	.mcl-style-1 .mcl-rating,
	.mcl-style-1 .mcl-action {
		grid-column: 3;
	}

	.mcl-style-1 .mcl-action {
		max-width: 220px;
	}
}

@media (max-width: 640px) {
	.mcl-style-1 .mcl-item {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.mcl-style-1 .mcl-rank {
		text-align: center;
	}

	.mcl-style-1 .mcl-logo {
		display: flex;
		justify-content: center;
	}

	.mcl-style-1 .mcl-logo img {
		max-width: 140px;
	}

	.mcl-style-1 .mcl-rating,
	.mcl-style-1 .mcl-action {
		grid-column: auto;
	}

	.mcl-style-1 .mcl-action {
		display: block;
		width: 100%;
		max-width: 100%;
	}

	.mcl-style-1 .mcl-btn {
		width: 100%;
		max-width: 100%;
	}
}
