.mmm-newsletter {
	padding: 22px 0 76px;
}

.mmm-newsletter-strip {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: 24px;
	align-items: center;
	padding: 28px;
	border: 1px solid var(--line);
	border-radius: 28px;
	background:
			linear-gradient(180deg, rgba(255,255,255,.70), rgba(255,255,255,.40)),
			linear-gradient(120deg, rgba(182,84,75,.08), transparent 55%);
	box-shadow: var(--shadow);
}

.mmm-newsletter-strip h3 {
	font-size: 2.3rem;
	margin-bottom: 8px;
}

.mmm-newsletter-strip p {
	margin: 0;
	color: var(--muted);
	max-width: 44ch;
	font-family: "Inter", sans-serif;
}

.mmm-newsletter-form {
	display: flex;
	gap: 12px;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
}

.mmm-newsletter-form input {
	min-width: min(100%, 320px);
	flex: 1 1 280px;
	height: 52px;
	border-radius: 999px;
	border: 1px solid var(--line-strong);
	padding: 0 18px;
	background: rgba(255,255,255,.82);
	color: var(--text);
	outline: none;
	font-family: "Inter", sans-serif;
}

.mmm-newsletter-form input:focus {
	border-color: var(--accent);
	box-shadow: 0 0 0 4px rgba(182,84,75,.12);
}

/* Footer */
#colophon,
.site-footer,
footer.site-footer {
	border-top: 3px solid #B6544B;
	background: var(--bg) !important;
	padding: 24px 0 36px;
	color: var(--muted);
}

.footer-inner {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 32px;
	align-items: start;
}

.footer-brand {
	color: var(--muted);
	font-size: .95rem;
	max-width: 42ch;
	font-family: "Inter", sans-serif;
	line-height: 1.6;
}

.footer-links {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: flex-start;
}

.footer-links a {
	font-size: .9rem;
	color: var(--muted);
	text-decoration: none;
	font-family: "Inter", sans-serif;
	transition: color .2s;
}

.footer-links a:hover { color: var(--text); }

.footer-socials {
	display: flex;
	gap: 10px;
	justify-content: flex-end;
	flex-wrap: wrap;
}

.mmm-share-btn {
	cursor: pointer;
	background: none;
	border: 1px solid var(--line-strong);
}

.footer-social {
	width: 40px;
	height: 40px;
	display: grid;
	place-items: center;
	padding: 0;
	border: 1px solid var(--line-strong);
	border-radius: 50%;
	background: rgba(255,255,255,.52);
	transition: .2s ease;
	color: var(--text);
	text-decoration: none;
	line-height: 1;
}

.footer-social i {
	line-height: 1;
	display: block;
}

.footer-social:hover {
	background: var(--text);
	color: var(--bg);
	border-color: var(--text);
}

#colophon a,
.site-footer a {
	color: var(--muted);
}

#colophon a:hover,
.site-footer a:hover {
	color: var(--accent);
}

.site-info {
	font-size: .85rem;
	color: var(--muted);
	font-family: "Inter", sans-serif;
}