/* =========================================================
   TPM Global — theme.css
   Layout, diagonal composition, and responsive rules that
   theme.json cannot express on its own.
   ========================================================= */

:root {
	--tpm-navy: #0A1D3A;
	--tpm-teal: #0DBF95;
	/* Accessibility: the brand teal (#0DBF95) is below WCAG AA 4.5:1 for
	   normal text on white/stone and for white text on a teal background.
	   This darker variant is used specifically for TEXT and button
	   backgrounds carrying text; decorative icons/borders keep the brighter
	   brand teal. Confirmed 4.54:1 against white. */
	--tpm-teal-text: #098668;
	--tpm-aqua: #63C6C5;
	--tpm-stone: #F1F3F6;
	--tpm-slate: #6B7280;
	--tpm-white: #FFFFFF;
	--tpm-header-height: 88px;
}

* { box-sizing: border-box; }

img { max-width: 100%; height: auto; display: block; }

/* -----------------------------------------------------------
   Header
   ----------------------------------------------------------- */

.tpm-site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	border-bottom: 1px solid rgba(10, 29, 58, 0.08);
	transition: box-shadow 0.2s ease;
}

.tpm-site-header.is-scrolled {
	box-shadow: 0 2px 16px rgba(10, 29, 58, 0.08);
}

.tpm-header-inner {
	min-height: var(--tpm-header-height);
	padding-top: 0.75rem;
	padding-bottom: 0.75rem;
	gap: 1.5rem;
}

.tpm-header-logo-img {
	height: 56px;
	width: auto;
}

.tpm-logo-link-wrap {
	margin: 0;
	line-height: 0;
}

.tpm-primary-nav {
	flex: 1 1 auto;
}

.tpm-primary-nav .wp-block-navigation__container {
	gap: 1.75rem;
	justify-content: flex-end;
}

.tpm-primary-nav a.wp-block-navigation-item__content {
	color: var(--tpm-navy);
	padding: 0.4rem 0;
}

.tpm-primary-nav .wp-block-navigation-item__content:hover {
	color: var(--tpm-teal-text);
}

.tpm-header-cta { margin: 0; flex-shrink: 0; }

.tpm-btn-whatsapp .wp-block-button__link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	white-space: nowrap;
}

.tpm-btn-icon { flex-shrink: 0; }
.tpm-btn { gap: 0.5rem; }

/* Mobile nav overlay theming (specificity-safe: WP core ships several
   competing rules for this exact state, so we pin both sides explicitly). */
.wp-block-navigation__responsive-container.is-menu-open:not(.disable-default-overlay) {
	background-color: var(--tpm-navy) !important;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content,
.wp-block-navigation__responsive-container.is-menu-open a.wp-block-navigation-item__content,
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__label,
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item {
	color: var(--tpm-white) !important;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-icon svg {
	stroke: var(--tpm-white) !important;
}

.tpm-primary-nav .wp-block-navigation__responsive-container-open,
.tpm-primary-nav .wp-block-navigation__responsive-container-close {
	color: var(--tpm-navy);
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-close {
	color: var(--tpm-white) !important;
}

/* -----------------------------------------------------------
   Hero
   ----------------------------------------------------------- */

.tpm-hero {
	position: relative;
	background: var(--tpm-white);
	overflow: hidden;
}

.tpm-hero-inner {
	display: grid;
	grid-template-columns: minmax(300px, 40%) 1fr;
	align-items: stretch;
	min-height: 560px;
}

.tpm-hero-content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 1.25rem;
	padding: 3rem clamp(1.5rem, 4vw, 3.75rem) 3rem clamp(1.5rem, 5vw, 5.25rem);
}

.tpm-hero-eyebrow {
	font-family: var(--wp--preset--font-family--poppins);
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--tpm-teal-text);
	margin: 0;
}

.tpm-hero-eyebrow-dot { color: var(--tpm-slate); }

.tpm-hero-heading {
	font-family: var(--wp--preset--font-family--poppins);
	font-weight: 700;
	font-size: clamp(2.75rem, 2rem + 3vw, 4.25rem);
	line-height: 1.04;
	color: var(--tpm-navy);
	margin: 0;
}

.tpm-hero-heading .accent-teal { color: var(--tpm-teal-text); }

.tpm-hero-copy {
	font-family: var(--wp--preset--font-family--montserrat);
	font-size: 1.125rem;
	line-height: 1.6;
	color: var(--tpm-slate);
	max-width: 34ch;
	margin: 0;
}

.tpm-hero-ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-top: 0.5rem;
}

