body.mdd-homepage {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, sans-serif;
	color: var(--mdd-text);
	background: var(--mdd-surface);
}

/* Override the theme's serif headings with a modern sans stack */
body.mdd-homepage h1,
body.mdd-homepage h2,
body.mdd-homepage h3,
body.mdd-homepage .mdd-logo-text,
body.mdd-homepage .mdd-row-title,
body.mdd-homepage .mdd-hcard-title {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, "Helvetica Neue", sans-serif;
	letter-spacing: -0.02em;
	font-weight: 800;
}

body.mdd-homepage .mdd-hcard-title,
body.mdd-homepage .mdd-row-title {
	font-weight: 600;
	letter-spacing: -0.01em;
}

body.mdd-homepage * {
	box-sizing: border-box;
}

body.mdd-homepage a {
	text-decoration: none;
	color: inherit;
}

body.mdd-homepage :root,
body.mdd-homepage {
	--mdd-navy: #16181d;
	--mdd-navy-light: #21242b;
	--mdd-orange-bright: #ff6a1a;
	--mdd-red: #d92d20;
}

/* Header */
.mdd-site-header {
	background: var(--mdd-navy);
	color: #fff;
	position: relative;
}

.mdd-header-inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 16px 24px;
	display: flex;
	align-items: center;
	gap: 24px;
}

.mdd-menu-toggle {
	display: none;
	background: none;
	border: none;
	color: #fff;
	cursor: pointer;
	padding: 4px;
}

.mdd-logo {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
}

.mdd-logo-text {
	font-weight: 800;
	font-size: 16px;
	letter-spacing: 0.02em;
	line-height: 1.2;
	display: flex;
	flex-direction: column;
}

.mdd-logo-text small {
	font-weight: 400;
	font-size: 10px;
	letter-spacing: 0.08em;
	color: #a6a9b1;
	text-transform: uppercase;
}

.mdd-search {
	flex: 1;
	max-width: 420px;
	display: flex;
	align-items: center;
	background: var(--mdd-navy-light);
	border-radius: 8px;
	padding: 0 12px;
}

.mdd-search input[type="search"] {
	flex: 1;
	background: none;
	border: none;
	color: #fff;
	padding: 9px 0;
	font-size: 13px;
	outline: none;
}

.mdd-search input[type="search"]::placeholder {
	color: #82858f;
}

.mdd-search button {
	background: none;
	border: none;
	color: #82858f;
	cursor: pointer;
	display: flex;
}

.mdd-nav {
	display: flex;
	gap: 22px;
	margin-left: auto;
	font-size: 14px;
	font-weight: 500;
}

.mdd-nav a:hover {
	color: var(--mdd-orange-bright);
}

.mdd-bookmark {
	color: #fff;
	display: flex;
}

.mdd-mobile-nav {
	display: none;
	flex-direction: column;
	background: var(--mdd-navy-light);
	padding: 8px 24px 16px;
}

.mdd-mobile-nav a {
	padding: 10px 0;
	font-size: 15px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mdd-mobile-nav.mdd-open {
	display: flex;
}

@media (max-width: 900px) {
	.mdd-search,
	.mdd-nav {
		display: none;
	}
	.mdd-menu-toggle {
		display: flex;
	}
}

/* Hero */
.mdd-hero {
	background: var(--mdd-navy) center / cover no-repeat;
	color: #fff;
	padding: 34px 24px;
}

.mdd-hero-inner {
	max-width: 1400px;
	margin: 0 auto;
}

.mdd-eyebrow {
	color: var(--mdd-orange-bright);
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin: 0 0 10px;
}

.mdd-hero h1 {
	font-size: clamp(22px, 3.2vw, 34px);
	line-height: 1.15;
	margin: 0 0 10px;
	max-width: 600px;
}

.mdd-hero-sub {
	font-size: 14px;
	color: #cfd1d6;
	max-width: 460px;
	margin: 0 0 16px;
}

.mdd-hero-ctas {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 18px;
}

.mdd-btn-primary,
.mdd-btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 13px 22px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 14px;
}

.mdd-btn-primary {
	background: var(--mdd-orange-bright);
	color: #fff;
}

.mdd-btn-secondary {
	background: #fff;
	color: var(--mdd-navy);
}

.mdd-hero-ctas .mdd-btn-primary {
	color: #fff;
}

