/**
 * Mash Mahatz – machine matching calculator.
 *
 * Every dimension below is the value measured off the approved mockup, which was
 * drawn on a 1672px canvas. `--u` is one mockup pixel: at a 1672px container it
 * equals 1px, and it shrinks proportionally on narrower containers, so the whole
 * composition keeps its exact proportions instead of reflowing.
 */

.mcc-root {
	container-type: inline-size;
	width: 100%;
}

.mcc {
	--u: calc(min(100cqw, 1672px) / 1672);

	--orange: #f8550a;
	--orange-bar: #ed4c01;
	--orange-ink: #ee4a08;
	--navy: #001737;
	--ink: #071a33;
	--body: #1b2637;
	--muted: #55627e;
	--line: #edeef1;
	--divider: #f1f2f5;
	--tile: #f0f1f3;
	--panel: #f4f9fd;
	--trust: #f7f8fa;
	--greybar: #d9d8d8;
	--card-border: #e9eaec;

	direction: rtl;
	font-family: "Assistant", "Heebo", "Rubik", -apple-system, "Segoe UI", sans-serif;
	color: var(--body);
	max-width: calc(1672 * var(--u));
	margin: 0 auto;
	padding: 0 calc(52 * var(--u));
	text-align: right;
	-webkit-font-smoothing: antialiased;
}

.mcc,
.mcc *,
.mcc *::before,
.mcc *::after {
	box-sizing: border-box;
}

.mcc :where(button) {
	font-family: inherit;
	cursor: pointer;
	border: 0;
	background: none;
	padding: 0;
	color: inherit;
}

.mcc :where(.mcc-i) {
	display: block;
	width: 100%;
	height: 100%;
}

/* ============ Header ============ */

.mcc-title {
	margin: 0;
	text-align: center;
	font-size: calc(57 * var(--u));
	line-height: 1.14;
	font-weight: 800;
	color: var(--ink);
	letter-spacing: calc(-0.6 * var(--u));
}

.mcc-steppill {
	display: block;
	width: fit-content;
	margin: calc(21 * var(--u)) auto 0;
	padding: 0 calc(22 * var(--u));
	height: calc(46 * var(--u));
	line-height: calc(43 * var(--u));
	border: calc(1.5 * var(--u)) solid var(--line);
	border-radius: calc(23 * var(--u));
	background: #fff;
	font-size: calc(30 * var(--u));
	font-weight: 600;
	color: var(--muted);
	white-space: nowrap;
}

.mcc-steppill strong {
	color: var(--orange);
	font-weight: 800;
}

/* ============ Shell ============ */

.mcc-shell {
	margin-top: calc(24 * var(--u));
	padding: calc(14 * var(--u)) calc(13 * var(--u)) calc(16 * var(--u));
	background: #fff;
	border: calc(1 * var(--u)) solid var(--card-border);
	border-radius: calc(20 * var(--u));
	box-shadow: 0 calc(8 * var(--u)) calc(30 * var(--u)) rgba(10, 26, 51, 0.045);
}

/* result 793 | gap 32 | questions 717  = 1542 content width */
.mcc-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) calc(793 * var(--u));
	column-gap: calc(32 * var(--u));
	align-items: start;
}

.mcc-panel {
	grid-column: 1;
	grid-row: 1;
}

.mcc-result {
	grid-column: 2;
	grid-row: 1;
}

/* ============ Questions ============ */

.mcc-panel {
	position: relative;
}

/* One continuous rail behind the dots: first dot centre 55, last 473 from the bottom. */
.mcc-panel::before {
	content: "";
	position: absolute;
	top: calc(68 * var(--u));
	bottom: calc(150 * var(--u));
	right: calc(62 * var(--u));
	width: calc(3 * var(--u));
	margin-right: calc(-1.5 * var(--u));
	background: #dde3ea;
	border-radius: calc(2 * var(--u));
}

.mcc-q {
	position: relative;
	display: grid;
	grid-template-columns: calc(86 * var(--u)) calc(84 * var(--u)) minmax(0, 1fr);
	column-gap: calc(32 * var(--u));
	padding: calc(14 * var(--u)) 0 calc(21 * var(--u));
}

