.mdc-deals-grid {
	--mdc-navy: #10205e;
	--mdc-blue: #d8e9ff;
	--mdc-icon: #3157c7;
	--mdc-green: #00a63c;
	--mdc-muted: #1c2440;
	--mdc-orange: #DDA044;
	--mdc-orange-dark: #DD8500;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 32px;
	width: 100%;
	box-sizing: border-box;
}

.mdc-card {
	background: var(--mdc-orange);
	border-radius: 0 0 31px 31px;
	overflow: hidden;
	color: var(--mdc-navy);
	font-family: inherit;
	display: flex;
	flex-direction: column;
	min-width: 0;
	box-sizing: border-box;
}

.mdc-image-wrap {
	height: 236px;
	overflow: hidden;
	position: relative;
	border-radius: 0 0 86px 0;
	background: #DDA044;
}

.mdc-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mdc-image-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #c6daf1, #e7f0fa);
}

.mdc-card-body {
	position: relative;
	padding: 0 20px 28px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.mdc-badges {
	margin-top: -20px;
	position: relative;
	z-index: 2;
	min-height: 40px;
	display: flex;
	align-items: center;
}

.mdc-status {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	background: var(--mdc-green);
	color: #fff;
	border-radius: 22px;
	padding: 10px 17px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	box-shadow: 0 1px 2px rgba(0,0,0,.06);
}

.mdc-status-closed {
	background: #ea5700 !important;
}

.mdc-status-coming-soon {
	background: #3157c7;
}

.mdc-check {
	font-size: 17px;
	font-weight: 800;
	line-height: 1;
}

.mdc-title {
	margin: 12px 0 0;
	font-size: 15.5px;
	line-height: 1.42;
	font-weight: 800;
	color: var(--mdc-navy);
}

.mdc-description {
	margin: 0;
	padding-top: 2px;
	font-size: 14px;
	line-height: 1.5;
	font-weight: 600;
	color: var(--mdc-navy);
}

.mdc-stats {
	margin-top: 13px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.mdc-stat {
	display: grid;
	grid-template-columns: 25px minmax(0, 1fr) auto;
	align-items: center;
	gap: 7px;
	min-height: 16px;
	font-size: 13.5px;
	line-height: 1.25;
	color: #172039;
}

.mdc-stat-icon {
	width: 21px;
	height: 21px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--mdc-icon);
}

.mdc-stat-icon svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.mdc-stat strong {
	font-weight: 500;
	color: #171d2e;
	white-space: nowrap;
}

.mdc-club {
	grid-template-columns: 25px auto;
	font-weight: 700;
}

.mdc-bottom {
	margin-top: auto;
	padding-top: 25px;
	display: flex;
	gap: 16px;
	align-items: center;
	justify-content: space-between;
}

.mdc-bottom-text {
	margin: 0;
	font-size: 12px;
	line-height: 1.35;
	max-width: 60%;
	color: #252b3c;
}

.mdc-progress {
	display: flex;
	align-items: center;
	gap: 11px;
	margin-left: auto;
}

.mdc-ring {
	--mdc-progress: 50%;
	width: 80px;
	height: 80px;
	flex: 0 0 80px;
	border-radius: 50%;
	background: conic-gradient(var(--mdc-green) var(--mdc-progress), #b9d4ef 0);
	display: grid;
	place-items: center;
	position: relative;
}

.mdc-ring::before {
	content: "";
	position: absolute;
	inset: 6px;
	border-radius: 50%;
	background: var(--mdc-blue);
}

.mdc-ring span {
	position: relative;
	z-index: 1;
	font-size: 18px;
	color: #1557a9;
	font-weight: 400;
}

.mdc-progress-label {
	font-size: 10px;
	line-height: 1.15;
	color: #3973bd;
	max-width: 55px;
}

.mdc-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 22px;
	color: var(--mdc-navy) !important;
	text-decoration: none !important;
	font-size: 14px;
	font-weight: 800;
}

.mdc-cta span {
	font-size: 22px;
	font-weight: 400;
	line-height: 12px;
	transition: transform .2s ease;
}

.mdc-cta:hover span {
	transform: translateX(4px);
}

.mdc-empty {
	padding: 30px;
	background: #d8e9ff;
	border-radius: 20px;
	color: var(--mdc-navy);
}

@media (max-width: 1100px) {
	.mdc-deals-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 700px) {
	.mdc-deals-grid {
		grid-template-columns: 1fr;
		gap: 22px;
	}
	.mdc-image-wrap {
		height: 220px;
	}
}