.mdd-hero-ctas .mdd-btn-secondary {
	color: var(--mdd-navy);
}

.mdd-hero-trust {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 24px;
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: 13px;
	color: #b7b9c0;
}

.mdd-hero-trust li {
	display: flex;
	align-items: center;
	gap: 7px;
}

.mdd-hero-trust svg {
	color: var(--mdd-orange-bright);
	flex-shrink: 0;
}

@media (max-width: 700px) {
	.mdd-hero {
		padding: 22px 20px;
	}

	.mdd-hero h1 {
		margin-bottom: 10px;
	}

	.mdd-hero-sub {
		font-size: 14px;
		margin-bottom: 16px;
	}

	.mdd-hero-ctas {
		margin-bottom: 16px;
	}

	.mdd-hero-trust {
		font-size: 12px;
		gap: 8px 16px;
	}

	.mdd-section {
		padding: 28px 20px;
	}
}

/* Section shell */
.mdd-section {
	max-width: 1400px;
	margin: 0 auto;
	padding: 48px 24px;
}

/* Full-bleed tinted band; the .mdd-section inside keeps alignment identical
   to every other section on the page. */
.mdd-band {
	background: #fbf9f6;
}

.mdd-section-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	margin-bottom: 20px;
}

.mdd-section-head h2 {
	font-size: 20px;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 10px;
}

.mdd-badge-live {
	font-size: 11px;
	font-weight: 600;
	color: var(--mdd-orange);
	background: var(--mdd-orange-bg);
	padding: 3px 8px;
	border-radius: 6px;
}

.mdd-section-head .mdd-view-all {
	font-size: 13px;
	font-weight: 600;
	color: var(--mdd-orange);
}

/* Latest deals horizontal scroll row */
.mdd-deal-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 16px;
}

@media (max-width: 1200px) {
	.mdd-deal-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 820px) {
	.mdd-deal-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 560px) {
	.mdd-deal-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

.mdd-hcard {
	background: var(--mdd-surface);
	border: 1px solid var(--mdd-border);
	border-radius: 12px;
	overflow: hidden;
}

.mdd-hcard-image {
	position: relative;
	height: 140px;
	background: var(--mdd-surface-alt);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.mdd-hcard-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 10px;
}

.mdd-hcard-badge {
	position: absolute;
	top: 8px;
	left: 8px;
	background: var(--mdd-red);
	color: #fff;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.01em;
	padding: 4px 8px;
	border-radius: 6px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.18);
}

.mdd-hcard-body {
	padding: 12px 14px;
}

.mdd-hcard-title {
	font-size: 13px;
	line-height: 1.4;
	margin: 0 0 8px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 2.8em;
}

.mdd-hcard-price {
	font-size: 15px;
	font-weight: 700;
	margin: 0;
}

.mdd-hcard-price span {
	font-weight: 400;
	font-size: 12px;
	color: var(--mdd-text-muted);
	text-decoration: line-through;
	margin-left: 6px;
}

.mdd-scroll-arrow {
	position: absolute;
	right: -6px;
	top: 50%;
	transform: translateY(-50%);
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid var(--mdd-border);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

/* Category / vehicle tiles */
.mdd-tile-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
	gap: 14px;
}

