/* ==========================================================================
   mainpage — page template styles (Bootstrap 5.3 add-on)
   ========================================================================== */
@font-face {
	font-family: "Century Gothic";
	src: url("../font/centurygothic.ttf") format("truetype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Century Gothic";
	src: url("../font/centurygothic_bold.ttf") format("truetype");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}
:root {
	--mp-bg: #f2efeb;
	--mp-ink: #2d495f;
	--mp-ink-dark: #22374a;
	--mp-white: #ffffff;
	--mp-radius: 2px;
	--mp-header-h: 96px;
}

/* Only skin the pages that use the template ------------------------------ */
body {
	font-family: "Century Gothic", sans-serif;
}
body {
	background-color: var(--mp-bg);
	color: var(--mp-ink);
	font-family: "Century Gothic", sans-serif;
}

/* ==========================================================================
   1–3. Header: nav left · logo center · button right
   Collapse breakpoint: xl (1200px) — matches .navbar-expand-xl in the template
   ========================================================================== */

.mp-header {
	background-color: var(--mp-bg);
	position: sticky;
	top: 0;
	z-index: 1030;
}

/* WordPress admin bar offset */
body.admin-bar .mp-header {
	top: 32px;
}

@media (max-width: 782px) {
	body.admin-bar .mp-header {
		top: 46px;
	}
}

.mp-navbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: var(--mp-header-h);
	padding: 0.75rem 0;
	position: relative;
	flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   Logo
   -------------------------------------------------------------------------- */
.mp-brand {
	flex: 0 0 auto;
	margin-inline: auto;
}

.mp-brand .custom-logo-link {
	display: block;
	line-height: 0;
}

.mp-brand .custom-logo,
.mp-brand img {
	max-height: 56px;
	width: auto;
	height: auto;
}

.mp-brand-text {
	font-size: 1.35rem;
	font-weight: 300;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--mp-ink);
}

@media (max-width: 1199.98px) {

	.mp-navbar {
		position: relative;
	}

	/* burger out of flow, pinned left */
	.mp-toggler {
		position: absolute;
		left: 0;
		top: 0.75rem;              /* matches .mp-navbar padding-top */
		height: 56px;              /* same as the logo's max-height */
		display: flex;
		align-items: center;
		z-index: 2;
		border: none;
	}

	/* the only in-flow item on row 1 → auto margins centre it exactly */
	.mp-brand {
		margin-inline: auto;
		flex: 0 0 auto;
	}

	/* empty CTA wrapper would still occupy width */
	.mp-nav-right {
		display: none;
	}
}

/* --------------------------------------------------------------------------
   Left navigation
   -------------------------------------------------------------------------- */
.mp-nav-left {
	flex: 1 1 auto;
}

.mp-menu .nav-link,
.mp-menu a {
	color: var(--mp-ink);
	font-weight: 500;
	letter-spacing: 0.02em;
	padding: 0.5rem 0.8rem !important;
	text-decoration: none;
	position: relative;
	display: block;
}

.mp-menu a::after {
	content: "";
	position: absolute;
	left: 1.2rem;
	right: 1.2rem;
	bottom: 0.35rem;
	height: 1px;
	background-color: var(--mp-ink);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.25s ease;
}

.mp-menu a:hover::after,
.mp-menu .current-menu-item > a::after,
.mp-menu a:focus-visible::after {
	transform: scaleX(1);
}

.mp-menu a:hover,
.mp-menu a:focus-visible {
	color: var(--mp-ink-dark);
}

/* Dropdowns (depth 2) — base, both breakpoints */
.mp-menu .sub-menu {
	list-style: none;
	margin: 0;
	padding: 0.5rem 0;
	background: var(--mp-white);
	border: 1px solid rgba(45, 73, 95, 0.12);
	border-radius: var(--mp-radius);
}

.navbar-toggler {
	border-radius: 0;
}

/* --------------------------------------------------------------------------
   3. Second navigation — text link with a fine underline
   -------------------------------------------------------------------------- */