@media (min-width: 1081px) {
	.tpm-hero-ctas {
		flex-wrap: nowrap;
		gap: 0.75rem;
	}
	.tpm-hero-ctas .tpm-btn {
		white-space: nowrap;
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
}

.tpm-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--wp--preset--font-family--poppins);
	font-weight: 600;
	font-size: 1rem;
	line-height: 1;
	padding: 1rem 1.85rem;
	border-radius: 999px;
	text-decoration: none;
	white-space: nowrap;
	border: 2px solid transparent;
	transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.tpm-btn-primary {
	background-color: var(--tpm-teal-text);
	color: var(--tpm-white);
}
.tpm-btn-primary:hover { background-color: #087358; color: var(--tpm-white); }

.tpm-btn-secondary {
	background-color: transparent;
	border-color: var(--tpm-navy);
	color: var(--tpm-navy);
}
.tpm-btn-secondary:hover { background-color: var(--tpm-navy); color: var(--tpm-white); }

/* Diagonal image panel */
.tpm-hero-image-wrap {
	position: relative;
	overflow: hidden;
	clip-path: polygon(18% 0, 100% 0, 100% 100%, 0% 100%);
	-webkit-clip-path: polygon(18% 0, 100% 0, 100% 100%, 0% 100%);
	background-color: var(--tpm-navy);
}

.tpm-hero-image-wrap::after {
	content: "";
	position: absolute;
	inset: 0;
	clip-path: polygon(18% 0, calc(18% + 5px) 0, 5px 100%, 0% 100%);
	-webkit-clip-path: polygon(18% 0, calc(18% + 5px) 0, 5px 100%, 0% 100%);
	background: var(--tpm-teal);
	z-index: 2;
}

.tpm-hero-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tpm-hero-badge {
	position: absolute;
	right: clamp(1rem, 3vw, 2.5rem);
	bottom: clamp(1.25rem, 4vw, 2.5rem);
	z-index: 3;
	background: rgba(10, 29, 58, 0.86);
	backdrop-filter: blur(2px);
	color: var(--tpm-white);
	padding: 1rem 1.25rem;
	border-radius: 6px;
	max-width: 320px;
}

.tpm-hero-badge-title {
	font-family: var(--wp--preset--font-family--poppins);
	font-weight: 700;
	font-size: 0.8125rem;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	margin: 0 0 0.25rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.tpm-hero-badge-icon {
	flex-shrink: 0;
	color: var(--tpm-teal);
}

.tpm-hero-badge-copy {
	font-family: var(--wp--preset--font-family--montserrat);
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
}

/* -----------------------------------------------------------
   Responsive
   ----------------------------------------------------------- */

@media (max-width: 1080px) {
	.tpm-hero-inner {
		grid-template-columns: minmax(300px, 44%) 1fr;
	}
	.tpm-hero-heading { font-size: clamp(2.25rem, 4vw, 3.25rem); }
}

@media (max-width: 782px) {
	.tpm-header-inner { padding-top: 0.6rem; padding-bottom: 0.6rem; }
	.tpm-header-logo-img { height: 44px; }

	/* 5. Reduce header WhatsApp button dominance on mobile without losing primary weight. */
	.tpm-header-cta .tpm-btn-whatsapp .wp-block-button__link {
		padding: 0.55rem 0.9rem;
		font-size: 0.8125rem;
		gap: 0.35rem;
	}
	.tpm-header-cta .tpm-btn-whatsapp .wp-block-button__link .tpm-btn-icon {
		width: 14px;
		height: 14px;
	}

	/* 7. Keep the hamburger vertically aligned with logo + CTA. */
	.tpm-header-inner { align-items: center; }
	.wp-block-navigation__responsive-container-open { display: flex; align-items: center; }

	/* 8. Tighten mobile-menu vertical rhythm while keeping touch targets comfortable. */
	.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container,
	.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container {
		gap: 0.35rem !important;
	}
	.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content {
		padding: 0.55rem 0 !important;
		font-size: 1.05rem;
	}

	.tpm-hero-inner {
		display: flex;
		flex-direction: column;
		min-height: 0;
	}
	.tpm-hero-content {
		order: 2;
		padding: 2rem 1.25rem 2.5rem;
	}
	.tpm-hero-image-wrap {
		order: 1;
		clip-path: none;
		-webkit-clip-path: none;
		min-height: 46vh;
	}
	.tpm-hero-image-wrap::after { display: none; }
	.tpm-hero-heading { font-size: clamp(2.25rem, 9vw, 2.75rem); }
	.tpm-hero-copy { max-width: none; }
	.tpm-hero-badge { left: 1rem; right: 1rem; max-width: none; }
	.tpm-btn { padding: 0.9rem 1.5rem; font-size: 0.9375rem; }
}

@media (max-width: 480px) {
	.tpm-hero-ctas { flex-direction: column; align-items: stretch; }
	.tpm-btn { text-align: center; }
}

/* Service hero reuses .tpm-hero-ctas for the desktop side-by-side layout,
   but must NOT stretch full-width on mobile — short hero content on interior
   pages can place a stretched button right where the floating WhatsApp
   button sits. Keep it centered at its natural width instead. */
@media (max-width: 480px) {
	.tpm-service-hero-ctas {
		flex-direction: row;
		flex-wrap: wrap;
		align-items: flex-start;
	}
	.tpm-service-hero-ctas .tpm-btn {
		width: auto;
		max-width: calc(100% - 60px);
	}
}

/* -----------------------------------------------------------
   Trust strip
   ----------------------------------------------------------- */

.tpm-trust-strip {
	padding: 3rem 0;
}

.tpm-trust-strip-inner {
	max-width: 1360px;
	margin: 0 auto;
	padding: 0 clamp(1.5rem, 4vw, 3rem);
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 2rem;
}

.tpm-trust-item {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}

.tpm-trust-icon {
	color: var(--tpm-teal);
	flex-shrink: 0;
}

.tpm-trust-title {
	font-family: var(--wp--preset--font-family--poppins);
	font-weight: 700;
	font-size: 1rem;
	letter-spacing: 0.02em;
	color: var(--tpm-white);
	margin: 0;
}

.tpm-trust-copy {
	font-family: var(--wp--preset--font-family--montserrat);
	font-size: 0.875rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.72);
	margin: 0;
	max-width: 22ch;
}

/* -----------------------------------------------------------
   Services
   ----------------------------------------------------------- */

.tpm-services {
	background: var(--tpm-white);
	padding: clamp(3.5rem, 6vw, 6rem) 0;
}

.tpm-services-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.tpm-services-header {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 3rem;
}

.tpm-eyebrow {
	font-family: var(--wp--preset--font-family--poppins);
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--tpm-teal-text);
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	margin: 0 0 0.75rem;
}

.tpm-eyebrow-rule {
	display: inline-block;
	width: 2.5rem;
	height: 2px;
	background: var(--tpm-teal);
}

.tpm-section-heading {
	font-family: var(--wp--preset--font-family--poppins);
	font-weight: 700;
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	line-height: 1.2;
	color: var(--tpm-navy);
	margin: 0;
}