/* Divider stops before the rail column. */
.mcc-q::after {
	content: "";
	position: absolute;
	inset-inline-start: calc(111 * var(--u));
	inset-inline-end: 0;
	bottom: 0;
	height: calc(1.5 * var(--u));
	background: var(--divider);
}

.mcc-q:last-of-type {
	padding-bottom: 0;
}

.mcc-q:last-of-type::after {
	display: none;
}

.mcc-q__rail {
	grid-column: 1;
	grid-row: 1;
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
}

.mcc-dot {
	position: relative;
	margin-top: calc(31 * var(--u));
	width: calc(47 * var(--u));
	height: calc(47 * var(--u));
	border-radius: 50%;
	background: #e7ebf1;
	color: #96a3b6;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: calc(20 * var(--u));
	font-weight: 800;
	transition: background 0.22s ease, color 0.22s ease;
}

.mcc-dot__check {
	display: none;
	width: calc(23 * var(--u));
	height: calc(23 * var(--u));
}

.mcc-q.is-current .mcc-dot {
	background: var(--orange);
	color: #fff;
}

.mcc-q.is-done .mcc-dot {
	background: var(--navy);
	color: #fff;
}

.mcc-q.is-done .mcc-dot__num {
	display: none;
}

.mcc-q.is-done .mcc-dot__check {
	display: block;
}

.mcc-q__tile {
	grid-column: 2;
	grid-row: 1;
	margin-top: calc(12 * var(--u));
	width: calc(84 * var(--u));
	height: calc(84 * var(--u));
	border-radius: calc(18 * var(--u));
	background: var(--tile);
	color: var(--navy);
	display: flex;
	align-items: center;
	justify-content: center;
}

.mcc-i--tile {
	width: calc(52 * var(--u));
	height: calc(52 * var(--u));
}

.mcc-q__body {
	grid-column: 3;
	grid-row: 1;
	min-width: 0;
}

.mcc-q__label {
	margin: 0 0 calc(16 * var(--u));
	font-size: calc(23 * var(--u));
	line-height: 1.26;
	font-weight: 800;
	color: var(--ink);
}

.mcc-opts {
	display: flex;
	gap: calc(18 * var(--u));
}

.mcc-opt {
	position: relative;
	flex: 1 1 auto;
	min-width: 0;
	height: calc(58 * var(--u));
	padding-inline-start: calc(14 * var(--u));
	padding-inline-end: calc(30 * var(--u));
	border: calc(1.5 * var(--u)) solid var(--line);
	border-radius: calc(11 * var(--u));
	background: #fff;
	font-size: calc(22 * var(--u));
	font-weight: 600;
	color: var(--body);
	line-height: 1.2;
	white-space: nowrap;
	transition: border-color 0.16s ease, color 0.16s ease;
}

.mcc-opt:hover {
	border-color: #cdd5e0;
}

.mcc-opt:focus-visible {
	outline: calc(2 * var(--u)) solid var(--orange);
	outline-offset: calc(2 * var(--u));
}

.mcc-opt.is-selected {
	border-color: var(--orange);
	border-width: calc(2 * var(--u));
	color: var(--orange-ink);
	font-weight: 700;
}

.mcc-opt__check {
	position: absolute;
	top: calc(7 * var(--u));
	inset-inline-end: calc(7 * var(--u));
	width: calc(21 * var(--u));
	height: calc(21 * var(--u));
	border-radius: 50%;
	background: var(--orange);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transform: scale(0.5);
	transition: opacity 0.16s ease, transform 0.16s ease;
	pointer-events: none;
}

.mcc-opt.is-selected .mcc-opt__check {
	opacity: 1;
	transform: scale(1);
}

.mcc-i--tick {
	width: calc(11 * var(--u));
	height: calc(11 * var(--u));
}

.mcc-i--dot {
	width: 100%;
	height: 100%;
}

.mcc-cta-row {
	margin-top: calc(13 * var(--u));
	margin-inline-start: calc(53 * var(--u));
}

.mcc-cta {
	display: block;
	width: 100%;
	height: calc(69 * var(--u));
	border-radius: calc(10 * var(--u));
	background: var(--orange);
	color: #fff;
	font-size: calc(27 * var(--u));
	font-weight: 800;
	white-space: nowrap;
	transition: background 0.16s ease;
}