.mp-cta-menu {
	list-style: none;
	display: flex;
	gap: 0.5rem;
	margin: 0;
	padding: 0;
	flex-direction: row;
}

.mp-cta-menu a {
	display: inline-block;
	padding: 0.25rem 0;
	background-color: transparent;
	border: 0;
	border-radius: 0;
	color: var(--mp-ink);
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.2s ease, border-color 0.2s ease;
}

.mp-cta-menu a:hover,
.mp-cta-menu a:focus-visible {
	color: var(--mp-ink-dark);
	border-color: transparent;
}

/* --------------------------------------------------------------------------
   Burger
   -------------------------------------------------------------------------- */
.mp-toggler {
	border-color: rgba(45, 73, 95, 0.35);
	color: var(--mp-ink);
}

.mp-toggler .navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%232d495f' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.mp-toggler:focus {
	box-shadow: 0 0 0 0.2rem rgba(45, 73, 95, 0.25);
}

/* ==========================================================================
   DESKTOP — 1200px and up (nav expanded)
   ========================================================================== */
@media (min-width: 1200px) {

	/* Logo absolutely centered, independent of the nav column widths */
	.mp-brand {
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
		margin-inline: 0;
	}

	/* Equal-width columns either side of the logo */
	.mp-nav-left {
		flex: 1 1 0;
		justify-content: flex-start;
	}

	.mp-nav-right {
		flex: 1 1 0;
		display: flex;
		justify-content: flex-end;
	}

	/* Hover dropdowns */
	.mp-menu .menu-item-has-children {
		position: relative;
	}

	.mp-menu .sub-menu {
		position: absolute;
		top: 100%;
		left: 0;
		min-width: 220px;
		opacity: 0;
		visibility: hidden;
		transform: translateY(6px);
		transition: opacity 0.2s ease, transform 0.2s ease;
		z-index: 20;
		background-color: var(--mp-bg);
	}

	.mp-menu .menu-item-has-children:hover > .sub-menu,
	.mp-menu .menu-item-has-children:focus-within > .sub-menu {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}
}

/* ==========================================================================
   MOBILE / TABLET — below 1200px (nav collapsed into the burger)
   ========================================================================== */
@media (max-width: 1199.98px) {

	.mp-nav-left {
		flex-basis: 100%;
		margin-top: 0.75rem;
	}

	/* No sliding underline in the stacked menu */
	.mp-menu a::after {
		display: none;
	}

	/* Submenus sit inline, indented */
	.mp-menu .sub-menu {
		border: 0;
		background: transparent;
		padding-left: 1rem;
	}

	/* Hide the CTA when the burger appears */
	.mp-cta-menu {
		display: none;
	}
}

/* --------------------------------------------------------------------------
   Page hero — featured image as background
   -------------------------------------------------------------------------- */
.mp-intro {
	position: relative;
	background-color: var(--mp-ink);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	min-height: clamp(340px, 80vh, 840px);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
}

/* Readability overlay in the brand ink */
.mp-intro::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
			180deg,
			rgba(45, 73, 95, 0.35) 0%,
			rgba(45, 73, 95, 0.6) 100%
	);
	z-index: -1;
}

.mp-intro__inner {
	max-width: 60%;
	margin-inline: auto;
	padding-block: clamp(3rem, 8vw, 6rem);
	display: flex;
	flex-direction: column;
	align-items: center;
}

.mp-intro .mp-page-title {
	color: #fff;
	font-size: clamp(2rem, 5vw, 1.5rem);
	font-weight: 300;
	line-height: 1.15;
	letter-spacing: 0.01em;
	margin: 0;
	text-shadow: 0 1px 24px rgba(45, 73, 95, 0.45);
}

.mp-intro .mp-page-content {
	color: #fff;
	font-size: clamp(1rem, 1.4vw, 1.15rem);
	line-height: 1.7;
	max-width: 60ch;
	margin: 0;
}

.mp-intro .mp-page-content > *:last-child {
	margin-bottom: 0;
}