.tpm-services-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}

.tpm-service-card {
	border: 1px solid rgba(10, 29, 58, 0.1);
	border-radius: 8px;
	padding: 1.75rem 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.tpm-service-card:hover {
	border-color: var(--tpm-teal);
	box-shadow: 0 8px 24px rgba(10, 29, 58, 0.08);
}

.tpm-service-icon {
	color: var(--tpm-teal);
}

.tpm-service-title {
	font-family: var(--wp--preset--font-family--poppins);
	font-weight: 700;
	font-size: 1.0625rem;
	line-height: 1.3;
	color: var(--tpm-navy);
	margin: 0;
}

.tpm-service-copy {
	font-family: var(--wp--preset--font-family--montserrat);
	font-size: 0.9375rem;
	line-height: 1.55;
	color: var(--tpm-slate);
	margin: 0;
}

.tpm-services-cta {
	text-align: center;
	margin-top: 2.75rem;
}

/* -----------------------------------------------------------
   Trust strip / services responsive
   ----------------------------------------------------------- */

@media (max-width: 1080px) {
	.tpm-trust-strip-inner { grid-template-columns: repeat(3, 1fr); row-gap: 2.25rem; }
}

@media (max-width: 782px) {
	.tpm-trust-strip-inner { grid-template-columns: repeat(2, 1fr); }
	.tpm-services-header { text-align: left; margin: 0 0 2rem; }
	.tpm-eyebrow { justify-content: flex-start; }
}

@media (max-width: 480px) {
	.tpm-trust-strip-inner { grid-template-columns: 1fr 1fr; gap: 1.75rem 1.25rem; }
}

/* Services grid — wide desktop: full seven-card single row per approved mockup. */
@media (min-width: 1200px) {
	.tpm-services-inner { max-width: 1520px; }
	.tpm-services-grid { grid-template-columns: repeat(7, 1fr); gap: 1rem; }
	.tpm-service-card { padding: 1.25rem 1rem; gap: 0.5rem; }
	.tpm-service-icon { width: 26px; height: 26px; }
	.tpm-service-title { font-size: 0.95rem; }
	.tpm-service-copy { font-size: 0.8125rem; line-height: 1.45; }
}

/* Services grid — tablet: 4 + 3 arrangement. */
@media (min-width: 600px) and (max-width: 1199px) {
	.tpm-services-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Services grid — mobile: single-column stack (unchanged approved design). */
@media (max-width: 599px) {
	.tpm-services-grid { grid-template-columns: 1fr; }
}

/* -----------------------------------------------------------
   TPM Difference
   ----------------------------------------------------------- */

.tpm-difference {
	position: relative;
	overflow: hidden;
	padding: clamp(3.5rem, 6vw, 6rem) 0;
}

.tpm-difference-globe {
	position: absolute;
	top: 50%;
	right: -180px;
	transform: translateY(-50%);
	color: var(--tpm-white);
	opacity: 0.05;
	pointer-events: none;
	z-index: 0;
}

.tpm-difference-inner {
	position: relative;
	z-index: 1;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.tpm-difference-header {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 3.5rem;
}

.tpm-eyebrow-onnavy { color: var(--tpm-aqua); justify-content: center; }
.tpm-eyebrow-onnavy .tpm-eyebrow-rule { background: var(--tpm-aqua); }

.tpm-section-heading-onnavy { color: var(--tpm-white); }

.tpm-difference-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	column-gap: 2rem;
	row-gap: 3rem;
}

.tpm-difference-item {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}

.tpm-difference-icon { color: var(--tpm-aqua); }

.tpm-difference-title {
	font-family: var(--wp--preset--font-family--poppins);
	font-weight: 700;
	font-size: 1.0625rem;
	color: var(--tpm-white);
	margin: 0;
}

.tpm-difference-copy {
	font-family: var(--wp--preset--font-family--montserrat);
	font-size: 0.9rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.7);
	margin: 0;
	max-width: 26ch;
}

/* -----------------------------------------------------------
   Rwanda image statement
   ----------------------------------------------------------- */

.tpm-statement {
	position: relative;
	overflow: hidden;
	background: var(--tpm-navy);
}

.tpm-statement-inner {
	display: grid;
	grid-template-columns: 1fr minmax(320px, 42%);
	align-items: stretch;
	min-height: 480px;
}

.tpm-statement-image-wrap {
	position: relative;
	overflow: hidden;
}

.tpm-statement-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tpm-statement-panel {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	background: var(--tpm-navy);
	clip-path: polygon(14% 0, 100% 0, 100% 100%, 0% 100%);
	-webkit-clip-path: polygon(14% 0, 100% 0, 100% 100%, 0% 100%);
	padding: 3rem clamp(2rem, 5vw, 4rem) 3rem clamp(2.5rem, 7vw, 6rem);
	margin-left: -1px;
}

.tpm-statement-panel::before {
	content: "";
	position: absolute;
	inset: 0;
	clip-path: polygon(14% 0, calc(14% + 5px) 0, 5px 100%, 0% 100%);
	-webkit-clip-path: polygon(14% 0, calc(14% + 5px) 0, 5px 100%, 0% 100%);
	background: var(--tpm-teal);
}

.tpm-statement-text {
	font-family: var(--wp--preset--font-family--poppins);
	font-weight: 700;
	font-size: clamp(1.5rem, 2vw, 1.875rem);
	line-height: 1.4;
	color: var(--tpm-white);
	margin: 0;
}

.tpm-statement-text .accent-teal { color: var(--tpm-teal); }

/* -----------------------------------------------------------
   Difference / statement responsive
   ----------------------------------------------------------- */

@media (max-width: 1080px) {
	.tpm-difference-grid { grid-template-columns: repeat(2, 1fr); row-gap: 2.5rem; }
	.tpm-statement-inner { grid-template-columns: 1fr minmax(280px, 48%); min-height: 420px; }
}

@media (max-width: 782px) {
	.tpm-difference-globe { display: none; }

	.tpm-statement-inner {
		display: flex;
		flex-direction: column;
		min-height: 0;
	}
	.tpm-statement-image-wrap {
		min-height: 42vh;
		position: relative;
	}
	.tpm-statement-panel {
		clip-path: none;
		-webkit-clip-path: none;
		margin-left: 0;
		padding: 2.5rem 1.5rem;
	}
	.tpm-statement-panel::before { display: none; }
	.tpm-statement-text { font-size: 1.5rem; }
}

@media (max-width: 480px) {
	.tpm-difference-grid { grid-template-columns: 1fr; row-gap: 2rem; }
}

/* -----------------------------------------------------------
   Screen-reader utility (WP core provides this in some contexts,
   not guaranteed in a bare block theme, so we define it ourselves).
   ----------------------------------------------------------- */

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

/* -----------------------------------------------------------
   Conversion CTA
   ----------------------------------------------------------- */

.tpm-conversion {
	position: relative;
	overflow: hidden;
}

.tpm-conversion-inner {
	display: grid;
	grid-template-columns: minmax(320px, 58%) 1fr;
	align-items: stretch;
	min-height: 420px;
}

.tpm-conversion-image-wrap {
	position: relative;
	overflow: hidden;
}

.tpm-conversion-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 70%;
}