.mcc-cta:hover {
	background: var(--orange-bar);
}

/* ============ Result panel ============ */

.mcc-result {
	min-width: 0;
}

.mcc-card {
	background: var(--panel);
	border: calc(1 * var(--u)) solid #e6eef7;
	border-radius: calc(16 * var(--u));
	padding: calc(20 * var(--u)) calc(21 * var(--u)) calc(20 * var(--u));
}

.mcc-card.is-waiting {
	opacity: 0.62;
}

.mcc-card__title {
	margin: 0;
	text-align: center;
	font-size: calc(42 * var(--u));
	line-height: 1.15;
	font-weight: 800;
	color: var(--ink);
}

.mcc-card__title::after {
	content: "";
	display: block;
	width: calc(64 * var(--u));
	height: calc(4 * var(--u));
	margin: calc(13 * var(--u)) auto 0;
	border-radius: calc(2 * var(--u));
	background: var(--orange);
}

/* info 381 | gap 5 | media 364 */
.mcc-rec {
	display: grid;
	grid-template-columns: calc(381 * var(--u)) minmax(0, 1fr);
	column-gap: calc(5 * var(--u));
	align-items: center;
	margin-top: calc(22 * var(--u));
}

.mcc-rec__info {
	min-width: 0;
}

.mcc-rec__cat a {
	color: inherit;
	text-decoration: none;
}

.mcc-rec__cat a:hover {
	color: var(--orange-ink);
}

.mcc-rec__cat {
	margin: 0;
	font-size: calc(33 * var(--u));
	line-height: 1.2;
	font-weight: 800;
	color: var(--ink);
}

.mcc-rec__model {
	margin: calc(2 * var(--u)) 0 0;
	font-size: calc(16 * var(--u));
	line-height: 1.2;
	font-weight: 700;
	color: var(--orange-ink);
	letter-spacing: calc(0.3 * var(--u));
}

.mcc-facts {
	list-style: none;
	margin: calc(20 * var(--u)) 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: calc(13 * var(--u));
}

.mcc-fact {
	display: grid;
	grid-template-columns: calc(56 * var(--u)) minmax(0, 1fr);
	column-gap: calc(7 * var(--u));
}

.mcc-fact.is-hidden {
	display: none;
}