.mp-intro .mp-page-content a {
	color: #fff;
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* The line below the content */
.mp-intro__rule {
	display: block;
	width: 90%;
	max-width: 90vw;
	height: 2px;
	margin-top: 24px;
	background: linear-gradient(
			to right,
			transparent 0%,
			#fff 20%,
			#fff 80%,
			transparent 100%
	);
	border: 0;
	border-radius: 0;
}

@media (max-width: 575.98px) {
	.mp-intro {
		min-height: 320px;
		background-position: center top;
	}
}

/* --------------------------------------------------------------------------
   Page intro
   -------------------------------------------------------------------------- */


.mp-page-title {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	color: var(--mp-ink);
	margin-bottom: 1rem;
}
h4.mb-page-title {
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	font-weight: 300;
	color: var(--mp-ink);
	margin-bottom: 1rem;
}
.mp-page-content {
	max-width: 70ch;
	color: var(--mp-ink);
}

/* --------------------------------------------------------------------------
   Post sections (alternating image / text)
   -------------------------------------------------------------------------- */
.mp-post {
	padding-block: clamp(2.5rem, 6vw, 1rem);
}
.post-content {
	margin-bottom: 3rem;
}
.mp-figure {
	overflow: hidden;
	border-radius: var(--mp-radius);
}

.mp-figure__img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.mp-post:hover .mp-figure__img {
	transform: scale(1.03);
}

.mp-post__title {
	font-size: clamp(1.2rem, 1.7vw + 0.5rem, 1.7rem);
	font-weight: 300;
	color: var(--mp-ink);
	margin-bottom: 1rem;
}
h1.mp-post__title {
	font-size: clamp(2.5rem, 1.7vw, 2.7rem);
	font-weight: 300;
	color: var(--mp-ink);
	margin-bottom: 1rem;
	margin-top: 3rem;
}

h4.mp-post__title {
	font-size: clamp(1.2rem, 2.5vw, 0.5rem);
	font-weight: 300;
	color: var(--mp-ink);
	margin-bottom: 1rem;
}
.mp-post--above h4.mp-post__title {
	font-size: clamp(1.2rem, 2.5vw, 0.5rem);
	font-weight: 300;
	color: var(--mp-ink);
	max-width: 60%;
	margin: 1rem auto;
}
.mp-post__content {
	color: var(--mp-ink);
	line-height: 1.55;
	font-size: 1rem;
	font-weight: 300;
}

.mp-post__content > *:last-child {
	margin-bottom: 0;
}

.mp-post__content a {
	color: var(--mp-ink);
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* Gutenberg blocks inside the loop */
.mp-post__content .wp-block-image img,
.mp-post__content figure img {
	max-width: 100%;
	height: auto;
}

.mp-post__content .alignfull,
.mp-post__content .alignwide {
	max-width: 100%;
	margin-inline: 0;
}

/* The separating line */
.mp-divider {
	width: 60vw;
	margin: 0 auto;
	border: 0;
	height: 2px;
	background: linear-gradient(
			to right,
			rgba(45, 73, 95, 0) 0%,
			var(--mp-ink) 15%,
			var(--mp-ink) 85%,
			rgba(45, 73, 95, 0) 100%
	);
	opacity: 1;
}

.mp-post:last-child .mp-divider {
	display: none;
}

/* was: */
.mp-post:last-child .mp-divider { display: none; }

/* with: */
.mp-posts .mp-post:last-of-type .mp-divider,
.mp-posts .mp-post:only-of-type .mp-divider {
	display: none;
}

.mp-intro .mp-divider {
	display: none;
}

/* --------------------------------------------------------------------------
   Scroll reveal (direction-aware)
   -------------------------------------------------------------------------- */
.mp-reveal {
	--mp-ease: cubic-bezier(0.16, 1, 0.3, 1);
	--mp-dur: 0.9s;
}

/* prevents a horizontal scrollbar from the sideways slide */
.mp-posts {
	overflow-x: clip;
}

/* Animate the columns, not the whole section — reads much livelier
   and the content stays readable if JS ever fails. */
.mp-reveal .mp-post__media,
.mp-reveal .mp-post__body {
	opacity: 0;
	transition:
			opacity var(--mp-dur) var(--mp-ease),
			transform var(--mp-dur) var(--mp-ease);
	will-change: opacity, transform;
}

/* Image left: media from the left, text from the right */
.mp-reveal .mp-post__media {
	transform: translate3d(-56px, 24px, 0);
}
.mp-reveal .mp-post__body {
	transform: translate3d(56px, 24px, 0);
	transition-delay: 0.18s;
}

/* Image right → mirrored */
.mp-post--right.mp-reveal .mp-post__media {
	transform: translate3d(56px, 24px, 0);
}
.mp-post--right.mp-reveal .mp-post__body {
	transform: translate3d(-56px, 24px, 0);
}

/* Stacked layouts → straight fade-up */
.mp-post--above .mp-post__media,
.mp-post--none .mp-post__body {
	transition-delay: 0.1s;
}f
.mp-post--above.mp-reveal .mp-post__media {
	transition-delay: 0s;
}

/* Phones: fade-up only, no sideways slide */
@media (max-width: 767.98px) {
	.mp-reveal .mp-post__media,
	.mp-reveal .mp-post__body,
	.mp-post--right.mp-reveal .mp-post__media,
	.mp-post--right.mp-reveal .mp-post__body {
		transform: translate3d(0, 40px, 0);
	}
	.mp-reveal .mp-post__body {
		transition-delay: 0.12s;
	}
}

/* Revealed */
.mp-reveal.is-visible .mp-post__media,
.mp-reveal.is-visible .mp-post__body {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

/* The divider draws itself in */
.mp-reveal .mp-divider {
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 1s var(--mp-ease) 0.35s;
}
.mp-reveal.is-visible .mp-divider {
	transform: scaleX(1);
}

/* No JS */
.no-js .mp-reveal .mp-post__media,
.no-js .mp-reveal .mp-post__body,
.no-js .mp-reveal .mp-divider {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	.mp-reveal .mp-post__media,
	.mp-reveal .mp-post__body,
	.mp-reveal .mp-divider,
	.mp-figure__img {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}
}
/* --------------------------------------------------------------------------
   4. Slim footer
   -------------------------------------------------------------------------- */
.mp-footer {
	background-color: var(--mp-ink);
	padding-block: 0.9rem;
	margin-top: clamp(2rem, 6vw, 4rem);
}

.mp-footer__nav {
	display: flex;
	justify-content: center;
}

.mp-footer__menu {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 0.25rem 1.75rem;
	margin: 0;
	padding: 0;
}

.mp-footer__menu a {
	color: var(--mp-white);
	text-decoration: none;
	font-size: 1.9rem;
	letter-spacing: 0.03em;
	padding: 0.25rem 0;
	display: inline-block;
	opacity: 0.9;
	transition: opacity 0.2s ease;
}

.mp-footer__menu a:hover,
.mp-footer__menu a:focus-visible {
	opacity: 1;
	text-decoration: underline;
	text-underline-offset: 4px;
	color: var(--mp-white);
}

/* Accessibility */
.mp-header a:focus-visible,
.mp-footer a:focus-visible,
.mp-post a:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 3px;
}

.fa-youtube-square::before { content: "\f166"; }
.fa-square-instagram::before { content: "\e055"; }

/* --------------------------------------------------------------------------
   ACF "position" layouts
   -------------------------------------------------------------------------- */

/* Image above the text: full-width image, text centered underneath */
.mp-post--above .mp-post__media {
	margin-bottom: 0.5rem;
}

.mp-post--above .mp-figure__img {
	max-height: 60vh;
	object-fit: cover;
}

.mp-post--above .mp-post__body,
.mp-post--none .mp-post__body {
	max-width: 122ch;
	margin-inline: auto;
}
.mp-post--none .mp-post__body {
	margin-inline: auto!important;
	padding-top: 0!important;/* centered; use 0 to keep it left-aligned */
}
/* Reveal stagger: in the stacked layout the text follows the image, so keep
   the same delay order regardless of DOM position. */
.mp-post--above .mp-post__media,
.mp-post--none .mp-post__body {
	transition-delay: 0.1s;
}

/* ---- icon columns inside the post content ---- */

/* only touch column rows that actually contain icons */
.mp-post__content .wp-block-columns:has(.icon-container) {
	justify-content: center;
	align-items: flex-start;
}

.mp-post__content .wp-block-column:has(.icon-container) {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
}

/* the plugin's own wrapper */
.mp-post__content .wp-block-outermost-icon-block {
	display: flex;
	justify-content: center;
	width: 100%;
}

/* the link/div the plugin sizes inline with style="width:48px" */
.mp-post__content .icon-container {
	width: 140px !important;
	max-width: 100%;
	margin-inline: auto;
	display: block;
	line-height: 0;

	color: #20436d;            /* line-art */
	--kiss-bg: transparent;    /* disc behind the circle */
	--kiss-label: #20436d;     /* word under the circle */
}

.mp-post__content .icon-container svg {
	width: 100%;
	height: auto;
	display: block;
	overflow: visible;
	transition: color 0.3s ease;
}

.mp-post__content .icon-container .kiss-bg,
.mp-post__content .icon-container .kiss-label,
.mp-post__content .icon-container .kiss-label path {
	transition: fill 0.3s ease;
}

.mp-post__content .icon-container:hover,
.mp-post__content .icon-container:focus-visible {
	color: #f2efeb;            /* line-art cream on the dark disc */
	--kiss-bg: #20436d;        /* disc fills in */
	--kiss-label: #20436d;     /* label stays dark and readable */
}

/* --- icon + caption items inside post content --- */

.mp-post__content .kiss-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 0.75rem;
}

.mp-post__content .wp-block-columns:has(.kiss-item) {
	justify-content: center;
	align-items: flex-start;
}

.mp-post__content .wp-block-outermost-icon-block {
	display: flex;
	justify-content: center;
	width: 100%;
}

/* the circle only */
.mp-post__content .icon-container {
	width: 140px !important;
	max-width: 100%;
	margin-inline: auto;
	display: block;
	line-height: 0;

	color: #20436d;             /* line-art inside the circle */
	--kiss-bg: transparent;     /* the disc */
}

.mp-post__content .icon-container svg {
	width: 100%;
	height: auto;
	display: block;
	overflow: visible;
	transition: color 0.3s ease;
}

.mp-post__content .icon-container .kiss-bg {
	transition: fill 0.3s ease;
}

/* the caption — plain HTML, never affected by the icon's colours */
.mp-post__content .kiss-caption {
	margin: 0;
	color: #20436d;
	font-size: 1rem;
	line-height: 1.3;
}

/* hover the whole item, but only the circle changes */
.mp-post__content .kiss-item:hover .icon-container,
.mp-post__content .icon-container:focus-visible {
	color: #f2efeb;             /* icon lines go cream */
	--kiss-bg: #20436d;         /* disc fills in */
}

@media (max-width: 781px) {
	.mp-post__content .wp-block-column:has(.kiss-item) {
		flex-basis: 100% !important;
	}
	.mp-post__content .icon-container {
		width: 120px !important;
	}
}

.kiss-ring {
	background-image: url(../../images/kiss-ring.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;

	min-height: 250px;
	display: flex;
	align-items: center;      /* vertical centering */
	justify-content: center;  /* horizontal centering */

	margin: 0 auto;
	padding: 2rem;
	text-align: center;
	max-width: 80ch;
	box-sizing: border-box;
}

/* phones: stack and stay centered */
@media (max-width: 781px) {
	.mp-post__content .wp-block-column:has(.icon-container) {
		flex-basis: 100% !important;
	}
	.mp-post__content .icon-container {
		width: 120px !important;
	}
}

/* 4-up gallery on the mainpage template */

/* Container: full-bleed 4-col grid */
.mp-post__content .wp-block-gallery.has-nested-images {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	width: 90vw;
	max-width: 90vw;
	margin-left: calc(50% - 45vw);
	margin-right: calc(50% - 45vw);
	justify-content: center;
}

/* Beat core's flex width calc on the figures */
.mp-post__content .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image),
.mp-post__content .wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image) {
	width: 100%;
	max-width: 100%;
	margin: 0;
}

