.mh-form {
	display: grid;
	gap: 1.1rem;
}

.mh-form label {
	display: grid;
	gap: .45rem;
	font-weight: 700;
}

.mh-form label span {
	color: #c3532e;
}

.mh-form input,
.mh-form textarea,
.mh-form select {
	box-sizing: border-box;
	width: 100%;
	border: 1px solid #cbd6cf;
	border-radius: 12px;
	background: #fff;
	padding: .85rem 1rem;
	font: inherit;
}

.mh-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.mh-button {
	justify-self: start;
	border: 0;
	border-radius: 999px;
	background: #0d6655;
	color: #fff;
	padding: .9rem 1.35rem;
	font: inherit;
	font-weight: 800;
	cursor: pointer;
}

.mh-button-secondary {
	background: #52645d;
}

.mh-honeypot {
	position: absolute !important;
	left: -10000px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.mh-notice {
	border-left: 4px solid #0d6655;
	background: #edf7f1;
	padding: 1rem;
}

.mh-notice-error {
	border-color: #c3532e;
	background: #fff0e9;
}

.mh-dashboard {
	display: grid;
	gap: .65rem;
}

.mh-dashboard article {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	border-bottom: 1px solid #d8e1db;
	padding: .8rem 0;
}

.mh-dashboard span {
	display: block;
	color: #5f6d66;
	font-size: .85rem;
}

.mh-dashboard-section {
	margin: 2.5rem 0;
	border: 1px solid #d8e1db;
	border-radius: 20px;
	background: #fff;
	padding: clamp(1rem, 3vw, 1.75rem);
}

.mh-dashboard-heading,
.mh-dashboard-actions,
.mh-save-search {
	display: flex;
	align-items: center;
	gap: .75rem;
}

.mh-dashboard-heading {
	justify-content: space-between;
	margin-bottom: 1rem;
}

.mh-dashboard-heading h2,
.mh-dashboard-section h2 {
	margin-bottom: .4rem;
}

.mh-dashboard-actions {
	flex-wrap: wrap;
	justify-content: flex-end;
}

.mh-dashboard-actions form,
.mh-inline-form {
	margin: 0;
}

.mh-dashboard-actions button,
.mh-dashboard-actions a,
.mh-favorite-button {
	border: 0;
	background: transparent;
	color: #0d6655;
	font: inherit;
	font-size: .88rem;
	font-weight: 800;
	cursor: pointer;
}

.mh-dashboard-actions .mh-danger-link {
	color: #a64029;
}

.mh-favorite-button {
	display: block;
	width: 100%;
	margin: 0 0 1rem;
	border: 1px solid #0d6655;
	border-radius: 12px;
	padding: .75rem 1rem;
	text-align: center;
}

.mh-favorite-button.is-saved {
	background: #edf7f1;
}

.mh-save-search {
	flex-wrap: wrap;
	margin: -1rem 0 2rem;
	border: 1px solid #d8e1db;
	border-radius: 16px;
	background: #fffdf8;
	padding: 1rem;
}

.mh-save-search > label:first-of-type {
	display: flex;
	min-width: min(100%, 300px);
	flex: 1;
	align-items: center;
	gap: .65rem;
}

.mh-save-search input[type="text"] {
	min-width: 0;
	flex: 1;
	border: 1px solid #cbd6cf;
	border-radius: 10px;
	padding: .7rem;
	font: inherit;
}

.mh-save-search .mh-check {
	display: flex;
	align-items: center;
	gap: .4rem;
}

.mh-account-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(260px, .7fr);
	gap: 1.25rem;
}

.mh-account-card {
	align-content: start;
	border: 1px solid #d8e1db;
	border-radius: 20px;
	background: #fff;
	padding: clamp(1rem, 3vw, 1.75rem);
}

.mh-form small {
	color: #5f6d66;
	font-weight: 400;
}

.mh-current-images {
	border: 1px solid #d8e1db;
	border-radius: 16px;
	padding: 1rem;
}

.mh-current-images legend {
	padding: 0 .4rem;
	font-weight: 800;
}

.mh-image-checks {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: .75rem;
}

.mh-image-checks label {
	font-size: .82rem;
}

.mh-image-checks img {
	width: 100%;
	aspect-ratio: 4 / 3;
	border-radius: 10px;
	object-fit: cover;
}

@media (max-width: 680px) {
	.mh-form-grid,
	.mh-account-grid {
		grid-template-columns: 1fr;
	}

	.mh-dashboard article,
	.mh-dashboard-heading {
		align-items: flex-start;
		flex-direction: column;
	}

	.mh-dashboard-actions {
		justify-content: flex-start;
	}

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