.tpm-conversion-panel {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 1.25rem;
	background: var(--tpm-navy);
	padding: 3rem clamp(2rem, 5vw, 4rem);
}

.tpm-conversion-heading {
	font-family: var(--wp--preset--font-family--poppins);
	font-weight: 700;
	font-size: clamp(1.5rem, 2.2vw, 2rem);
	line-height: 1.25;
	color: var(--tpm-white);
	margin: 0;
}

.tpm-conversion-copy {
	font-family: var(--wp--preset--font-family--montserrat);
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.75);
	margin: 0;
}

.tpm-conversion-ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-top: 0.5rem;
}

.tpm-btn-onnavy {
	border-color: var(--tpm-white);
	color: var(--tpm-white);
}
.tpm-btn-onnavy:hover {
	background-color: var(--tpm-white);
	color: var(--tpm-navy);
}

/* -----------------------------------------------------------
   Footer
   ----------------------------------------------------------- */

.tpm-site-footer {
	padding: clamp(3rem, 5vw, 4.5rem) 0 1.5rem;
}

.tpm-footer-inner {
	max-width: 1360px;
	margin: 0 auto;
	padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.tpm-footer-top {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 2.5rem;
	padding-bottom: 2.5rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.tpm-footer-logo {
	height: 40px;
	width: auto;
	margin-bottom: 1rem;
}

.tpm-footer-tagline {
	font-family: var(--wp--preset--font-family--poppins);
	font-weight: 700;
	font-size: 1.0625rem;
	color: var(--tpm-white);
	margin: 0;
}

.tpm-footer-heading {
	font-family: var(--wp--preset--font-family--poppins);
	font-weight: 700;
	font-size: 0.9375rem;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: var(--tpm-aqua);
	margin: 0 0 1.1rem;
}

.tpm-footer-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}

.tpm-footer-list a,
.tpm-footer-list span {
	font-family: var(--wp--preset--font-family--montserrat);
	font-size: 0.9375rem;
	color: rgba(255, 255, 255, 0.75);
	text-decoration: none;
}

.tpm-footer-list a:hover { color: var(--tpm-teal); }

.tpm-footer-contact li {
	display: flex;
	align-items: center;
	gap: 0.6rem;
}

.tpm-footer-contact svg { color: var(--tpm-teal); flex-shrink: 0; }

.tpm-footer-bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding-top: 1.5rem;
	padding-right: 100px; /* keep clear of the fixed floating WhatsApp button */
}

.tpm-footer-copyright {
	font-family: var(--wp--preset--font-family--montserrat);
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.55);
	margin: 0;
}

/* -----------------------------------------------------------
   Floating WhatsApp
   ----------------------------------------------------------- */

.tpm-floating-whatsapp {
	position: fixed;
	bottom: 24px;
	right: 24px;
	z-index: 9999;
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--tpm-teal-text);
	color: var(--tpm-white);
	border-radius: 999px;
	box-shadow: 0 8px 24px rgba(10, 29, 58, 0.28);
	text-decoration: none;
	transition: transform 0.15s ease, background-color 0.15s ease;
}

.tpm-floating-whatsapp:hover {
	background: #087358;
	transform: translateY(-2px);
}

.tpm-floating-whatsapp:focus-visible {
	outline: 3px solid var(--tpm-navy);
	outline-offset: 3px;
}

/* Hide while the mobile navigation overlay is open so it never sits on top
   of the full-screen menu (WordPress adds this class to <html> itself). */
html.has-modal-open .tpm-floating-whatsapp {
	display: none;
}

/* -----------------------------------------------------------
   Conversion / footer / floating button responsive
   ----------------------------------------------------------- */

@media (max-width: 1080px) {
	.tpm-conversion-inner { grid-template-columns: minmax(280px, 52%) 1fr; }
	.tpm-footer-top { grid-template-columns: 1fr 1fr; row-gap: 2.5rem; }
}

@media (max-width: 782px) {
	.tpm-conversion-inner {
		display: flex;
		flex-direction: column;
		min-height: 0;
	}
	.tpm-conversion-image-wrap { min-height: 42vh; }
	.tpm-conversion-panel { padding: 2.25rem 1.5rem 2.5rem; text-align: left; }

	.tpm-footer-top { grid-template-columns: 1fr; gap: 2.25rem; }
	.tpm-footer-bottom { flex-direction: column; align-items: flex-start; padding-right: 0; }

	.tpm-floating-whatsapp {
		bottom: calc(14px + env(safe-area-inset-bottom, 0px));
		right: calc(12px + env(safe-area-inset-right, 0px));
		width: 44px;
		height: 44px;
		box-shadow: 0 4px 14px rgba(10, 29, 58, 0.32);
	}
	.tpm-floating-whatsapp svg { width: 19px; height: 19px; }
}