/* Fill each cell edge-to-edge, equal heights */
.mp-post__content .wp-block-gallery.has-nested-images figure.wp-block-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 3 / 2;   /* your images are ~1024×683 = 3:2, so barely any crop */
}

@media (max-width: 767.98px) {
	.mp-post__content .wp-block-gallery.has-nested-images {
		grid-template-columns: repeat(2, 1fr);
	}
}

.align-items-center img {
	max-width: 100%;
	width: 100vw;
	object-fit: contain!important;
}
.align-items-center .mp-figure {
	margin: 0 auto!important;
}

.mp-post--above .mp-figure__img {
	max-height: 100vh!important;
	text-align: center;
	margin: 0 auto!important;
}

.mp-post--above .mp-post__body {
	max-width: 80vw!important;
	width: 80vw!important;
	margin: 0 auto!important;
}

p.text-column-2 {
	column-count: 2;
	column-gap: 2.5rem;
	text-align: left;      /* optional — keeps both columns flush */
	hyphens: auto;            /* avoids ugly rivers when justified */
	orphans: 2;
	widows: 2;
}

/* full width on small screens, whatever size was chosen */
@media (max-width: 767.98px) {
	.mp-post--above .mp-post__body {
		max-width: 95vw !important;
		width: 95vw !important;
		margin: 0 auto !important;
	}

	.mp-post--above .mp-post__body img {
		max-width: 100%;
		width: 100vw;
		object-fit: contain!important;
	}
}