.mcc-fact__tile {
	grid-column: 1;
	width: calc(56 * var(--u));
	height: calc(54 * var(--u));
	border-radius: calc(13 * var(--u));
	background: var(--navy);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.mcc-i--fact {
	width: calc(27 * var(--u));
	height: calc(27 * var(--u));
}

.mcc-fact__txt {
	grid-column: 2;
	display: block;
	height: calc(54 * var(--u));
	line-height: calc(54 * var(--u));
	padding: 0 calc(19 * var(--u));
	background: #fff;
	border-radius: calc(11 * var(--u));
	font-size: calc(19 * var(--u));
	font-weight: 600;
	color: var(--ink);
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.mcc-fact__txt strong {
	font-weight: 800;
}

.mcc-rec__media {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
}

.mcc-rec__media img {
	display: block;
	max-width: 100%;
	max-height: calc(340 * var(--u));
	width: auto;
	height: auto;
	mix-blend-mode: multiply;
}

.mcc-rec__ghost {
	width: calc(160 * var(--u));
	height: calc(160 * var(--u));
	color: #c3d3e4;
	display: block;
}

.mcc-i--ghost {
	width: 100%;
	height: 100%;
}

/* Bars: this block reads left to right in the mockup. */
.mcc-bars {
	direction: ltr;
	margin-top: calc(32 * var(--u));
	padding: calc(10 * var(--u)) calc(36 * var(--u)) calc(14 * var(--u)) calc(20 * var(--u));
	background: #fff;
	border-radius: calc(14 * var(--u));
}

.mcc-bars__title {
	margin: 0;
	text-align: center;
	font-size: calc(21 * var(--u));
	line-height: 1.3;
	font-weight: 700;
	color: var(--ink);
}

.mcc-bar {
	display: grid;
	grid-template-columns: calc(128 * var(--u)) minmax(0, 1fr);
	column-gap: calc(28 * var(--u));
	align-items: center;
	margin-top: calc(11 * var(--u));
}

.mcc-bar:first-of-type {
	margin-top: calc(2 * var(--u));
}

.mcc-bar__label {
	direction: rtl;
	text-align: right;
	font-size: calc(18 * var(--u));
	font-weight: 600;
	color: var(--ink);
	white-space: nowrap;
}

.mcc-bar__track {
	height: calc(28 * var(--u));
	border-radius: calc(6 * var(--u));
	overflow: hidden;
}

.mcc-bar__fill {
	display: flex;
	align-items: center;
	height: calc(28 * var(--u));
	border-radius: calc(6 * var(--u));
	padding-left: calc(20 * var(--u));
	font-size: calc(17 * var(--u));
	font-weight: 700;
	transition: width 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.mcc-bar__fill--manual {
	background: var(--greybar);
	color: #3f4757;
}

.mcc-bar__fill--machine {
	background: var(--orange-bar);
	color: #fff;
}

/* wa 456 | gap 16 | ghost 275 */
.mcc-actions {
	display: grid;
	grid-template-columns: calc(456 * var(--u)) minmax(0, 1fr);
	column-gap: calc(16 * var(--u));
	margin-top: calc(25 * var(--u));
}

.mcc-btn {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: calc(69 * var(--u));
	border-radius: calc(10 * var(--u));
	font-weight: 700;
	text-decoration: none;
	transition: background 0.16s ease, color 0.16s ease;
}

.mcc-btn--wa {
	background: var(--orange);
	color: #fff;
	font-size: calc(23 * var(--u));
	padding-right: calc(84 * var(--u));
	padding-left: calc(16 * var(--u));
	white-space: nowrap;
}

.mcc-btn--wa:hover {
	background: var(--orange-bar);
}

.mcc-btn--wa[disabled] {
	opacity: 0.55;
	cursor: default;
}

.mcc-btn__circle {
	position: absolute;
	right: calc(21 * var(--u));
	top: 50%;
	transform: translateY(-50%);
	width: calc(51 * var(--u));
	height: calc(51 * var(--u));
	border-radius: 50%;
	background: #fff;
	color: var(--orange);
	display: flex;
	align-items: center;
	justify-content: center;
}

.mcc-i--wa {
	width: calc(30 * var(--u));
	height: calc(30 * var(--u));
}

.mcc-btn__label {
	display: inline-block;
}

.mcc-btn--ghost {
	background: #fff;
	border: calc(2 * var(--u)) solid var(--orange);
	color: var(--orange-ink);
	font-size: calc(25 * var(--u));
	white-space: nowrap;
}

.mcc-btn--ghost:hover {
	background: #fff4ef;
}

/* ============ Trust ============ */

.mcc-trust {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: center;
	height: calc(85 * var(--u));
	margin-top: calc(15 * var(--u));
	background: var(--trust);
	border: calc(1 * var(--u)) solid var(--card-border);
	border-radius: calc(14 * var(--u));
}

.mcc-trust__cell {
	display: flex;
	align-items: center;
	justify-content: center;
	height: calc(30 * var(--u));
	border-inline-start: calc(1 * var(--u)) solid #e3e6ea;
}

.mcc-trust__cell:last-child {
	border-inline-start: 0;
}

.mcc-trust__item {
	display: inline-flex;
	align-items: center;
	gap: calc(14 * var(--u));
	font-size: calc(20 * var(--u));
	font-weight: 600;
	color: var(--ink);
	white-space: nowrap;
}

.mcc-i--trust {
	width: calc(34 * var(--u));
	height: calc(34 * var(--u));
	color: var(--navy);
	flex: 0 0 auto;
}

/* ============ Loading ============ */

.mcc-result.is-loading .mcc-card {
	opacity: 0.5;
	transition: opacity 0.15s ease;
}

/* ============ Narrow screens ============ */

@container (max-width: 1040px) {
	.mcc {
		--u: 1px;
		padding: 0 4px;
	}

	.mcc-title {
		font-size: clamp(24px, 5.4cqw, 40px);
	}

	.mcc-steppill {
		margin-top: 14px;
		height: 36px;
		line-height: 33px;
		font-size: 15px;
		padding: 0 20px;
		border-radius: 18px;
	}

	.mcc-shell {
		margin-top: 16px;
		padding: 16px 14px 18px;
		border-radius: 16px;
	}

	.mcc-grid {
		grid-template-columns: minmax(0, 1fr);
		row-gap: 20px;
	}

	/* Answer first, then see the result. */
	.mcc-panel {
		grid-column: 1;
		grid-row: 1;
	}

	.mcc-result {
		grid-column: 1;
		grid-row: 2;
	}

	.mcc-panel::before {
		top: 40px;
		bottom: 120px;
		right: 17px;
		width: 2px;
	}

	.mcc-q {
		grid-template-columns: 36px minmax(0, 1fr);
		column-gap: 14px;
		padding: 16px 0 18px;
	}

	.mcc-q::after {
		inset-inline-end: 0;
		height: 1px;
	}

	.mcc-q__tile {
		display: none;
	}

	.mcc-q__body {
		grid-column: 2;
	}

	.mcc-dot {
		margin-top: 22px;
		width: 34px;
		height: 34px;
		font-size: 15px;
	}

	.mcc-dot__check {
		width: 15px;
		height: 15px;
	}

	.mcc-q__label {
		font-size: 19px;
		margin-bottom: 12px;
	}

	.mcc-opts {
		flex-wrap: wrap;
		gap: 8px;
	}

	.mcc-opt {
		flex: 1 1 calc(50% - 4px);
		height: 46px;
		font-size: 14.5px;
		padding-inline-start: 10px;
		padding-inline-end: 24px;
		white-space: normal;
		border-radius: 9px;
	}

	.mcc-opt__check {
		top: 5px;
		inset-inline-end: 5px;
		width: 16px;
		height: 16px;
	}

	.mcc-i--tick {
		width: 9px;
		height: 9px;
	}

	.mcc-cta-row {
		margin-inline-start: 0;
		margin-top: 18px;
	}

	.mcc-cta {
		height: 54px;
		font-size: 18px;
	}

	.mcc-card {
		padding: 18px 16px;
		border-radius: 14px;
	}

	.mcc-card__title {
		font-size: 26px;
	}

	.mcc-card__title::after {
		width: 48px;
		height: 3px;
		margin-top: 10px;
	}

	.mcc-rec {
		grid-template-columns: minmax(0, 1fr);
		row-gap: 12px;
		margin-top: 16px;
	}

	.mcc-rec__media {
		order: -1;
	}

	.mcc-rec__media img {
		max-height: 210px;
	}

	.mcc-rec__cat {
		font-size: 22px;
	}

	.mcc-rec__model {
		font-size: 14px;
	}

	.mcc-facts {
		margin-top: 14px;
		gap: 8px;
	}

	.mcc-fact {
		grid-template-columns: 44px minmax(0, 1fr);
		column-gap: 6px;
	}

	.mcc-fact__tile {
		width: 44px;
		height: 44px;
		border-radius: 10px;
	}

	.mcc-i--fact {
		width: 21px;
		height: 21px;
	}

	.mcc-fact__txt {
		height: 44px;
		font-size: 15px;
		padding: 0 12px;
		border-radius: 9px;
		white-space: normal;
	}

	.mcc-bars {
		margin-top: 18px;
		padding: 12px 14px;
		border-radius: 12px;
	}

	.mcc-bars__title {
		font-size: 15px;
	}

	.mcc-bar {
		grid-template-columns: 84px minmax(0, 1fr);
		column-gap: 12px;
		margin-top: 9px;
	}

	.mcc-bar__label {
		font-size: 13.5px;
	}

	.mcc-bar__track,
	.mcc-bar__fill {
		height: 24px;
	}

	.mcc-bar__fill {
		font-size: 12.5px;
		padding-left: 12px;
	}

	.mcc-actions {
		grid-template-columns: minmax(0, 1fr);
		row-gap: 10px;
		margin-top: 16px;
	}

	.mcc-btn {
		height: 52px;
	}

	.mcc-btn--wa {
		font-size: 16px;
		padding-right: 56px;
		padding-left: 12px;
	}

	.mcc-btn__circle {
		width: 34px;
		height: 34px;
		right: 12px;
	}

	.mcc-i--wa {
		width: 20px;
		height: 20px;
	}

	.mcc-btn--ghost {
		font-size: 16px;
		border-width: 2px;
	}

	.mcc-trust {
		grid-template-columns: minmax(0, 1fr);
		height: auto;
		padding: 12px 0;
		row-gap: 10px;
		margin-top: 16px;
	}

	.mcc-trust__cell {
		height: auto;
		border-inline-start: 0;
	}

	.mcc-trust__item {
		font-size: 15px;
		gap: 9px;
	}

	.mcc-i--trust {
		width: 20px;
		height: 20px;
	}

}

@media (prefers-reduced-motion: reduce) {
	.mcc *,
	.mcc *::before,
	.mcc *::after {
		transition-duration: 0.01ms !important;
	}
}

/* ============ Compare dialog ============ */

body.mcc-noscroll {
	overflow: hidden;
}

.mcc-modal {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px 16px;
	direction: rtl;
	font-family: "Assistant", "Heebo", "Rubik", -apple-system, "Segoe UI", sans-serif;
}

.mcc-modal[hidden] {
	display: none;
}

.mcc-modal__veil {
	position: absolute;
	inset: 0;
	background: rgba(7, 26, 51, 0.55);
	backdrop-filter: blur(2px);
}

.mcc-modal__box {
	position: relative;
	width: min(1120px, 100%);
	max-height: calc(100vh - 48px);
	overflow-y: auto;
	background: #fff;
	border-radius: 18px;
	padding: 28px 28px 22px;
	box-shadow: 0 30px 80px rgba(7, 26, 51, 0.28);
	text-align: right;
	box-sizing: border-box;
}

.mcc-modal__x {
	position: absolute;
	top: 14px;
	inset-inline-end: 16px;
	width: 38px;
	height: 38px;
	border: 0;
	border-radius: 50%;
	background: #f2f4f7;
	color: #071a33;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
}

.mcc-modal__x:hover {
	background: #e6e9ee;
}

.mcc-modal__title {
	margin: 0;
	font-size: 26px;
	font-weight: 800;
	color: #071a33;
	text-align: center;
}

.mcc-modal__sub {
	margin: 8px 0 22px;
	text-align: center;
	font-size: 15px;
	font-weight: 600;
	color: #55627e;
}

.mcc-modal__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
	gap: 14px;
}

.mcc-mcard {
	position: relative;
	display: flex;
	flex-direction: column;
	border: 1.5px solid #edeef1;
	border-radius: 14px;
	padding: 14px;
	background: #fff;
}

.mcc-mcard.is-pick {
	border-color: #f8550a;
	background: #fffaf7;
}

.mcc-mcard__badge {
	position: absolute;
	top: -11px;
	inset-inline-start: 14px;
	padding: 3px 12px;
	border-radius: 999px;
	background: #f8550a;
	color: #fff;
	font-size: 12.5px;
	font-weight: 700;
}

.mcc-mcard__media {
	height: 130px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
}

.mcc-mcard__media img {
	max-width: 100%;
	max-height: 130px;
	width: auto;
	mix-blend-mode: multiply;
}

.mcc-mcard__name {
	margin: 0;
	font-size: 18px;
	font-weight: 800;
	color: #071a33;
}

.mcc-mcard__cat {
	margin: 3px 0 12px;
	font-size: 13.5px;
	font-weight: 600;
	color: #55627e;
	min-height: 34px;
}

.mcc-mcard__specs {
	margin: 0 0 14px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 6px 10px;
	font-size: 13.5px;
}

.mcc-mcard__specs dt {
	color: #55627e;
}

.mcc-mcard__specs dd {
	margin: 0;
	font-weight: 800;
	color: #071a33;
	white-space: nowrap;
}

.mcc-mcard__link {
	margin-top: auto;
	display: block;
	padding: 11px 8px;
	border: 1.5px solid #f8550a;
	border-radius: 9px;
	color: #ee4a08;
	font-size: 15px;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
}

.mcc-mcard__link:hover {
	background: #f8550a;
	color: #fff;
}

.mcc-modal__foot {
	margin: 18px 0 0;
	text-align: center;
	font-size: 13px;
	color: #55627e;
}

@media (max-width: 560px) {
	.mcc-modal__box {
		padding: 22px 16px 18px;
	}

	.mcc-modal__title {
		font-size: 20px;
	}

	.mcc-modal__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.mcc-mcard__cat {
		min-height: 0;
	}
}