/* =========================================================
   Phase 2 — Interior page pattern system
   ========================================================= */

/* -----------------------------------------------------------
   Interior / service hero
   ----------------------------------------------------------- */

.tpm-page-hero {
	position: relative;
	overflow: hidden;
	background: var(--tpm-navy);
}

.tpm-page-hero-inner {
	display: grid;
	grid-template-columns: minmax(300px, 42%) 1fr;
	align-items: stretch;
	min-height: 360px;
}

.tpm-page-hero-content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 1rem;
	padding: 3rem clamp(1.5rem, 5vw, 4rem) 3rem clamp(1.5rem, 6vw, 6rem);
}

.tpm-page-hero-heading {
	font-family: var(--wp--preset--font-family--poppins);
	font-weight: 700;
	font-size: clamp(2rem, 3vw, 3rem);
	line-height: 1.1;
	color: var(--tpm-white);
	margin: 0;
}

.tpm-service-hero-copy {
	font-family: var(--wp--preset--font-family--montserrat);
	font-size: 1.0625rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.78);
	max-width: 40ch;
	margin: 0;
}

.tpm-page-hero-image-wrap {
	position: relative;
	overflow: hidden;
	clip-path: polygon(18% 0, 100% 0, 100% 100%, 0% 100%);
	-webkit-clip-path: polygon(18% 0, 100% 0, 100% 100%, 0% 100%);
}

.tpm-page-hero-image-wrap::after {
	content: "";
	position: absolute;
	inset: 0;
	clip-path: polygon(18% 0, calc(18% + 5px) 0, 5px 100%, 0% 100%);
	-webkit-clip-path: polygon(18% 0, calc(18% + 5px) 0, 5px 100%, 0% 100%);
	background: var(--tpm-teal);
	z-index: 2;
}

.tpm-page-hero-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* -----------------------------------------------------------
   Our Purpose (Mission / Vision / Promise)
   ----------------------------------------------------------- */

.tpm-purpose {
	padding: clamp(3rem, 5vw, 4.5rem) 0;
	background: var(--tpm-white);
	border-top: 1px solid rgba(10, 29, 58, 0.08);
}

.tpm-purpose-inner {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.tpm-purpose-eyebrow {
	justify-content: center;
	text-align: center;
	width: 100%;
	margin-bottom: 2.25rem;
}

.tpm-purpose-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2.5rem;
}

.tpm-purpose-item {
	padding-top: 1rem;
	border-top: 2px solid var(--tpm-teal);
}

.tpm-purpose-label {
	display: block;
	font-family: var(--wp--preset--font-family--poppins);
	font-weight: 700;
	font-size: 0.8125rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--tpm-teal-text);
	margin-bottom: 0.6rem;
}

.tpm-purpose-copy {
	font-family: var(--wp--preset--font-family--montserrat);
	font-size: 1rem;
	line-height: 1.6;
	color: var(--tpm-navy);
	margin: 0;
}

/* -----------------------------------------------------------
   Editorial content
   ----------------------------------------------------------- */

.tpm-editorial {
	padding: clamp(3.5rem, 6vw, 6rem) 0;
	background: var(--tpm-white);
}

.tpm-editorial-inner {
	max-width: 760px;
	margin: 0 auto;
	padding: 0 clamp(1.5rem, 4vw, 3rem);
	text-align: center;
}

.tpm-editorial-body {
	text-align: left;
	margin-top: 2rem;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.tpm-editorial-body p {
	font-family: var(--wp--preset--font-family--montserrat);
	font-size: 1.0625rem;
	line-height: 1.75;
	color: var(--tpm-slate);
	margin: 0;
}

/* -----------------------------------------------------------
   Image + content split (reusable, reversible)
   ----------------------------------------------------------- */

.tpm-split {
	position: relative;
	overflow: hidden;
	background: var(--tpm-white);
}

.tpm-split-inner {
	display: grid;
	grid-template-columns: minmax(320px, 46%) 1fr;
	align-items: stretch;
	min-height: 460px;
}

.tpm-split-image-wrap {
	position: relative;
	overflow: hidden;
	order: 1;
}

.tpm-split-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tpm-split-content {
	order: 2;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 1.1rem;
	background: var(--tpm-stone);
	padding: 3rem clamp(1.75rem, 5vw, 4rem);
	clip-path: polygon(6% 0, 100% 0, 100% 100%, 0% 100%);
	-webkit-clip-path: polygon(6% 0, 100% 0, 100% 100%, 0% 100%);
	margin-left: -1px;
}

.tpm-split-content::before {
	content: "";
	position: absolute;
	inset: 0;
	clip-path: polygon(6% 0, calc(6% + 5px) 0, 5px 100%, 0% 100%);
	-webkit-clip-path: polygon(6% 0, calc(6% + 5px) 0, 5px 100%, 0% 100%);
	background: var(--tpm-teal);
}

.tpm-split.is-reversed .tpm-split-image-wrap { order: 2; }
.tpm-split.is-reversed .tpm-split-content {
	order: 1;
	margin-left: 0;
	margin-right: -1px;
	clip-path: polygon(0 0, 94% 0, 100% 100%, 0 100%);
	-webkit-clip-path: polygon(0 0, 94% 0, 100% 100%, 0 100%);
}
.tpm-split.is-reversed .tpm-split-content::before {
	clip-path: polygon(94% 0, calc(94% + 5px) 0, calc(100% - 5px) 100%, 100% 100%);
	-webkit-clip-path: polygon(94% 0, calc(94% + 5px) 0, calc(100% - 5px) 100%, 100% 100%);
}

.tpm-split-copy {
	font-family: var(--wp--preset--font-family--montserrat);
	font-size: 1rem;
	line-height: 1.65;
	/* Slightly darker than --tpm-slate: this text sits on the Stone
	   background here, where the standard slate falls just under WCAG AA
	   (4.35:1). This shade clears 4.5:1. */
	color: #666D7A;
	margin: 0;
	max-width: 42ch;
}

.tpm-split-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}