.mdd-tile-grid-vehicles {
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.mdd-tile {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	aspect-ratio: 1 / 1;
	background: var(--mdd-navy);
	display: block;
}

.mdd-tile-img {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.mdd-tile-grid-vehicles .mdd-tile {
	aspect-ratio: 16 / 11;
}

.mdd-tile img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mdd-tile-placeholder {
	position: absolute;
	inset: 0;
	background: linear-gradient(160deg, var(--mdd-navy-light), var(--mdd-navy));
}

/* White label overlaid on the image, with a gradient only in the bottom
   strip so the artwork above it stays at true color. */
.mdd-tile-label {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	padding: 10px 12px;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.45) 55%, transparent 100%);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.mdd-tile-label small {
	font-weight: 500;
	font-size: 11px;
	color: var(--mdd-orange-bright);
}

.mdd-tile-soon {
	cursor: default;
}

.mdd-tile-soon .mdd-tile-label small {
	color: #d2d4d9;
}

/* Why us strip */
.mdd-why {
	background: var(--mdd-surface-alt);
	padding: 40px 24px;
}

.mdd-why-grid {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 28px;
}

.mdd-why-item {
	color: var(--mdd-text);
}

.mdd-why-item svg {
	color: var(--mdd-orange);
	margin-bottom: 10px;
}

.mdd-why-item h3 {
	font-size: 14px;
	margin: 0 0 6px;
}

.mdd-why-item p {
	font-size: 13px;
	color: var(--mdd-text-muted);
	margin: 0;
}

/* Newsletter */
.mdd-newsletter {
	background: var(--mdd-navy);
	color: #fff;
	padding: 40px 24px;
	text-align: center;
}

.mdd-newsletter-inner {
	max-width: 700px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

.mdd-newsletter-copy {
	display: flex;
	align-items: center;
	gap: 12px;
	text-align: left;
}

.mdd-newsletter-copy h2 {
	font-size: 20px;
	margin: 0 0 4px;
}

.mdd-newsletter-copy p {
	font-size: 13px;
	color: #b7b9c0;
	margin: 0;
}

.mdd-newsletter-form {
	display: flex;
	gap: 10px;
	width: 100%;
	max-width: 420px;
}

.mdd-newsletter-form input {
	flex: 1;
	padding: 11px 14px;
	border-radius: 8px;
	border: none;
	font-size: 13px;
}

.mdd-newsletter-form button {
	background: var(--mdd-orange-bright);
	color: #fff;
	border: none;
	padding: 11px 20px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 13px;
	cursor: pointer;
}

.mdd-newsletter-fine,
.mdd-subscribe-msg {
	font-size: 12px;
	color: #82858f;
	margin: 14px 0 0;
}

.mdd-subscribe-msg {
	color: var(--mdd-orange-bright);
	font-weight: 600;
}

.mdd-subscribe-error {
	color: #ff8a8a;
}

/* Footer */
.mdd-footer {
	background: var(--mdd-navy);
	color: #82858f;
	padding: 20px 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mdd-footer-inner {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	font-size: 12px;
}

.mdd-footer-links {
	display: flex;
	gap: 16px;
}

.mdd-footer-social {
	display: flex;
	gap: 12px;
	font-size: 11px;
	font-weight: 700;
}

@media (max-width: 700px) {
	.mdd-hero-ctas {
		flex-direction: column;
		align-items: stretch;
	}
	.mdd-newsletter-form {
		flex-direction: column;
	}
	.mdd-tile-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Retailer line + expired state on homepage cards */
.mdd-hcard-posted {
	font-size: 11px;
	color: var(--mdd-text-muted);
	margin: 5px 0 0;
}

.mdd-hcard-retailer {
	font-size: 11px;
	color: var(--mdd-orange);
	font-weight: 600;
	margin: 6px 0 0;
}

.mdd-hcard-expired {
	cursor: default;
}

.mdd-hcard-expired .mdd-hcard-image {
	opacity: 0.45;
}

.mdd-hcard-expired .mdd-hcard-title,
.mdd-hcard-expired .mdd-hcard-price {
	color: var(--mdd-text-muted);
}

.mdd-hcard-expired .mdd-hcard-posted,
.mdd-hcard-expired .mdd-hcard-retailer {
	color: var(--mdd-text-muted);
}

.mdd-hcard-badge-expired {
	background: #e6e3dd;
	color: #5f5c56;
}

/* ---------- List view page ---------- */
.mdd-list-main {
	max-width: 1000px;
	margin: 0 auto;
	padding: 36px 24px 56px;
}

.mdd-list-head h1 {
	font-size: 30px;
	margin: 0 0 4px;
}

.mdd-list-count {
	font-size: 13px;
	color: var(--mdd-text-muted);
	margin: 0 0 20px;
}

.mdd-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 24px;
}

.mdd-filter {
	font-size: 13px;
	padding: 7px 14px;
	border-radius: 999px;
	border: 1px solid var(--mdd-border);
	background: var(--mdd-surface);
	color: var(--mdd-text);
}

.mdd-filter:hover {
	border-color: var(--mdd-orange);
}

.mdd-filters .mdd-filter-on {
	background: var(--mdd-navy);
	border-color: var(--mdd-navy);
	color: #fff;
}

.mdd-filter-toggle {
	margin-left: auto;
	color: var(--mdd-text-muted);
}

.mdd-list {
	list-style: none;
	margin: 0;
	padding: 0;
	border-top: 1px solid var(--mdd-border);
}

.mdd-row {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 18px 4px;
	border-bottom: 1px solid var(--mdd-border);
}

.mdd-row:hover {
	background: var(--mdd-surface-alt);
}

.mdd-row-thumb {
	position: relative;
	flex: 0 0 110px;
	height: 110px;
	border-radius: 10px;
	overflow: hidden;
	background: var(--mdd-surface-alt);
	display: flex;
	align-items: center;
	justify-content: center;
}

.mdd-row-thumb img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 8px;
}

.mdd-row-flag {
	position: absolute;
	top: 6px;
	left: 6px;
	font-size: 10px;
	font-weight: 700;
	padding: 3px 7px;
	border-radius: 5px;
	background: var(--mdd-orange-bg);
	color: var(--mdd-orange);
}

.mdd-row-flag-expired {
	background: #e6e3dd;
	color: #5f5c56;
}

.mdd-row-body {
	flex: 1;
	min-width: 0;
}

.mdd-row-brand {
	display: inline-block;
	font-size: 11px;
	color: var(--mdd-text-muted);
	border: 1px solid var(--mdd-border);
	border-radius: 5px;
	padding: 2px 7px;
	margin-bottom: 6px;
}

.mdd-row-title {
	font-size: 15px;
	font-weight: 600;
	line-height: 1.4;
	margin: 0 0 6px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.mdd-row-price {
	margin: 0 0 4px;
	font-size: 15px;
}

.mdd-row-price strong {
	font-size: 19px;
}

.mdd-row-was {
	color: var(--mdd-text-muted);
	text-decoration: line-through;
	font-size: 13px;
	margin-left: 7px;
}

.mdd-row-meta {
	font-size: 12px;
	color: var(--mdd-text-muted);
	margin: 0;
}

.mdd-row-dot {
	margin: 0 5px;
}

.mdd-row-action {
	flex: 0 0 auto;
}

.mdd-row-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 11px 20px;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 600;
	background: var(--mdd-orange-bright);
	color: #fff;
	white-space: nowrap;
}

.mdd-row-action .mdd-row-btn {
	color: #fff;
}

.mdd-row-btn-off {
	background: transparent;
	border: 1px solid var(--mdd-border);
	color: var(--mdd-text-muted);
	cursor: default;
}

.mdd-row-action .mdd-row-btn-off {
	color: var(--mdd-text-muted);
}

.mdd-row-expired .mdd-row-thumb,
.mdd-row-expired .mdd-row-title,
.mdd-row-expired .mdd-row-price {
	opacity: 0.5;
}

.mdd-pagination {
	display: flex;
	gap: 6px;
	justify-content: center;
	margin-top: 28px;
}

.mdd-page {
	min-width: 34px;
	height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	border: 1px solid var(--mdd-border);
	font-size: 13px;
}

.mdd-page-on {
	background: var(--mdd-navy);
	border-color: var(--mdd-navy);
	color: #fff;
}

.mdd-list-main .mdd-page-on {
	color: #fff;
}

.mdd-affiliate-note {
	font-size: 11px;
	color: var(--mdd-text-muted);
	line-height: 1.6;
	margin-top: 32px;
	padding-top: 16px;
	border-top: 1px solid var(--mdd-border);
}

@media (max-width: 640px) {
	.mdd-row {
		flex-wrap: wrap;
		gap: 12px;
	}
	.mdd-row-thumb {
		flex: 0 0 80px;
		height: 80px;
	}
	.mdd-row-action {
		flex: 1 1 100%;
	}
	.mdd-row-btn {
		width: 100%;
	}
	.mdd-filter-toggle {
		margin-left: 0;
	}
}

/* Tile image element sizing (labels now sit below, images undarkened) */
.mdd-tile-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.mdd-tile-img .mdd-tile-placeholder {
	position: absolute;
	inset: 0;
	background: linear-gradient(160deg, var(--mdd-navy-light), var(--mdd-navy));
}

.mdd-filters-sub {
	margin-top: -12px;
	margin-bottom: 24px;
}

.mdd-filters-sub .mdd-filter {
	font-size: 12px;
	padding: 5px 12px;
}

/* Nav items generated by wp_nav_menu come wrapped in <li> */
.mdd-nav li,
.mdd-mobile-nav li {
	list-style: none;
}

.mdd-nav {
	align-items: center;
}

.mdd-nav ul,
.mdd-mobile-nav ul {
	display: contents;
	margin: 0;
	padding: 0;
}

.mdd-nav li a {
	color: #fff;
}

.mdd-nav li.current-menu-item a,
.mdd-nav li a:hover {
	color: var(--mdd-orange-bright);
}

.mdd-mobile-nav li a {
	display: block;
	padding: 10px 0;
	font-size: 15px;
	color: #fff;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mdd-footer-links li {
	list-style: none;
}

.mdd-footer-links ul {
	display: flex;
	gap: 16px;
	margin: 0;
	padding: 0;
}

/* ---------- Content pages (About, Privacy, Terms) ---------- */
.mdd-content-main {
	max-width: 760px;
	margin: 0 auto;
	padding: 48px 24px 64px;
}

.mdd-content-title {
	font-size: clamp(28px, 4vw, 38px);
	margin: 0 0 8px;
	line-height: 1.15;
}

.mdd-content-updated {
	font-size: 12px;
	color: var(--mdd-text-muted);
	margin: 0 0 28px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--mdd-border);
}

.mdd-content-body {
	font-size: 16px;
	line-height: 1.75;
	color: var(--mdd-text);
}

.mdd-content-body h2 {
	font-size: 22px;
	margin: 36px 0 12px;
}

.mdd-content-body h3 {
	font-size: 17px;
	margin: 28px 0 10px;
}

.mdd-content-body p {
	margin: 0 0 18px;
}

.mdd-content-body ul,
.mdd-content-body ol {
	margin: 0 0 18px;
	padding-left: 24px;
}

.mdd-content-body li {
	margin-bottom: 8px;
}

.mdd-content-body a {
	color: var(--mdd-orange);
	text-decoration: underline;
}

.mdd-content-body img {
	max-width: 100%;
	height: auto;
	border-radius: 10px;
}

.mdd-content-body blockquote {
	margin: 24px 0;
	padding: 4px 0 4px 18px;
	border-left: 3px solid var(--mdd-orange);
	color: var(--mdd-text-muted);
}

.mdd-content-body hr {
	border: none;
	border-top: 1px solid var(--mdd-border);
	margin: 32px 0;
}

.mdd-content-body table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 18px;
}

