.mm-project-tabs {
	display: flex;
	gap: 8px;
	margin: 0 0 20px;
	padding: 5px;
	width: fit-content;
	background: #f2eee5;
	border-radius: 9px;
}

.mm-project-tabs a {
	padding: 9px 14px;
	border-radius: 7px;
	color: #514b40;
	font-weight: 600;
}

.mm-project-tabs a.is-active {
	background: #171713;
	color: #fff;
}

.mm-project-card {
	align-items: start;
}

.mm-project-card.is-completed {
	border-color: #b8d8e9;
}

.mm-project-details {
	display: grid;
	grid-column: 1 / -1;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	padding: 16px;
	background: #faf8f3;
	border-radius: 9px;
}

.mm-project-details div {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.mm-project-details span {
	color: #786f61;
	font-size: 12px;
	text-transform: uppercase;
}

.mm-project-details a {
	color: #8b671b;
}

.mm-project-description,
.mm-completion-summary {
	grid-column: 1 / -1;
}

.mm-project-description h4,
.mm-completion-summary h4 {
	margin: 0 0 8px;
}

.mm-project-description p {
	margin: 0;
}

.mm-completion-summary {
	padding: 18px;
	background: #edf7fb;
	border-left: 4px solid #2e7da4;
	border-radius: 8px;
}

.mm-completion-summary p,
.mm-completion-summary ul {
	margin-bottom: 8px;
}

.mm-review-recorded {
	font-weight: 600;
	color: #17643a;
}

@media (max-width: 850px) {
	.mm-project-details {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 540px) {
	.mm-project-tabs {
		width: 100%;
		flex-wrap: wrap;
	}
	.mm-project-details {
		grid-template-columns: 1fr;
	}
}