.tpm-split-list li {
	font-family: var(--wp--preset--font-family--montserrat);
	font-size: 0.9375rem;
	color: var(--tpm-navy);
	padding-left: 1.6rem;
	position: relative;
}

.tpm-split-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.5em;
	width: 10px;
	height: 6px;
	border-left: 2px solid var(--tpm-teal);
	border-bottom: 2px solid var(--tpm-teal);
	transform: rotate(-45deg);
}

/* -----------------------------------------------------------
   Simple CTA banner
   ----------------------------------------------------------- */

.tpm-simple-cta {
	padding: clamp(3rem, 5vw, 4.5rem) 0;
}

.tpm-simple-cta-inner {
	max-width: 640px;
	margin: 0 auto;
	padding: 0 clamp(1.5rem, 4vw, 3rem);
	text-align: center;
}

.tpm-simple-cta-heading {
	font-family: var(--wp--preset--font-family--poppins);
	font-weight: 700;
	font-size: clamp(1.5rem, 2.4vw, 2.125rem);
	color: var(--tpm-white);
	margin: 0 0 0.75rem;
}

.tpm-simple-cta-copy {
	font-family: var(--wp--preset--font-family--montserrat);
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.75);
	margin: 0;
}

.tpm-simple-cta-ctas {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.85rem;
	margin-top: 1.75rem;
}

@media (max-width: 480px) {
	.tpm-simple-cta-ctas {
		flex-direction: column;
		align-items: center;
	}
	.tpm-simple-cta-ctas .tpm-btn {
		width: auto;
		max-width: 300px;
	}
}

/* -----------------------------------------------------------
   Contact block
   ----------------------------------------------------------- */

.tpm-contact-block {
	padding: clamp(3.5rem, 6vw, 6rem) 0;
	background: var(--tpm-white);
}

.tpm-contact-block-inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.tpm-contact-block-header {
	text-align: center;
	max-width: 560px;
	margin: 0 auto 3rem;
}

.tpm-contact-block-intro {
	font-family: var(--wp--preset--font-family--montserrat);
	font-size: 1rem;
	line-height: 1.6;
	color: var(--tpm-slate);
	margin: 0.75rem 0 0;
}

.tpm-contact-channels {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.25rem;
}