.mp-post--above .mp-post__body img {
	margin: 0 auto!important;
}

/* single column on smaller screens */
@media (max-width: 767.98px) {
	p.text-column-2 {
		column-count: 1;
		text-align: left;      /* optional — keeps both columns flush */
	}
}
.mp-post__content.mp-text--sm {
	font-size: clamp(0.875rem, 1.1vw, 0.95rem);
	line-height: 1.7;
}
.mp-post__content.mp-text--md {
	font-size: clamp(1rem, 1.3vw, 1.125rem);
	line-height: 1.75;
}
.mp-post__content.mp-text--lg {
	font-size: clamp(1.125rem, 1.7vw, 1.375rem);
	line-height: 1.65;
}

p.mp-post__title {
	margin-top: 0;
}

/* ACF: content_margin_bottom */
.mp-post .mp-mb--none {
	margin-bottom: 0;
	padding-bottom: 0;
}

.mp-post .mp-mb--tiny {
	margin-bottom: 0;
	padding-bottom: clamp(0.5rem, 1.5vw, 1rem);
}

.mp-post .mp-mb--normal {
	margin-bottom: 0;
	padding-bottom: clamp(2.5rem, 6vw, 5rem);
}

/* ACF: image_size — scales the featured image within its column */
.mp-figure.mp-img--sm { max-width: 60%; }
.mp-figure.mp-img--md { max-width: 80%; }
.mp-figure.mp-img--lg { max-width: 100%; }

/* keep it aligned sensibly when scaled down */
.mp-figure.mp-img--sm,
.mp-figure.mp-img--md {
	margin-inline: auto!important;   /* centered; use 0 to keep it left-aligned */
}

/* full width on small screens, whatever size was chosen */
@media (max-width: 767.98px) {
	.mp-figure.mp-img--sm,
	.mp-figure.mp-img--md,
	.mp-figure.mp-img--lg {
		max-width: 100%;
	}
}



.icon-columns .wp-block-paragraph {
	margin-top: 10px;
	line-height: 1.3rem;
}
.icon-columns .wp-block-paragraph a {
	text-decoration: none;
}

#gform_submit_button_1 {
	background-color: #2d495f;   /* var(--mp-ink) */
	color: #fff;
	border: 1px solid #2d495f;
	border-radius: 2px;
	padding: 0.65rem 1.5rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease;
}

#gform_submit_button_1:hover,
#gform_submit_button_1:focus-visible {
	background-color: transparent;
	color: #2d495f;
}