.mdd-content-body th,
.mdd-content-body td {
	border: 1px solid var(--mdd-border);
	padding: 8px 10px;
	text-align: left;
	font-size: 14px;
}

/* ---------- Found a deal form ---------- */
.mdd-submit-section {
	padding-top: 8px;
}

.mdd-submit-box {
	background: var(--mdd-surface-alt);
	border: 1px solid var(--mdd-border);
	border-radius: 12px;
	padding: 24px;
	max-width: 560px;
}

.mdd-submit-box h2 {
	font-size: 18px;
	margin: 0 0 6px;
}

.mdd-submit-intro {
	font-size: 13px;
	color: var(--mdd-text-muted);
	margin: 0 0 16px;
}

.mdd-submit-form {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.mdd-submit-form label {
	font-size: 12px;
	font-weight: 600;
	margin-top: 10px;
}

.mdd-submit-form label span {
	font-weight: 400;
	color: var(--mdd-text-muted);
}

.mdd-submit-form input,
.mdd-submit-form textarea {
	padding: 9px 12px;
	border: 1px solid var(--mdd-border);
	border-radius: 8px;
	font-size: 13px;
	font-family: inherit;
	background: var(--mdd-surface);
}

.mdd-submit-form button {
	margin-top: 16px;
	align-self: flex-start;
	background: var(--mdd-orange-bright);
	color: #fff;
	border: none;
	padding: 11px 22px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 13px;
	cursor: pointer;
}

.mdd-submit-msg {
	font-size: 13px;
	font-weight: 600;
	color: #1a7f4b;
	margin: 0 0 12px;
}

.mdd-submit-error {
	color: var(--mdd-red);
}

/* Honeypot: hidden from people, still filled in by bots. */
.mdd-hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* ---------- Footer disclosure ---------- */
.mdd-footer-disclosure {
	max-width: 1400px;
	margin: 0 auto 14px;
	padding-bottom: 14px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 11px;
	color: #82858f;
	text-align: center;
}