.tpm-contact-channel {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.6rem;
	padding: 1.75rem 1.5rem;
	border: 1px solid rgba(10, 29, 58, 0.1);
	border-radius: 8px;
	text-decoration: none;
	color: var(--tpm-navy);
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.tpm-contact-channel:hover {
	border-color: var(--tpm-teal);
	box-shadow: 0 8px 24px rgba(10, 29, 58, 0.08);
}

.tpm-contact-channel svg { color: var(--tpm-teal); }

.tpm-contact-channel-primary {
	background: var(--tpm-navy);
	border-color: var(--tpm-navy);
	color: var(--tpm-white);
}
.tpm-contact-channel-primary svg { color: var(--tpm-teal); }
.tpm-contact-channel-primary:hover { border-color: var(--tpm-teal); }

.tpm-contact-channel-label {
	font-family: var(--wp--preset--font-family--poppins);
	font-weight: 700;
	font-size: 0.8125rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	opacity: 0.65;
}

.tpm-contact-channel-value {
	font-family: var(--wp--preset--font-family--montserrat);
	font-size: 1.0625rem;
	font-weight: 600;
}

.tpm-contact-channel-static { cursor: default; }
.tpm-contact-channel-static:hover { border-color: rgba(10, 29, 58, 0.1); box-shadow: none; }

/* -----------------------------------------------------------
   Phase 2 responsive
   ----------------------------------------------------------- */

@media (max-width: 1080px) {
	.tpm-page-hero-inner { grid-template-columns: minmax(280px, 46%) 1fr; }
	.tpm-split-inner { grid-template-columns: minmax(280px, 50%) 1fr; }
	.tpm-contact-channels { grid-template-columns: repeat(2, 1fr); }
	.tpm-purpose-grid { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
}

@media (max-width: 782px) {
	.tpm-page-hero-inner {
		display: flex;
		flex-direction: column;
		min-height: 0;
	}
	.tpm-page-hero-image-wrap {
		order: 1;
		min-height: 34vh;
		clip-path: none;
		-webkit-clip-path: none;
	}
	.tpm-page-hero-image-wrap::after { display: none; }
	.tpm-page-hero-content { order: 2; padding: 2.25rem 1.5rem 2.5rem; }
	.tpm-page-hero-heading { font-size: clamp(1.75rem, 8vw, 2.5rem); }

	.tpm-split-inner {
		display: flex;
		flex-direction: column;
		min-height: 0;
	}
	.tpm-split-image-wrap { order: 1 !important; min-height: 36vh; }
	.tpm-split-content {
		order: 2 !important;
		clip-path: none !important;
		-webkit-clip-path: none !important;
		margin: 0 !important;
		padding: 2.25rem 1.5rem 2.5rem;
	}
	.tpm-split-content::before { display: none; }

	.tpm-contact-channels { grid-template-columns: 1fr 1fr; }

	.tpm-purpose-grid { grid-template-columns: 1fr; gap: 2rem; max-width: 480px; margin: 0 auto; }
}

@media (max-width: 480px) {
	.tpm-contact-channels { grid-template-columns: 1fr; }
}

/* =========================================================
   Services page — detail grid + partner-advantage section
   ========================================================= */

.tpm-services-detail {
	padding: clamp(3.5rem, 6vw, 6rem) 0;
	background: var(--tpm-stone);
}

.tpm-services-detail-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.tpm-services-detail-header {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 3rem;
}

.tpm-services-detail-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.75rem;
}

.tpm-service-detail-card {
	background: var(--tpm-white);
	border: 1px solid rgba(10, 29, 58, 0.08);
	border-radius: 10px;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
	scroll-margin-top: 110px;
}

.tpm-service-detail-icon { color: var(--tpm-teal); }

.tpm-service-detail-title {
	font-family: var(--wp--preset--font-family--poppins);
	font-weight: 700;
	font-size: 1.25rem;
	color: var(--tpm-navy);
	margin: 0;
}

.tpm-service-detail-copy {
	font-family: var(--wp--preset--font-family--montserrat);
	font-size: 0.9375rem;
	line-height: 1.6;
	color: var(--tpm-slate);
	margin: 0;
}

.tpm-service-detail-list {
	list-style: none;
	margin: 0.25rem 0 0.5rem;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.tpm-service-detail-list li {
	font-family: var(--wp--preset--font-family--montserrat);
	font-size: 0.875rem;
	color: var(--tpm-navy);
	padding-left: 1.5rem;
	position: relative;
}

.tpm-service-detail-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.45em;
	width: 9px;
	height: 5px;
	border-left: 2px solid var(--tpm-teal);
	border-bottom: 2px solid var(--tpm-teal);
	transform: rotate(-45deg);
}

.tpm-service-detail-cta {
	align-self: flex-start;
	margin-top: 0.5rem;
	padding: 0.7rem 1.4rem;
	font-size: 0.875rem;
}

@media (min-width: 1081px) {
	/* Center a lone final card (e.g. Corporate Support as the 7th item)
	   across the full row instead of leaving it stranded on the left. */
	.tpm-services-detail-grid > .tpm-service-detail-card:last-child:nth-child(odd) {
		grid-column: 1 / -1;
		max-width: calc((100% - 1.75rem) / 2);
		margin: 0 auto;
	}
}

@media (max-width: 1080px) {
	.tpm-services-detail-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

@media (max-width: 700px) {
	.tpm-services-detail-grid { grid-template-columns: 1fr; }
	.tpm-service-detail-card { padding: 1.5rem; }
}

/* =========================================================
   Contact page — hero copy reuse, contact form
   ========================================================= */

.tpm-contact-form-section {
	padding: clamp(3.5rem, 6vw, 6rem) 0;
	background: var(--tpm-white);
	border-top: 1px solid rgba(10, 29, 58, 0.08);
}

.tpm-contact-form-inner {
	max-width: 680px;
	margin: 0 auto;
	padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.tpm-contact-form-header {
	text-align: center;
	margin-bottom: 2.5rem;
}

.tpm-contact-form-intro {
	font-family: var(--wp--preset--font-family--montserrat);
	font-size: 0.9375rem;
	color: var(--tpm-slate);
	margin: 0.75rem 0 0;
}

.tpm-contact-form .wpcf7-form,
.tpm-contact-form.wpcf7-form {
	display: block;
}

.tpm-contact-form p {
	margin: 0 0 1.25rem;
}

.tpm-contact-form label {
	display: block;
	font-family: var(--wp--preset--font-family--poppins);
	font-weight: 600;
	font-size: 0.875rem;
	color: var(--tpm-navy);
	margin-bottom: 0.45rem;
}

.tpm-contact-form .wpcf7-form-control-wrap {
	display: block;
}

.tpm-contact-form .wpcf7-form-control {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 1px solid rgba(10, 29, 58, 0.15);
	border-radius: 8px;
	background: var(--tpm-white);
	color: var(--tpm-navy);
	font-family: var(--wp--preset--font-family--montserrat);
	font-size: 0.9375rem;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.tpm-contact-form .wpcf7-form-control:focus {
	outline: none;
	border-color: var(--tpm-teal);
	box-shadow: 0 0 0 3px rgba(13, 191, 149, 0.15);
}

.tpm-contact-form textarea.wpcf7-form-control {
	resize: vertical;
	min-height: 140px;
}

.tpm-contact-form select.wpcf7-form-control {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230A1D3A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	padding-right: 2.5rem;
	cursor: pointer;
}

.tpm-contact-form .wpcf7-submit {
	margin-top: 0.5rem;
}

/* .wpcf7-form-control's generic input styling (full-width, 8px radius,
   1px border) otherwise flattens the submit button into a plain text-input
   look. Reassert the pill .tpm-btn appearance with a compound selector so
   it wins regardless of source order. */
.wpcf7-form-control.tpm-btn {
	width: auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 1rem 1.85rem;
	border-radius: 999px;
	cursor: pointer;
}
.wpcf7-form-control.tpm-btn-secondary {
	background-color: transparent;
	border: 2px solid var(--tpm-navy);
	color: var(--tpm-navy);
}
.wpcf7-form-control.tpm-btn-secondary:hover {
	background-color: var(--tpm-navy);
	color: var(--tpm-white);
}

.tpm-local-context .tpm-simple-cta-inner {
	max-width: 720px;
}

@media (max-width: 480px) {
	.tpm-contact-form-inner { padding: 0 1.25rem; }
}

/* =========================================================
   Insights — listing (Query Loop), empty state, single article
   ========================================================= */

.tpm-insights-listing {
	padding: clamp(3.5rem, 6vw, 6rem) 0;
	background: var(--tpm-white);
}

.tpm-insights-listing-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.tpm-archive-header {
	padding: clamp(2.5rem, 5vw, 3.5rem) 0 0;
	background: var(--tpm-white);
}
.tpm-archive-header-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 clamp(1.5rem, 4vw, 3rem);
}

/* Query Loop grid (core/post-template renders as a <ul>) */
.tpm-insights-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.tpm-insight-card {
	display: flex;
	flex-direction: column;
	background: var(--tpm-white);
	border: 1px solid rgba(10, 29, 58, 0.08);
	border-radius: 10px;
	overflow: hidden;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.tpm-insight-card:hover {
	border-color: var(--tpm-teal);
	box-shadow: 0 8px 24px rgba(10, 29, 58, 0.08);
}

.tpm-insight-card-image {
	display: block;
	aspect-ratio: 16 / 10;
	background: var(--tpm-stone);
	overflow: hidden;
	margin: 0;
}
.tpm-insight-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.tpm-insight-card-body {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	padding: 1.5rem;
}

.tpm-insight-card-date {
	font-family: var(--wp--preset--font-family--poppins);
	font-weight: 600;
	font-size: 0.75rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--tpm-teal-text);
}

.tpm-insight-card-title {
	font-family: var(--wp--preset--font-family--poppins);
	font-weight: 700;
	font-size: 1.15rem;
	line-height: 1.3;
	margin: 0;
}
.tpm-insight-card-title a {
	color: var(--tpm-navy);
	text-decoration: none;
}
.tpm-insight-card-title a:hover { color: var(--tpm-teal-text); }

.tpm-insight-card-excerpt {
	font-family: var(--wp--preset--font-family--montserrat);
	font-size: 0.9375rem;
	line-height: 1.6;
	color: var(--tpm-slate);
	margin: 0;
}
.tpm-insight-card-excerpt p { margin: 0; }

.tpm-insight-card-readmore {
	margin-top: 0.5rem;
}
.tpm-insight-card-readmore a,
a.tpm-insight-card-readmore {
	font-family: var(--wp--preset--font-family--poppins);
	font-weight: 600;
	font-size: 0.875rem;
	color: var(--tpm-teal-text);
	text-decoration: none;
}
.tpm-insight-card-readmore a:hover,
a.tpm-insight-card-readmore:hover { text-decoration: underline; }

/* Empty / coming-soon state */
.tpm-insights-empty {
	grid-column: 1 / -1;
	text-align: center;
	max-width: 560px;
	margin: 0 auto;
	padding: clamp(3rem, 6vw, 4.5rem) clamp(1.5rem, 4vw, 2.5rem);
	border: 1px dashed rgba(10, 29, 58, 0.18);
	border-radius: 12px;
}

.tpm-insights-empty-heading {
	font-family: var(--wp--preset--font-family--poppins);
	font-weight: 700;
	font-size: clamp(1.4rem, 2.4vw, 1.75rem);
	color: var(--tpm-navy);
	margin: 0 0 0.75rem;
}

.tpm-insights-empty-copy {
	font-family: var(--wp--preset--font-family--montserrat);
	font-size: 0.9375rem;
	line-height: 1.6;
	color: var(--tpm-slate);
	margin: 0 0 1.75rem;
}

/* -----------------------------------------------------------
   Single article
   ----------------------------------------------------------- */

.tpm-article-hero {
	padding: clamp(2.5rem, 5vw, 3.5rem) 0 clamp(2rem, 4vw, 2.5rem);
	background: var(--tpm-stone);
}
.tpm-article-hero-inner {
	max-width: 760px;
	margin: 0 auto;
	padding: 0 clamp(1.5rem, 4vw, 3rem);
}
.tpm-article-title {
	font-family: var(--wp--preset--font-family--poppins);
	font-weight: 700;
	font-size: clamp(1.75rem, 4vw, 2.75rem);
	line-height: 1.15;
	color: var(--tpm-navy);
	margin: 0.5rem 0;
}
.tpm-article-date {
	display: block;
	font-family: var(--wp--preset--font-family--montserrat);
	font-size: 0.875rem;
	color: var(--tpm-slate);
}

.tpm-article-featured-image {
	margin: 0;
}
.tpm-article-featured-image img {
	width: 100%;
	max-height: 520px;
	object-fit: cover;
	display: block;
}

.tpm-article-content {
	padding: clamp(2.5rem, 5vw, 4rem) 0;
}
.tpm-article-content-inner {
	max-width: 720px;
	margin: 0 auto;
	padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.tpm-article-content-inner p {
	font-family: var(--wp--preset--font-family--montserrat);
	font-size: 1.0625rem;
	line-height: 1.75;
	color: var(--tpm-navy);
	margin: 0 0 1.25rem;
}
.tpm-article-content-inner h2 {
	font-family: var(--wp--preset--font-family--poppins);
	font-weight: 700;
	font-size: 1.5rem;
	color: var(--tpm-navy);
	margin: 2rem 0 1rem;
}
.tpm-article-content-inner h3 {
	font-family: var(--wp--preset--font-family--poppins);
	font-weight: 600;
	font-size: 1.25rem;
	color: var(--tpm-navy);
	margin: 1.5rem 0 0.75rem;
}
.tpm-article-content-inner a {
	color: var(--tpm-teal-text);
	text-decoration: underline;
}
.tpm-article-content-inner img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	margin: 1.5rem 0;
}
.tpm-article-content-inner ul,
.tpm-article-content-inner ol {
	font-family: var(--wp--preset--font-family--montserrat);
	color: var(--tpm-navy);
	padding-left: 1.25rem;
	margin: 0 0 1.25rem;
	line-height: 1.7;
}
.tpm-article-content-inner blockquote {
	border-left: 3px solid var(--tpm-teal);
	padding-left: 1rem;
	font-style: italic;
	color: var(--tpm-navy);
	margin: 1.5rem 0;
}

@media (max-width: 1080px) {
	.tpm-insights-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
	.tpm-insights-grid { grid-template-columns: 1fr; }
}
