/*
Theme Name: INMM
Author: INMM
Description: Базовый каркас классической темы WordPress для inmm.ru.
Version: 0.1.0
Text Domain: inmm
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

/* Fonts */
@font-face {
	font-family: "Golos UI";
	src:
		url("assets/fonts/golos-ui_regular.woff2") format("woff2"),
		url("assets/fonts/golos-ui_regular.woff") format("woff");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Golos UI";
	src:
		url("assets/fonts/golos-ui_medium.woff2") format("woff2"),
		url("assets/fonts/golos-ui_medium.woff") format("woff");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Golos UI";
	src:
		url("assets/fonts/golos-ui_bold.woff2") format("woff2"),
		url("assets/fonts/golos-ui_bold.woff") format("woff");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Golos Text";
	src:
		url("assets/fonts/golos-text_regular.woff2") format("woff2"),
		url("assets/fonts/golos-text_regular.woff") format("woff");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

/* Typography tokens */
:root {
	/* Colors */
	--color-text: #000000;
	--color-muted: #76767a;
	--color-link: #1f4e79;
	--color-accent: #059669;
	--color-subtle: #e5e5eb;
	--color-subtle-soft: #f4f5f8;
	--color-surface: #ffffff;
	--color-surface-2: #2b2d3b;

	--font-ui: "Golos UI", system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
	--font-text: "Golos Text", "Golos UI", system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;

	--fw-regular: 400;
	--fw-medium: 500;
	--fw-bold: 700;

	--fs-h1: 56px;
	--lh-h1: 64px;

	--fs-h2: 30px;
	--lh-h2: 36px;

	--fs-h3: 22px;
	--lh-h3: 28px;

	--fs-h4: 18px;
	--lh-h4: 24px;

	--fs-body: 18px;
	--lh-body: 28px;

	--fs-nav: 16px;
	--lh-nav: 24px;

	--fs-small: 14px;
	--lh-small: 16px;

	/* Layout tokens (Figma grid) */
	--container-max: 1024px;
	--container-wide-max: 1280px;
	--container-padding: 16px;

	--grid-columns: 6;
	--grid-gap: 32px;

	--space-1: 8px;
	--space-2: 16px;
	--space-3: 24px;
	--space-4: 32px;
	--space-5: 48px;
	--space-6: 64px;
	--space-xxl: 200px;
	--section-space: var(--space-6);
	--admin-bar-offset: 0px;
}

body.admin-bar {
	--admin-bar-offset: 32px;
}

/* Base reset */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	overflow-x: hidden;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	padding: 0;
	color: var(--color-text);
	background: var(--color-surface);
	font-family: var(--font-text);
	font-size: var(--fs-body);
	line-height: var(--lh-body);
	overflow-x: hidden;
}

body.has-scrolled-header-offset {
	padding-top: var(--header-layout-offset, 88px);
}

body.maintenance-page {
	width: 100%;
	min-height: 100vh;
	background: #111923;
	color: #ffffff;
	overflow: hidden;
}

img,
video {
	max-width: 100%;
	height: auto;
}

a {
	color: var(--color-link);
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

a:hover,
a:focus-visible {
	text-decoration-thickness: 2px;
}

button,
input,
select,
textarea {
	font: inherit;
}

.maintenance-screen {
	position: relative;
	isolation: isolate;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 100vh;
	min-height: 100dvh;
	padding: 48px 16px;
	overflow: hidden;
	background:
		radial-gradient(ellipse at 50% 42%, transparent 0 24%, rgba(7, 12, 18, 0.08) 58%, rgba(7, 12, 18, 0.3) 100%),
		linear-gradient(135deg, #173b59 0%, #0c4f51 52%, #07533f 100%);
}

.maintenance-screen__shadows {
	position: absolute;
	inset: 0;
	z-index: -1;
	overflow: hidden;
	pointer-events: none;
}

.maintenance-screen__shadow {
	position: absolute;
	display: block;
	border-radius: 999px;
	filter: blur(58px);
	opacity: 0.88;
}

.maintenance-screen__shadow--blue {
	top: -10%;
	left: -14%;
	width: 44vw;
	height: 48%;
	background: rgba(7, 22, 38, 0.82);
	animation: maintenance-shadow-blue 12s ease-in-out infinite alternate;
}

.maintenance-screen__shadow--green {
	top: -20%;
	right: -10%;
	width: 38vw;
	height: 46%;
	background: rgba(22, 174, 124, 0.62);
	animation: maintenance-shadow-green 15s ease-in-out infinite alternate-reverse;
}

.maintenance-screen__shadow--teal {
	right: -8%;
	bottom: -20%;
	width: 40vw;
	height: 48%;
	background: rgba(25, 135, 142, 0.68);
	animation: maintenance-shadow-teal 11s ease-in-out infinite alternate;
}

.maintenance-screen__shadow--deep {
	bottom: -14%;
	left: -10%;
	width: 42vw;
	height: 46%;
	background: rgba(5, 15, 29, 0.78);
	animation: maintenance-shadow-deep 16s ease-in-out infinite alternate-reverse;
}

.maintenance-screen__content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
	width: min(100%, 560px);
	text-align: center;
}

.maintenance-screen__logo {
	display: block;
	width: min(280px, 80vw);
	height: auto;
}

.maintenance-screen__text {
	margin: 0;
	max-width: 440px;
	color: rgba(255, 255, 255, 0.88);
	font-family: var(--font-ui);
	font-size: 20px;
	line-height: 28px;
}

@keyframes maintenance-shadow-blue {
	0% {
		transform: translate3d(-18%, -8%, 0) scale(0.84) rotate(-12deg);
	}

	45% {
		transform: translate3d(62%, 64%, 0) scale(1.18) rotate(8deg);
	}

	100% {
		transform: translate3d(118%, 16%, 0) scale(0.94) rotate(18deg);
	}
}

@keyframes maintenance-shadow-green {
	0% {
		transform: translate3d(20%, -12%, 0) scale(0.88) rotate(12deg);
	}

	52% {
		transform: translate3d(-72%, 76%, 0) scale(1.22) rotate(-10deg);
	}

	100% {
		transform: translate3d(-132%, 18%, 0) scale(0.96) rotate(-18deg);
	}
}

@keyframes maintenance-shadow-teal {
	0% {
		transform: translate3d(18%, 20%, 0) scale(0.84) rotate(-14deg);
	}

	50% {
		transform: translate3d(-74%, -78%, 0) scale(1.2) rotate(8deg);
	}

	100% {
		transform: translate3d(-126%, -22%, 0) scale(0.92) rotate(18deg);
	}
}

@keyframes maintenance-shadow-deep {
	0% {
		transform: translate3d(-20%, 20%, 0) scale(0.92) rotate(12deg);
	}

	48% {
		transform: translate3d(70%, -84%, 0) scale(1.24) rotate(-10deg);
	}

	100% {
		transform: translate3d(128%, -26%, 0) scale(0.9) rotate(-18deg);
	}
}

@media (prefers-reduced-motion: reduce) {
	.maintenance-screen__shadow {
		animation: none;
	}
}

@media (max-width: 640px) {
	.maintenance-screen {
		padding: 40px 16px;
	}

	.maintenance-screen__content {
		gap: 24px;
	}

	.maintenance-screen__text {
		font-size: 18px;
		line-height: 26px;
	}
}

/* Layout */
.page {
	min-height: 100%;
}

.container,
.section-inner {
	width: 100%;
	max-width: var(--container-max);
	margin-inline: auto;
	padding-inline: var(--container-padding);
}

.container-wide {
	width: 100%;
	max-width: var(--container-wide-max);
	margin-inline: auto;
	padding-inline: var(--container-padding);
}

.full-width {
	width: 100%;
}

.section {
	padding-block: var(--section-space);
}

.section--s {
	--section-space: var(--space-4);
}

.section--m {
	--section-space: var(--space-5);
}

.section--xl {
	--section-space: var(--space-xxl);
}

.measure {
	max-width: 65ch;
}

.grid {
	display: grid;
	gap: var(--gap, var(--grid-gap));
}

.grid > * {
	min-width: 0;
}

.grid--6 {
	grid-template-columns: repeat(var(--grid-columns), minmax(0, 1fr));
}

.grid--vcenter {
	align-items: center;
}

.col-1 {
	grid-column: span 1;
}

.col-2 {
	grid-column: span 2;
}

.col-3 {
	grid-column: span 3;
}

.col-4 {
	grid-column: span 4;
}

.col-5 {
	grid-column: span 5;
}

.col-6 {
	grid-column: span 6;
}

.gap-s {
	--gap: var(--space-2);
}

.gap-m {
	--gap: var(--space-3);
}

.gap-l {
	--gap: var(--space-4);
}

.row {
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap, var(--grid-gap));
}

.row > * {
	min-width: 0;
}

.row--between {
	justify-content: space-between;
	align-items: center;
}

.row--center {
	justify-content: center;
	align-items: center;
}

.row--vcenter {
	align-items: center;
}

.site-footer {
	position: relative;
	overflow: hidden;
	min-height: 800px;
	padding: 100px 0 32px;
	background: #2b2d3b;
	color: #ffffff;
}

.site-footer__inner {
	position: relative;
	width: 100%;
	max-width: var(--container-max);
	margin: 0 auto;
}

.site-footer__top {
	display: grid;
	grid-template-columns: 320px 320px 320px;
	column-gap: 32px;
	align-items: start;
}

.site-footer__brand p,
.site-footer__subscribe p {
	margin: 0;
	font-family: var(--font-ui);
	font-weight: var(--fw-regular);
	font-size: 16px;
	line-height: 18px;
	color: #adb1b8;
}

.site-footer__brand {
	position: relative;
	z-index: 1;
}

.site-footer__logo {
	display: inline-flex;
	margin-bottom: 43px;
	text-decoration: none;
}

.site-footer__logo img {
	display: block;
	width: 220px;
	height: 82px;
}

.site-footer__brand-text {
	margin-bottom: 16px !important;
	font-weight: var(--fw-medium) !important;
	color: #ffffff !important;
}

.site-footer__contact-block {
	margin-bottom: 16px;
}

.site-footer__contact-block:last-child {
	margin-bottom: 0;
}

.site-footer__contact-block h3,
.site-footer__nav-group h3,
.site-footer__subscribe h3 {
	margin: 0 0 11px;
	font-family: var(--font-ui);
	font-weight: var(--fw-medium);
	font-size: 16px;
	line-height: 18px;
	color: #ffffff;
}

.site-footer__contact-block p + p {
	margin-top: 4px;
}

.site-footer__schedule {
	display: grid;
	grid-template-columns: max-content 100px max-content;
	column-gap: 6px;
	row-gap: 4px;
	width: max-content;
}

.site-footer__schedule-row {
	display: contents;
}

.site-footer__schedule-leader {
	align-self: end;
	margin-bottom: 3px;
	border-bottom: 2px dotted currentColor;
	opacity: 0.8;
}

.site-footer__contact-block a,
.site-footer__nav a,
.site-footer__copy,
.site-footer__policy,
.site-footer__accessibility {
	color: #adb1b8;
	text-decoration: none;
}

.site-footer__contact-block a:hover,
.site-footer__contact-block a:focus-visible,
.site-footer__nav a:hover,
.site-footer__nav a:focus-visible,
.site-footer__policy:hover,
.site-footer__policy:focus-visible,
.site-footer__accessibility:hover,
.site-footer__accessibility:focus-visible {
	color: #ffffff;
}

.site-footer__nav {
	position: relative;
	z-index: 1;
	display: grid;
	row-gap: 8px;
}

.site-footer__nav-group {
	margin-bottom: 0;
}

.site-footer__nav-group h3 {
	margin-bottom: 8px;
}

.site-footer__nav-group h3 a,
.site-footer__nav-group a {
	font-family: var(--font-ui);
	font-size: 16px;
	line-height: 18px;
}

.site-footer__nav-group h3 a {
	color: #ffffff;
	font-weight: var(--fw-medium);
}

.site-footer__nav-link--accent {
	color: #ffffff !important;
	font-weight: var(--fw-medium);
}

.site-footer__nav-group ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 8px;
}

.site-footer__nav-group li + li {
	margin-top: 0;
}

.site-footer__subscribe {
	position: relative;
	z-index: 1;
	padding-top: 2px;
	--subscribe-description-width: 320px;
	--subscribe-line-width: 320px;
}

.site-footer__subscribe p {
	margin-bottom: 19px;
	width: min(100%, var(--subscribe-description-width));
}

.site-footer__form {
	display: flex;
	align-items: center;
	gap: 0;
	margin: 0 0 12px;
	width: min(100%, var(--subscribe-line-width));
}

.site-footer__form input {
	flex: 1 1 auto;
	min-width: 0;
	width: auto;
	height: 41px;
	border: 0;
	border-radius: 4px 0 0 4px;
	padding: 0 14px;
	background: #ffffff;
	color: #2b2d3b;
	font-family: var(--font-ui);
	font-size: 16px;
	line-height: 18px;
}

.site-footer__form input::placeholder {
	color: #7f8492;
}

.site-footer__form button {
	height: 41px;
	padding: 0 12px;
	border: 0;
	border-radius: 0 4px 4px 0;
	background: #02b481;
	color: #ffffff;
	font-family: var(--font-ui);
	font-weight: var(--fw-medium);
	font-size: 16px;
	line-height: 18px;
	cursor: pointer;
	opacity: 1;
	transition: background-color 0.24s ease, color 0.24s ease, opacity 0.24s ease;
}

.site-footer__form button:not(:disabled):hover,
.site-footer__form button:not(:disabled):focus-visible {
	background: #01a776;
}

.site-footer__form button:disabled {
	background: #33be98;
	color: rgba(255, 255, 255, 0.92);
	cursor: not-allowed;
	opacity: 0.9;
}

.site-footer__form-error {
	margin: 0 0 12px;
	width: min(100%, var(--subscribe-line-width));
	font-family: var(--font-ui);
	font-size: 14px;
	line-height: 16px;
	color: #ffd0d0;
}

.site-footer__agree {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	width: min(100%, var(--subscribe-line-width));
}

.site-footer__agree input[type="checkbox"] {
	-webkit-appearance: none;
	appearance: none;
	flex: 0 0 18px;
	width: 18px;
	height: 18px;
	min-width: 18px;
	min-height: 18px;
	max-width: 18px;
	max-height: 18px;
	margin: 0;
	border: 1px solid #adb1b8;
	border-radius: 4px;
	background: #ffffff;
	cursor: pointer;
	position: relative;
}

.site-footer__agree input[type="checkbox"]:checked {
	background: #02b481;
	border-color: #02b481;
}

.site-footer__agree input[type="checkbox"]:checked::after {
	content: "";
	position: absolute;
	left: 6px;
	top: 2px;
	width: 4px;
	height: 9px;
	border: solid #ffffff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.site-footer__agree span {
	display: block;
	font-family: var(--font-ui);
	font-size: 16px;
	line-height: 18px;
	color: #ffffff;
}

.site-footer__agree a {
	color: #ffffff;
	text-decoration: underline;
	text-decoration-color: rgba(255, 255, 255, 0.2);
}

.site-footer__agree a:hover,
.site-footer__agree a:focus-visible {
	color: #ffffff;
}

.site-footer__bottom {
	position: relative;
	z-index: 1;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px 32px;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-top: 74px;
	padding-left: var(--space-4);
	padding-right: var(--space-4);
	padding-top: 24px;
	border-top: 1px solid #3c4054;
}

.site-footer__bottom-left,
.site-footer__bottom-right {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px 28px;
}

.site-footer__bottom-right {
	margin-left: auto;
}

.site-footer__copy,
.site-footer__policy {
	margin: 0;
	font-family: var(--font-ui);
	font-size: 14px;
	line-height: 16px;
}

.site-footer__accessibility {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-ui);
	font-size: 14px;
	line-height: 16px;
}

.site-footer__accessibility img {
	display: block;
	width: 24px;
	height: 24px;
}

.site-footer__flag {
	display: block;
	margin-top: 24px;
	width: 320px;
	height: 329px;
	max-width: 100%;
}

.cookie-banner {
	position: fixed;
	left: 50%;
	bottom: 20px;
	z-index: 240;
	display: flex;
	align-items: center;
	gap: 16px;
	width: fit-content;
	max-width: calc(100vw - 32px);
	padding: 14px 16px;
	border-radius: 2px;
	background: #2b2d3b;
	color: #ffffff;
	box-shadow: 0 16px 32px rgba(23, 28, 45, 0.28);
	transform: translateX(-50%);
	transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
}

.cookie-banner.is-hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translate(-50%, 12px);
}

.cookie-banner__text {
	margin: 0;
	font-family: var(--font-ui);
	font-size: 16px;
	line-height: 20px;
	white-space: nowrap;
}

.cookie-banner__text a {
	color: #ffffff;
	text-decoration-color: rgba(255, 255, 255, 0.35);
}

.cookie-banner__text a:hover,
.cookie-banner__text a:focus-visible {
	color: #ffffff;
	text-decoration-color: rgba(255, 255, 255, 0.75);
}

.cookie-banner__button {
	flex: 0 0 auto;
	padding: 8px 18px;
	border: 0;
	border-radius: 2px;
	background: var(--color-accent);
	color: #ffffff;
	font-family: var(--font-ui);
	font-weight: var(--fw-regular);
	font-size: 16px;
	line-height: 20px;
	cursor: pointer;
}

.back-to-top {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 230;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: var(--color-accent);
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(8px);
	transition:
		opacity 180ms ease,
		visibility 180ms ease,
		transform 180ms ease,
		color 180ms ease;
}

.back-to-top::before {
	content: "";
	display: block;
	width: 48px;
	height: 48px;
	background-color: currentColor;
	-webkit-mask: url("assets/images/arrow-right-solid.svg") no-repeat center / contain;
	mask: url("assets/images/arrow-right-solid.svg") no-repeat center / contain;
	transform: rotate(-90deg);
}

.back-to-top.is-visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
	background: transparent;
	color: var(--color-accent);
}

.back-to-top.is-on-dark {
	color: #ffffff;
}

.back-to-top.is-on-dark:hover,
.back-to-top.is-on-dark:focus-visible {
	color: #ffffff;
}

.back-to-top:focus-visible {
	outline: 2px solid rgba(5, 150, 105, 0.35);
	outline-offset: 2px;
}

.front-hero__button:hover,
.front-hero__button:focus-visible,
.cookie-banner__button:hover,
.cookie-banner__button:focus-visible {
	background: var(--color-accent);
	filter: brightness(0.95);
}

@media (max-width: 640px) {
	.cookie-banner {
		padding-inline: 12px;
	}

	.back-to-top {
		right: 16px;
		bottom: 16px;
		width: 48px;
		height: 48px;
	}

	.back-to-top::before {
		width: 48px;
		height: 48px;
	}
}

.site-header {
	position: relative;
	padding: 16px 0;
	background: var(--color-surface);
	transition:
		background-color 320ms ease,
		color 320ms ease,
		box-shadow 320ms ease,
		padding 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header__inner {
	width: 100%;
	display: flex;
	align-items: flex-start;
	gap: 24px;
	padding-inline: var(--space-4);
}

.site-header__brand {
	display: flex;
	align-items: center;
	gap: 0;
	flex: none;
}

.site-header__logo {
	display: inline-flex;
	position: relative;
	align-items: flex-start;
	flex: 0 0 auto;
	width: 150px;
	height: 56px;
	line-height: 0;
	overflow: hidden;
	text-decoration: none;
	transition:
		width 360ms cubic-bezier(0.22, 1, 0.36, 1),
		height 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header__logo-image {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: left center;
	transform-origin: left center;
	transition:
		opacity 240ms ease,
		transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
		filter 320ms ease;
}

.site-header__logo-image--full {
	opacity: 1;
	transform: scale(1);
}

.site-header__logo-image--compact {
	opacity: 0;
	transform: scale(0.96);
}

.site-header__nav {
	flex: 1;
}

.site-header__menu {
	justify-content: center;
	gap: 24px;
	margin: 0;
}

.site-header__menu a {
	padding: 0;
	border-radius: 0;
	text-decoration: none;
	color: inherit;
	transition: color 180ms ease;
}

.site-header__menu a:hover,
.site-header__menu a:focus-visible {
	background: transparent;
	color: var(--color-accent);
}

.home .site-header:not(.is-scrolled) .site-header__menu > li > a:hover,
.home .site-header:not(.is-scrolled) .site-header__menu > li > a:focus-visible {
	color: rgba(255, 255, 255, 0.82);
}

body:not(.home) .site-header:not(.is-scrolled) .site-header__menu > li > a:hover,
body:not(.home) .site-header:not(.is-scrolled) .site-header__menu > li > a:focus-visible {
	background: transparent;
	color: rgba(0, 0, 0, 0.82);
}

.site-header__menu .current-menu-item > a,
.site-header__menu .current_page_item > a {
	background: transparent;
	color: var(--color-accent);
}

.site-header__menu > li.menu-item-has-children > a::after {
	content: "";
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-left: 6px;
	vertical-align: -2px;
	background-color: currentColor;
	-webkit-mask: url("assets/images/icon-arrow.svg") no-repeat center / contain;
	mask: url("assets/images/icon-arrow.svg") no-repeat center / contain;
}

.site-header__menu li {
	position: relative;
}

.site-header__menu > li.menu-item-has-children {
	padding-bottom: 0;
	margin-bottom: 0;
}

.site-header__menu > li.menu-item-has-children::after {
	content: "";
	position: absolute;
	top: 100%;
	left: -12px;
	width: calc(100% + 24px);
	height: 14px;
}

.site-header__menu .sub-menu {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	z-index: 30;
	display: none;
	min-width: 260px;
	margin: 0;
	padding: 8px;
	list-style: none;
	border: 1px solid #d6d9e0;
	border-radius: 12px;
	background: #ffffff;
	box-shadow: 0 16px 36px rgba(23, 28, 45, 0.16);
}

.site-header__menu .sub-menu .sub-menu {
	top: -8px;
	left: calc(100% - 4px);
}

.site-header__menu .sub-menu > li.menu-item-has-children::after {
	content: "";
	position: absolute;
	top: 0;
	left: 100%;
	width: 14px;
	height: 100%;
}

.site-header__menu .sub-menu a {
	display: block;
	padding: 10px 12px;
	border-radius: 8px;
	color: #1d1d1b;
	font-family: var(--font-ui);
	font-size: 16px;
	line-height: 20px;
	text-decoration: none;
	white-space: nowrap;
}

.site-header__menu .sub-menu > li.menu-item-has-children > a {
	position: relative;
	padding-right: 30px;
}

.site-header__menu .sub-menu > li.menu-item-has-children > a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 10px;
	width: 14px;
	height: 14px;
	background-color: currentColor;
	-webkit-mask: url("assets/images/icon-arrow.svg") no-repeat center / contain;
	mask: url("assets/images/icon-arrow.svg") no-repeat center / contain;
	transform: translateY(-50%) rotate(-90deg);
	opacity: 0.8;
}

.site-header__menu .sub-menu a:hover,
.site-header__menu .sub-menu a:focus-visible {
	background: var(--color-subtle-soft);
	color: var(--color-accent);
	text-decoration: none;
}

.site-header__menu .sub-menu .current-menu-item > a,
.site-header__menu .sub-menu .current_page_item > a {
	background: var(--color-subtle-soft);
	color: var(--color-accent);
}

.site-header__menu li:hover > .sub-menu,
.site-header__menu li:focus-within > .sub-menu {
	display: block;
}

.site-header__menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	background: transparent;
	color: currentColor;
	cursor: pointer;
}

.site-header__menu-toggle:focus-visible {
	outline: 2px solid rgba(5, 150, 105, 0.35);
	outline-offset: 2px;
}

.site-header__menu-toggle-icon,
.site-header__menu-toggle-icon::before,
.site-header__menu-toggle-icon::after {
	display: block;
	width: 22px;
	height: 2px;
	border-radius: 2px;
	background: currentColor;
	transition: transform 220ms ease, opacity 220ms ease, background-color 220ms ease;
}

.site-header__menu-toggle-icon {
	position: relative;
}

.site-header__menu-toggle-icon::before,
.site-header__menu-toggle-icon::after {
	content: "";
	position: absolute;
	left: 0;
}

.site-header__menu-toggle-icon::before {
	top: -7px;
}

.site-header__menu-toggle-icon::after {
	top: 7px;
}

.site-header.is-mobile-menu-open .site-header__menu-toggle-icon {
	background-color: transparent;
}

.site-header.is-mobile-menu-open .site-header__menu-toggle-icon::before {
	transform: translateY(7px) rotate(45deg);
}

.site-header.is-mobile-menu-open .site-header__menu-toggle-icon::after {
	transform: translateY(-7px) rotate(-45deg);
}

.site-header__submenu-toggle {
	display: none;
}

.site-header__tools {
	display: flex;
	align-items: center;
	gap: 16px;
	flex: none;
}

.site-header__tool {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	padding: 0;
	border: 0;
	background: transparent;
	text-decoration: none;
}

.site-header__tool img {
	display: block;
	width: 24px;
	height: 24px;
	transition: filter 260ms ease;
}

.site-header.is-scrolled {
	position: fixed;
	top: var(--admin-bar-offset);
	left: 0;
	right: 0;
	z-index: 120;
	padding: 10px 0;
	background: #2b2d3b;
	color: #ffffff;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
}

.site-header.is-scrolled .site-header__inner {
	align-items: center;
}

.site-header.is-scrolled .site-header__logo {
	width: 119px;
	height: 36px;
}

.site-header.is-scrolled .site-header__logo-image--full {
	opacity: 0;
	transform: scale(0.96);
}

.site-header.is-scrolled .site-header__logo-image--compact {
	opacity: 1;
	transform: scale(1);
}

.site-header.is-scrolled .site-header__menu a:hover,
.site-header.is-scrolled .site-header__menu a:focus-visible {
	color: var(--color-accent);
}

body:not(.home) .site-header.is-scrolled .site-header__tool img {
	filter: brightness(0) invert(1);
}

body:not(.home) .site-header.is-scrolled .site-header__logo-image--compact {
	filter: brightness(0) invert(1);
}

body:not(.home) .site-header.is-scrolled .site-header__menu .sub-menu {
	background: #ffffff;
}

body:not(.home) .site-header.is-scrolled .site-header__menu .sub-menu a {
	color: #1d1d1b;
}

@media (max-width: 930px) {
	body.has-open-mobile-menu {
		overflow: hidden;
	}

	body:not(.home) .site-header {
		position: fixed;
		top: var(--admin-bar-offset);
		left: 0;
		right: 0;
		z-index: 120;
		padding: 10px 0;
		background: transparent;
		color: #1d1d1b;
		box-shadow: none;
	}

	body:not(.home) .site-header.is-scrolled {
		background: #2b2d3b;
		color: #ffffff;
		box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
	}

	body:not(.home).accessibility-panel-open .site-header {
		top: calc(var(--admin-bar-offset) + var(--accessibility-panel-height, 0px));
	}

	body:not(.home) .site-main {
		padding-top: calc(var(--header-scroll-offset, 64px) + 24px);
	}

	.site-header__inner {
		display: grid;
		grid-template-columns: auto 1fr auto;
		align-items: start;
		column-gap: 12px;
		row-gap: 0;
		position: relative;
		padding-inline: 16px;
	}

	.site-header.is-scrolled .site-header__inner {
		align-items: start;
	}

	.site-header__brand {
		align-self: start;
	}

	.site-header__logo {
		width: 119px;
		height: 36px;
	}

	.site-header__logo-image--full {
		opacity: 0;
		transform: scale(0.96);
	}

	.site-header__logo-image--compact {
		opacity: 1;
		transform: scale(1);
	}

	.site-header__menu-toggle {
		display: inline-flex;
		justify-self: center;
		align-self: start;
		width: 24px;
		height: 24px;
	}

	.site-header__menu-toggle:hover,
	.site-header__menu-toggle:focus-visible {
		background: transparent;
		color: var(--color-accent);
	}

	.site-header__tools {
		gap: 12px;
		justify-self: end;
		align-self: start;
	}

	.site-header__nav {
		display: none;
		position: fixed;
		top: calc(var(--admin-bar-offset) + var(--header-scroll-offset, 64px));
		left: 0;
		right: 0;
		bottom: 0;
		width: 100%;
		z-index: 140;
		padding: 8px 16px 0;
		pointer-events: none;
	}

	body.accessibility-panel-open .site-header__nav {
		top: calc(var(--admin-bar-offset) + var(--accessibility-panel-height, 0px) + var(--header-scroll-offset, 64px));
	}

	.site-header.is-mobile-menu-open .site-header__nav {
		display: block;
	}

	.site-header__menu,
	.site-header__menu.menu {
		display: flex;
		flex-direction: column;
		flex-wrap: nowrap;
		align-items: stretch;
		gap: 0;
		width: min(100%, 360px);
		margin: 0 auto;
		padding: 8px;
		border: 1px solid #d6d9e0;
		border-radius: 20px;
		background: #ffffff;
		color: #1d1d1b;
		box-shadow: 0 18px 42px rgba(23, 28, 45, 0.24);
		max-height: calc(100vh - var(--admin-bar-offset) - var(--header-scroll-offset, 64px) - 16px);
		max-height: calc(100dvh - var(--admin-bar-offset) - var(--header-scroll-offset, 64px) - 16px);
		height: auto;
		overflow-x: hidden;
		overflow-y: auto;
		overscroll-behavior: contain;
		padding-bottom: calc(20px + env(safe-area-inset-bottom, 0px));
		pointer-events: auto;
		-webkit-overflow-scrolling: touch;
	}

	body.accessibility-panel-open .site-header__menu {
		max-height: calc(100vh - var(--admin-bar-offset) - var(--accessibility-panel-height, 0px) - var(--header-scroll-offset, 64px) - 16px);
		max-height: calc(100dvh - var(--admin-bar-offset) - var(--accessibility-panel-height, 0px) - var(--header-scroll-offset, 64px) - 16px);
	}

	.site-header__menu > li {
		position: relative;
		margin: 0;
	}

	.site-header__menu > li.menu-item-has-children::after {
		display: none;
	}

	.site-header__menu > li > a {
		display: flex;
		align-items: center;
		min-height: 44px;
		padding: 12px 16px;
		border-radius: 12px;
		color: #1d1d1b;
		font-weight: var(--fw-medium);
	}

	.site-header__menu > li > a:hover,
	.site-header__menu > li > a:focus-visible {
		background: var(--color-subtle-soft);
		color: var(--color-accent);
		text-decoration: none;
	}

	.home .site-header:not(.is-scrolled) .site-header__menu > li > a:hover,
	.home .site-header:not(.is-scrolled) .site-header__menu > li > a:focus-visible,
	body:not(.home) .site-header:not(.is-scrolled) .site-header__menu > li > a:hover,
	body:not(.home) .site-header:not(.is-scrolled) .site-header__menu > li > a:focus-visible {
		background: var(--color-subtle-soft);
		color: var(--color-accent);
		text-decoration: none;
	}

	.site-header__menu > li.menu-item-has-children > a::after {
		display: none;
	}

	.site-header__submenu-toggle {
		display: none;
	}

	.site-header__submenu-toggle:focus-visible {
		outline: 2px solid rgba(5, 150, 105, 0.45);
		outline-offset: 2px;
	}

	.site-header__submenu-toggle > span[aria-hidden="true"] {
		display: block;
		width: 16px;
		height: 16px;
		background-color: currentColor;
		-webkit-mask: url("assets/images/icon-arrow.svg") no-repeat center / contain;
		mask: url("assets/images/icon-arrow.svg") no-repeat center / contain;
		transition: transform 180ms ease;
	}

	.site-header__menu > li.is-submenu-open > .site-header__submenu-toggle > span[aria-hidden="true"] {
		transform: rotate(180deg);
	}

	.site-header__menu .sub-menu {
		position: static;
		display: block;
		min-width: 0;
		margin: 0 0 8px;
		padding: 0 0 0 12px;
		border: 0;
		border-radius: 0;
		background: transparent;
		box-shadow: none;
	}

	.site-header__menu > li.is-submenu-open > .sub-menu {
		display: block;
	}

	.site-header__menu .sub-menu .sub-menu {
		top: auto;
		left: auto;
		margin: 0 0 8px;
		padding-left: 12px;
	}

	.site-header__menu .sub-menu > li.menu-item-has-children::after,
	.site-header__menu .sub-menu > li.menu-item-has-children > a::after {
		display: none;
	}

	.site-header__menu .sub-menu a {
		display: flex;
		align-items: center;
		min-height: 38px;
		padding: 7px 12px;
		border-radius: 10px;
		color: #4a5060;
		font-size: 15px;
		line-height: 20px;
		white-space: normal;
	}

	.site-header__menu .sub-menu a:hover,
	.site-header__menu .sub-menu a:focus-visible {
		color: var(--color-accent);
		background: var(--color-subtle-soft);
		text-decoration: none;
	}

	.site-header__menu .current-menu-item > a,
	.site-header__menu .current_page_item > a,
	.site-header__menu .current-menu-ancestor > a {
		color: var(--color-accent);
	}

	.site-header__menu .sub-menu .current-menu-item > a,
	.site-header__menu .sub-menu .current_page_item > a {
		color: var(--color-accent);
		background: var(--color-subtle-soft);
	}
}

/* Shared language switcher */
.site-lang {
	display: inline-flex;
	align-items: center;
	height: 24px;
	padding: 2px;
	border-radius: 4px;
	background: #ffffff;
	font-size: 0;
}

body:not(.home) .site-header:not(.is-scrolled) .site-lang {
	background: var(--color-subtle-soft);
}

.site-lang__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 20px;
	padding: 0 4px;
	border: 0;
	border-radius: 2px;
	background: #ffffff;
	color: #1d1d1b;
	font-family: var(--font-ui);
	font-weight: var(--fw-medium);
	font-size: 14px;
	line-height: 16px;
	text-decoration: none;
	cursor: pointer;
	transition: color 180ms ease, background-color 180ms ease;
}

body:not(.home) .site-header:not(.is-scrolled) .site-lang__link:not(.is-active) {
	background: var(--color-subtle-soft);
}

.site-lang__link:hover,
.site-lang__link:focus-visible {
	color: var(--color-accent);
}

.site-lang__link.is-active:hover,
.site-lang__link.is-active:focus-visible {
	color: #ffffff;
}

.site-lang__link.is-active {
	background: var(--color-accent);
	color: #ffffff;
}

/* Hide Google Translate service UI; language switching is handled by .site-lang. */
.goog-te-banner-frame,
.goog-te-gadget,
.goog-te-balloon-frame,
.goog-tooltip,
.goog-tooltip:hover,
.skiptranslate,
iframe.skiptranslate,
iframe.goog-te-banner-frame,
iframe.VIpgJd-ZVi9od-ORHb-OEVmcd {
	display: none !important;
}

.goog-text-highlight {
	background: transparent !important;
	box-shadow: none !important;
}

html.translated-ltr,
html.translated-rtl,
body {
	top: 0 !important;
}

#google_translate_element {
	display: none !important;
}

.site-main {
	padding: 28px 0;
}

.wp-singular.page:not(.home) .site-main,
.wp-singular.single-post .site-main {
	padding-top: 100px;
	padding-bottom: 200px;
}

.front-section {
	margin-block: var(--space-xxl);
}

@media (max-width: 960px) {
	.grid--6 {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.col-4,
	.col-5,
	.col-6 {
		grid-column: 1 / -1;
	}
}

@media (max-width: 640px) {
	.grid--6 {
		grid-template-columns: 1fr;
	}

	.grid--6 > * {
		grid-column: 1 / -1;
	}
}

.site-title {
	margin: 0;
	font-size: 20px;
	line-height: 1.2;
}

.site-description {
	margin: 6px 0 0;
	color: var(--color-muted);
	font-family: var(--font-ui);
	font-size: var(--fs-small);
	line-height: var(--lh-small);
}

/* Menus */
.menu {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 16px;
	margin: 16px 0 0;
	padding: 0;
	list-style: none;
}

.menu a {
	display: inline-block;
	padding: 6px 10px;
	border-radius: 6px;
	text-decoration: none;
	color: inherit;
	font-family: var(--font-ui);
	font-weight: var(--fw-regular);
	font-size: var(--fs-nav);
	line-height: var(--lh-nav);
}

.menu a:hover,
.menu a:focus-visible {
	background: var(--color-subtle);
}

.menu .current-menu-item > a,
.menu .current_page_item > a {
	background: var(--color-subtle);
}

/* Keep default header nav top-aligned; in scrolled state center items vertically. */
.site-header__inner {
	align-items: flex-start;
}

.site-header.is-scrolled .site-header__inner {
	align-items: center;
}

.site-header__menu {
	margin: 0;
}

.site-header__menu a {
	padding: 0;
	border-radius: 0;
}

.site-header__menu a:hover,
.site-header__menu a:focus-visible,
.site-header__menu .current-menu-item > a,
.site-header__menu .current_page_item > a {
	background: transparent;
}

/* Content */
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 0.6em;
	line-height: 1.25;
}

h1 {
	font-family: var(--font-ui);
	font-weight: var(--fw-bold);
	font-size: var(--fs-h1);
	line-height: var(--lh-h1);
}

h2 {
	font-family: var(--font-ui);
	font-weight: var(--fw-medium);
	font-size: var(--fs-h2);
	line-height: var(--lh-h2);
}

h3 {
	font-family: var(--font-ui);
	font-weight: var(--fw-medium);
	font-size: var(--fs-h3);
	line-height: var(--lh-h3);
}

h4 {
	font-family: var(--font-ui);
	font-weight: var(--fw-medium);
	font-size: var(--fs-h4);
	line-height: var(--lh-h4);
}

p {
	margin: 0 0 1em;
	font-family: var(--font-text);
	font-size: var(--fs-body);
	line-height: var(--lh-body);
}

.wp-singular .entry-content p.is-style-inmm-small-muted,
.editor-styles-wrapper p.is-style-inmm-small-muted {
	color: var(--color-muted);
	font-family: var(--font-ui);
	font-size: var(--fs-small);
	line-height: var(--lh-small);
}

.wp-singular .entry-content .lead,
.editor-styles-wrapper .lead {
	font-family: var(--font-ui);
	font-weight: var(--fw-regular);
	font-size: 24px;
	line-height: 32px;
}

.wp-singular .entry-content mark,
.editor-styles-wrapper mark {
	background: transparent;
	color: var(--color-accent);
	font-weight: inherit;
	text-decoration-line: underline;
	text-decoration-style: wavy;
	text-decoration-color: rgba(5, 150, 105, 0.2);
	text-decoration-thickness: 2px;
	text-underline-offset: 0.15em;
}

/* Shared block styles: loaded on the frontend and in Gutenberg via add_editor_style(). */

/* Content table (Gutenberg default block) */
.wp-singular .entry-content .wp-block-table,
.editor-styles-wrapper .wp-block-table {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.wp-singular .entry-content .wp-block-table table,
.editor-styles-wrapper .wp-block-table table {
	width: 100%;
	border-collapse: collapse;
	border-left: 0;
	border-right: 0;
}

.wp-singular .entry-content .wp-block-table th,
.wp-singular .entry-content .wp-block-table td,
.editor-styles-wrapper .wp-block-table th,
.editor-styles-wrapper .wp-block-table td {
	border-left: 0 !important;
	border-right: 0 !important;
	border-top: 1px solid #e5e5eb;
	border-bottom: 1px solid #e5e5eb;
	padding: 12px 0;
	vertical-align: top;
}

/* Content table column presets (2 columns) */
.wp-singular .entry-content .wp-block-table.table-40-60 table,
.wp-singular .entry-content .wp-block-table.is-style-inmm-40-60 table,
.wp-singular .entry-content .wp-block-table.table-60-40 table,
.wp-singular .entry-content .wp-block-table.is-style-inmm-60-40 table,
.wp-singular .entry-content .wp-block-table.table-30-70 table,
.wp-singular .entry-content .wp-block-table.is-style-inmm-30-70 table,
.wp-singular .entry-content .wp-block-table.table-70-30 table,
.wp-singular .entry-content .wp-block-table.is-style-inmm-70-30 table,
.wp-singular .entry-content .wp-block-table.table-20-80 table,
.wp-singular .entry-content .wp-block-table.is-style-inmm-20-80 table,
.wp-singular .entry-content .wp-block-table.table-80-20 table,
.wp-singular .entry-content .wp-block-table.is-style-inmm-80-20 table,
.editor-styles-wrapper .wp-block-table.table-40-60 table,
.editor-styles-wrapper .wp-block-table.is-style-inmm-40-60 table,
.editor-styles-wrapper .wp-block-table.table-60-40 table,
.editor-styles-wrapper .wp-block-table.is-style-inmm-60-40 table,
.editor-styles-wrapper .wp-block-table.table-30-70 table,
.editor-styles-wrapper .wp-block-table.is-style-inmm-30-70 table,
.editor-styles-wrapper .wp-block-table.table-70-30 table,
.editor-styles-wrapper .wp-block-table.is-style-inmm-70-30 table,
.editor-styles-wrapper .wp-block-table.table-20-80 table,
.editor-styles-wrapper .wp-block-table.is-style-inmm-20-80 table,
.editor-styles-wrapper .wp-block-table.table-80-20 table,
.editor-styles-wrapper .wp-block-table.is-style-inmm-80-20 table {
	table-layout: fixed;
}

.wp-singular .entry-content .wp-block-table.table-40-60 th:nth-child(1),
.wp-singular .entry-content .wp-block-table.table-40-60 td:nth-child(1),
.wp-singular .entry-content .wp-block-table.is-style-inmm-40-60 th:nth-child(1),
.wp-singular .entry-content .wp-block-table.is-style-inmm-40-60 td:nth-child(1),
.editor-styles-wrapper .wp-block-table.table-40-60 th:nth-child(1),
.editor-styles-wrapper .wp-block-table.table-40-60 td:nth-child(1),
.editor-styles-wrapper .wp-block-table.is-style-inmm-40-60 th:nth-child(1),
.editor-styles-wrapper .wp-block-table.is-style-inmm-40-60 td:nth-child(1) {
	width: 40%;
}

.wp-singular .entry-content .wp-block-table.table-40-60 th:nth-child(2),
.wp-singular .entry-content .wp-block-table.table-40-60 td:nth-child(2),
.wp-singular .entry-content .wp-block-table.is-style-inmm-40-60 th:nth-child(2),
.wp-singular .entry-content .wp-block-table.is-style-inmm-40-60 td:nth-child(2),
.editor-styles-wrapper .wp-block-table.table-40-60 th:nth-child(2),
.editor-styles-wrapper .wp-block-table.table-40-60 td:nth-child(2),
.editor-styles-wrapper .wp-block-table.is-style-inmm-40-60 th:nth-child(2),
.editor-styles-wrapper .wp-block-table.is-style-inmm-40-60 td:nth-child(2) {
	width: 60%;
}

.wp-singular .entry-content .wp-block-table.table-60-40 th:nth-child(1),
.wp-singular .entry-content .wp-block-table.table-60-40 td:nth-child(1),
.wp-singular .entry-content .wp-block-table.is-style-inmm-60-40 th:nth-child(1),
.wp-singular .entry-content .wp-block-table.is-style-inmm-60-40 td:nth-child(1),
.editor-styles-wrapper .wp-block-table.table-60-40 th:nth-child(1),
.editor-styles-wrapper .wp-block-table.table-60-40 td:nth-child(1),
.editor-styles-wrapper .wp-block-table.is-style-inmm-60-40 th:nth-child(1),
.editor-styles-wrapper .wp-block-table.is-style-inmm-60-40 td:nth-child(1) {
	width: 60%;
}

.wp-singular .entry-content .wp-block-table.table-60-40 th:nth-child(2),
.wp-singular .entry-content .wp-block-table.table-60-40 td:nth-child(2),
.wp-singular .entry-content .wp-block-table.is-style-inmm-60-40 th:nth-child(2),
.wp-singular .entry-content .wp-block-table.is-style-inmm-60-40 td:nth-child(2),
.editor-styles-wrapper .wp-block-table.table-60-40 th:nth-child(2),
.editor-styles-wrapper .wp-block-table.table-60-40 td:nth-child(2),
.editor-styles-wrapper .wp-block-table.is-style-inmm-60-40 th:nth-child(2),
.editor-styles-wrapper .wp-block-table.is-style-inmm-60-40 td:nth-child(2) {
	width: 40%;
}

.editor-styles-wrapper .wp-block-table.table-30-70 th:nth-child(1),
.editor-styles-wrapper .wp-block-table.table-30-70 td:nth-child(1),
.editor-styles-wrapper .wp-block-table.is-style-inmm-30-70 th:nth-child(1),
.editor-styles-wrapper .wp-block-table.is-style-inmm-30-70 td:nth-child(1),
.wp-singular .entry-content .wp-block-table.table-30-70 th:nth-child(1),
.wp-singular .entry-content .wp-block-table.table-30-70 td:nth-child(1),
.wp-singular .entry-content .wp-block-table.is-style-inmm-30-70 th:nth-child(1),
.wp-singular .entry-content .wp-block-table.is-style-inmm-30-70 td:nth-child(1) {
	width: 30%;
}

.editor-styles-wrapper .wp-block-table.table-30-70 th:nth-child(2),
.editor-styles-wrapper .wp-block-table.table-30-70 td:nth-child(2),
.editor-styles-wrapper .wp-block-table.is-style-inmm-30-70 th:nth-child(2),
.editor-styles-wrapper .wp-block-table.is-style-inmm-30-70 td:nth-child(2),
.wp-singular .entry-content .wp-block-table.table-30-70 th:nth-child(2),
.wp-singular .entry-content .wp-block-table.table-30-70 td:nth-child(2),
.wp-singular .entry-content .wp-block-table.is-style-inmm-30-70 th:nth-child(2),
.wp-singular .entry-content .wp-block-table.is-style-inmm-30-70 td:nth-child(2) {
	width: 70%;
}

.editor-styles-wrapper .wp-block-table.table-70-30 th:nth-child(1),
.editor-styles-wrapper .wp-block-table.table-70-30 td:nth-child(1),
.editor-styles-wrapper .wp-block-table.is-style-inmm-70-30 th:nth-child(1),
.editor-styles-wrapper .wp-block-table.is-style-inmm-70-30 td:nth-child(1),
.wp-singular .entry-content .wp-block-table.table-70-30 th:nth-child(1),
.wp-singular .entry-content .wp-block-table.table-70-30 td:nth-child(1),
.wp-singular .entry-content .wp-block-table.is-style-inmm-70-30 th:nth-child(1),
.wp-singular .entry-content .wp-block-table.is-style-inmm-70-30 td:nth-child(1) {
	width: 70%;
}

.editor-styles-wrapper .wp-block-table.table-70-30 th:nth-child(2),
.editor-styles-wrapper .wp-block-table.table-70-30 td:nth-child(2),
.editor-styles-wrapper .wp-block-table.is-style-inmm-70-30 th:nth-child(2),
.editor-styles-wrapper .wp-block-table.is-style-inmm-70-30 td:nth-child(2),
.wp-singular .entry-content .wp-block-table.table-70-30 th:nth-child(2),
.wp-singular .entry-content .wp-block-table.table-70-30 td:nth-child(2),
.wp-singular .entry-content .wp-block-table.is-style-inmm-70-30 th:nth-child(2),
.wp-singular .entry-content .wp-block-table.is-style-inmm-70-30 td:nth-child(2) {
	width: 30%;
}

.wp-singular .entry-content .wp-block-table.table-20-80 th:nth-child(1),
.wp-singular .entry-content .wp-block-table.table-20-80 td:nth-child(1),
.wp-singular .entry-content .wp-block-table.is-style-inmm-20-80 th:nth-child(1),
.wp-singular .entry-content .wp-block-table.is-style-inmm-20-80 td:nth-child(1),
.editor-styles-wrapper .wp-block-table.table-20-80 th:nth-child(1),
.editor-styles-wrapper .wp-block-table.table-20-80 td:nth-child(1),
.editor-styles-wrapper .wp-block-table.is-style-inmm-20-80 th:nth-child(1),
.editor-styles-wrapper .wp-block-table.is-style-inmm-20-80 td:nth-child(1) {
	width: 20%;
}

.wp-singular .entry-content .wp-block-table.table-20-80 th:nth-child(2),
.wp-singular .entry-content .wp-block-table.table-20-80 td:nth-child(2),
.wp-singular .entry-content .wp-block-table.is-style-inmm-20-80 th:nth-child(2),
.wp-singular .entry-content .wp-block-table.is-style-inmm-20-80 td:nth-child(2),
.editor-styles-wrapper .wp-block-table.table-20-80 th:nth-child(2),
.editor-styles-wrapper .wp-block-table.table-20-80 td:nth-child(2),
.editor-styles-wrapper .wp-block-table.is-style-inmm-20-80 th:nth-child(2),
.editor-styles-wrapper .wp-block-table.is-style-inmm-20-80 td:nth-child(2) {
	width: 80%;
}

.wp-singular .entry-content .wp-block-table.table-80-20 th:nth-child(1),
.wp-singular .entry-content .wp-block-table.table-80-20 td:nth-child(1),
.wp-singular .entry-content .wp-block-table.is-style-inmm-80-20 th:nth-child(1),
.wp-singular .entry-content .wp-block-table.is-style-inmm-80-20 td:nth-child(1),
.editor-styles-wrapper .wp-block-table.table-80-20 th:nth-child(1),
.editor-styles-wrapper .wp-block-table.table-80-20 td:nth-child(1),
.editor-styles-wrapper .wp-block-table.is-style-inmm-80-20 th:nth-child(1),
.editor-styles-wrapper .wp-block-table.is-style-inmm-80-20 td:nth-child(1) {
	width: 80%;
}

.wp-singular .entry-content .wp-block-table.table-80-20 th:nth-child(2),
.wp-singular .entry-content .wp-block-table.table-80-20 td:nth-child(2),
.wp-singular .entry-content .wp-block-table.is-style-inmm-80-20 th:nth-child(2),
.wp-singular .entry-content .wp-block-table.is-style-inmm-80-20 td:nth-child(2),
.editor-styles-wrapper .wp-block-table.table-80-20 th:nth-child(2),
.editor-styles-wrapper .wp-block-table.table-80-20 td:nth-child(2),
.editor-styles-wrapper .wp-block-table.is-style-inmm-80-20 th:nth-child(2),
.editor-styles-wrapper .wp-block-table.is-style-inmm-80-20 td:nth-child(2) {
	width: 20%;
}

.wp-singular .entry-content .wp-block-table.table-40-60 th:nth-child(1),
.wp-singular .entry-content .wp-block-table.table-40-60 td:nth-child(1),
.wp-singular .entry-content .wp-block-table.is-style-inmm-40-60 th:nth-child(1),
.wp-singular .entry-content .wp-block-table.is-style-inmm-40-60 td:nth-child(1),
.wp-singular .entry-content .wp-block-table.table-60-40 th:nth-child(1),
.wp-singular .entry-content .wp-block-table.table-60-40 td:nth-child(1),
.wp-singular .entry-content .wp-block-table.is-style-inmm-60-40 th:nth-child(1),
.wp-singular .entry-content .wp-block-table.is-style-inmm-60-40 td:nth-child(1),
.wp-singular .entry-content .wp-block-table.table-30-70 th:nth-child(1),
.wp-singular .entry-content .wp-block-table.table-30-70 td:nth-child(1),
.wp-singular .entry-content .wp-block-table.is-style-inmm-30-70 th:nth-child(1),
.wp-singular .entry-content .wp-block-table.is-style-inmm-30-70 td:nth-child(1),
.wp-singular .entry-content .wp-block-table.table-70-30 th:nth-child(1),
.wp-singular .entry-content .wp-block-table.table-70-30 td:nth-child(1),
.wp-singular .entry-content .wp-block-table.is-style-inmm-70-30 th:nth-child(1),
.wp-singular .entry-content .wp-block-table.is-style-inmm-70-30 td:nth-child(1),
.wp-singular .entry-content .wp-block-table.table-20-80 th:nth-child(1),
.wp-singular .entry-content .wp-block-table.table-20-80 td:nth-child(1),
.wp-singular .entry-content .wp-block-table.is-style-inmm-20-80 th:nth-child(1),
.wp-singular .entry-content .wp-block-table.is-style-inmm-20-80 td:nth-child(1),
.wp-singular .entry-content .wp-block-table.table-80-20 th:nth-child(1),
.wp-singular .entry-content .wp-block-table.table-80-20 td:nth-child(1),
.wp-singular .entry-content .wp-block-table.is-style-inmm-80-20 th:nth-child(1),
.wp-singular .entry-content .wp-block-table.is-style-inmm-80-20 td:nth-child(1),
.editor-styles-wrapper .wp-block-table.table-40-60 th:nth-child(1),
.editor-styles-wrapper .wp-block-table.table-40-60 td:nth-child(1),
.editor-styles-wrapper .wp-block-table.is-style-inmm-40-60 th:nth-child(1),
.editor-styles-wrapper .wp-block-table.is-style-inmm-40-60 td:nth-child(1),
.editor-styles-wrapper .wp-block-table.table-60-40 th:nth-child(1),
.editor-styles-wrapper .wp-block-table.table-60-40 td:nth-child(1),
.editor-styles-wrapper .wp-block-table.is-style-inmm-60-40 th:nth-child(1),
.editor-styles-wrapper .wp-block-table.is-style-inmm-60-40 td:nth-child(1),
.editor-styles-wrapper .wp-block-table.table-30-70 th:nth-child(1),
.editor-styles-wrapper .wp-block-table.table-30-70 td:nth-child(1),
.editor-styles-wrapper .wp-block-table.is-style-inmm-30-70 th:nth-child(1),
.editor-styles-wrapper .wp-block-table.is-style-inmm-30-70 td:nth-child(1),
.editor-styles-wrapper .wp-block-table.table-70-30 th:nth-child(1),
.editor-styles-wrapper .wp-block-table.table-70-30 td:nth-child(1),
.editor-styles-wrapper .wp-block-table.is-style-inmm-70-30 th:nth-child(1),
.editor-styles-wrapper .wp-block-table.is-style-inmm-70-30 td:nth-child(1),
.editor-styles-wrapper .wp-block-table.table-20-80 th:nth-child(1),
.editor-styles-wrapper .wp-block-table.table-20-80 td:nth-child(1),
.editor-styles-wrapper .wp-block-table.is-style-inmm-20-80 th:nth-child(1),
.editor-styles-wrapper .wp-block-table.is-style-inmm-20-80 td:nth-child(1),
.editor-styles-wrapper .wp-block-table.table-80-20 th:nth-child(1),
.editor-styles-wrapper .wp-block-table.table-80-20 td:nth-child(1),
.editor-styles-wrapper .wp-block-table.is-style-inmm-80-20 th:nth-child(1),
.editor-styles-wrapper .wp-block-table.is-style-inmm-80-20 td:nth-child(1) {
	padding-right: 32px;
}

/* Team block */
.wp-singular.page:not(.home) .entry-content > .wp-block-inmm-team,
.wp-singular.page:not(.home) .entry-content > .team-grid {
	max-width: none;
	width: 100%;
}

.wp-singular .entry-content .team-grid,
.editor-styles-wrapper .team-grid {
	width: 100%;
}

.wp-singular .entry-content .team-grid__list,
.editor-styles-wrapper .team-grid__list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 40px 24px;
}

.wp-singular .entry-content .team-card,
.editor-styles-wrapper .team-card {
	min-width: 0;
}

.wp-singular.page:not(.home) .entry-content .team-card {
	width: 100%;
	max-width: none;
	margin-left: 0;
	margin-right: 0;
}

.wp-singular .entry-content .team-card__media,
.editor-styles-wrapper .team-card__media {
	position: relative;
	overflow: hidden;
	aspect-ratio: 1 / 1;
	border: 1px solid #e5e5eb;
	border-radius: 4px;
	background: #f4f5f8;
}

.wp-singular .entry-content .team-card__image,
.editor-styles-wrapper .team-card__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.wp-singular .entry-content .team-card__image-placeholder,
.editor-styles-wrapper .team-card__image-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	color: #76767a;
	font-family: var(--font-ui);
	font-size: 16px;
	line-height: 20px;
}

.wp-singular .entry-content .team-card__name,
.editor-styles-wrapper .team-card__name {
	margin: 12px 0 0;
	font-family: var(--font-ui);
	font-weight: var(--fw-medium);
	font-size: 20px;
	line-height: 26px;
	color: #1d1d1b;
}

.wp-singular.page:not(.home) .entry-content .team-card__name {
	margin: 12px 0 0;
}

.wp-singular .entry-content .team-card__position,
.editor-styles-wrapper .team-card__position {
	margin: 4px 0 0;
	font-family: var(--font-ui);
	font-size: 16px;
	line-height: 22px;
	color: #76767a;
}

.editor-styles-wrapper .team-card__media-actions,
.editor-styles-wrapper .team-card__actions,
.editor-styles-wrapper .team-grid__editor-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 12px;
}

.editor-styles-wrapper .team-card__actions {
	padding-top: 12px;
	border-top: 1px solid #e5e5eb;
}

.editor-styles-wrapper .team-grid__editor-actions {
	margin-top: 24px;
}

/* Cards block */
.wp-singular.page:not(.home) .entry-content > .wp-block-inmm-cards,
.wp-singular.page:not(.home) .entry-content > .inmm-card-grid {
	max-width: none;
	width: 100%;
}

.wp-singular .entry-content .inmm-card-grid,
.editor-styles-wrapper .inmm-card-grid {
	width: 100%;
}

.wp-singular .entry-content .inmm-card-grid__list,
.editor-styles-wrapper .inmm-card-grid__list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 8px;
}

.wp-singular .entry-content .inmm-card-grid__card,
.editor-styles-wrapper .inmm-card-grid__card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	min-height: 280px;
	margin: 0;
	padding: 24px;
	border: 1px solid #e5e5eb;
	border-radius: 4px;
	background: #ffffff;
	color: #000000;
	box-shadow: none;
	overflow: hidden;
	transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.wp-singular.page:not(.home) .entry-content .inmm-card-grid__card {
	width: 100%;
	max-width: none;
	margin: 0;
}

.wp-singular .entry-content .inmm-card-grid__card:hover,
.editor-styles-wrapper .inmm-card-grid__card:hover,
.editor-styles-wrapper .inmm-card-grid__card:focus-within {
	background: #ffffff;
	border-color: transparent;
	box-shadow: 0 25px 50px -12px rgba(5, 150, 105, 0.25);
}

.wp-singular .entry-content .inmm-card-grid__eyebrow,
.editor-styles-wrapper .inmm-card-grid__eyebrow {
	margin: 0 0 16px;
	font-family: var(--font-ui);
	font-weight: var(--fw-regular);
	font-size: 14px;
	line-height: 20px;
	color: #76767a;
}

.wp-singular.page:not(.home) .entry-content .inmm-card-grid__eyebrow {
	margin: 0 0 16px;
}

.wp-singular .entry-content .inmm-card-grid__title,
.editor-styles-wrapper .inmm-card-grid__title {
	margin: 0;
	font-family: var(--font-ui);
	font-weight: var(--fw-medium);
	font-size: 22px;
	line-height: 28px;
	color: #000000;
	transition: color 180ms ease;
}

.wp-singular.page:not(.home) .entry-content .inmm-card-grid__title {
	margin: 0;
}

.wp-singular .entry-content .inmm-card-grid__description,
.editor-styles-wrapper .inmm-card-grid__description {
	margin: 16px 0 0;
	font-family: var(--font-text);
	font-weight: var(--fw-regular);
	font-size: 14px;
	line-height: 20px;
	color: #76767a;
}

.wp-singular.page:not(.home) .entry-content .inmm-card-grid__description {
	margin: 16px 0 0;
}

.wp-singular .entry-content .inmm-card-grid__description p,
.editor-styles-wrapper .inmm-card-grid__description p,
.wp-singular.page:not(.home) .entry-content .inmm-card-grid__description p {
	margin: 0;
	font: inherit;
	color: inherit;
}

.wp-singular .entry-content .inmm-card-grid__description p + p,
.editor-styles-wrapper .inmm-card-grid__description p + p,
.wp-singular.page:not(.home) .entry-content .inmm-card-grid__description p + p {
	margin-top: 8px;
}

.wp-singular .entry-content .inmm-card-grid__card:hover .inmm-card-grid__title,
.editor-styles-wrapper .inmm-card-grid__card:hover .inmm-card-grid__title,
.editor-styles-wrapper .inmm-card-grid__card:focus-within .inmm-card-grid__title {
	color: #059669;
}

.editor-styles-wrapper .is-root-container > .wp-block[data-type="inmm/cards"] {
	max-width: 848px;
	width: 100%;
}

.editor-styles-wrapper .inmm-card-grid__card-actions,
.editor-styles-wrapper .inmm-card-grid__editor-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 24px;
}

.editor-styles-wrapper .inmm-card-grid__card-actions {
	padding-top: 12px;
	border-top: 1px solid #e5e5eb;
}

.editor-styles-wrapper .inmm-card-grid__editor-actions {
	justify-content: flex-start;
}

@media (max-width: 930px) {
	.wp-singular .entry-content .inmm-card-grid__list,
	.editor-styles-wrapper .inmm-card-grid__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (hover: none) {
	.wp-singular .entry-content .inmm-card-grid__card:hover,
	.editor-styles-wrapper .inmm-card-grid__card:hover {
		border-color: #e5e5eb;
		box-shadow: none;
	}

	.wp-singular .entry-content .inmm-card-grid__card:hover .inmm-card-grid__title,
	.editor-styles-wrapper .inmm-card-grid__card:hover .inmm-card-grid__title {
		color: #000000;
	}
}

@media (max-width: 600px) {
	.wp-singular .entry-content .inmm-card-grid__list,
	.editor-styles-wrapper .inmm-card-grid__list {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.wp-singular .entry-content .inmm-card-grid__card,
	.editor-styles-wrapper .inmm-card-grid__card {
		min-height: 220px;
	}

	.wp-singular .entry-content .inmm-card-grid__title,
	.editor-styles-wrapper .inmm-card-grid__title {
		font-size: 20px;
		line-height: 26px;
	}
}

/* Work steps block */
.wp-singular.page:not(.home) .entry-content > .wp-block-inmm-work-steps,
.wp-singular.page:not(.home) .entry-content > .inmm-work-steps {
	max-width: none;
	width: 100%;
}

.wp-singular .entry-content .inmm-work-steps,
.editor-styles-wrapper .inmm-work-steps {
	width: 100%;
	margin-top: 40px;
	margin-bottom: 24px;
}

.wp-singular .entry-content > .inmm-work-steps:first-child,
.editor-styles-wrapper .is-root-container > .wp-block.inmm-work-steps:first-child,
.editor-styles-wrapper .is-root-container > .wp-block:first-child .inmm-work-steps {
	margin-top: 0;
}

.wp-singular .entry-content .inmm-work-steps__header,
.editor-styles-wrapper .inmm-work-steps__header {
	display: none;
}

.wp-singular .entry-content .inmm-work-steps__list,
.editor-styles-wrapper .inmm-work-steps__list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	align-items: end;
	gap: 8px;
}

.wp-singular .entry-content .inmm-work-steps__stage,
.editor-styles-wrapper .inmm-work-steps__stage {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: none;
	min-width: 0;
	margin: 0;
	padding: 24px;
	border: 1px solid var(--color-subtle);
	border-top: 4px solid var(--color-accent);
	border-radius: 4px;
	background: var(--color-subtle-soft);
	color: var(--color-text);
	overflow-wrap: anywhere;
	transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.wp-singular.page:not(.home) .entry-content article.inmm-work-steps__stage {
	width: 100%;
	max-width: none;
	margin-left: 0;
	margin-right: 0;
}

.wp-singular .entry-content .inmm-work-steps__stage:hover,
.editor-styles-wrapper .inmm-work-steps__stage:hover,
.editor-styles-wrapper .inmm-work-steps__stage:focus-within {
	background: var(--color-surface);
	border-color: transparent;
	border-top-color: var(--color-accent);
	box-shadow: 0 25px 50px -12px rgba(5, 150, 105, 0.25);
}

.wp-singular .entry-content .inmm-work-steps__stage--1,
.editor-styles-wrapper .inmm-work-steps__stage--1 {
	min-height: 232px;
}

.wp-singular .entry-content .inmm-work-steps__stage--2,
.editor-styles-wrapper .inmm-work-steps__stage--2 {
	min-height: 272px;
}

.wp-singular .entry-content .inmm-work-steps__stage--3,
.editor-styles-wrapper .inmm-work-steps__stage--3 {
	min-height: 312px;
}

.wp-singular .entry-content .inmm-work-steps__stage--4,
.editor-styles-wrapper .inmm-work-steps__stage--4 {
	min-height: 352px;
}

.wp-singular .entry-content .inmm-work-steps__number,
.editor-styles-wrapper .inmm-work-steps__number,
.wp-singular.page:not(.home) .entry-content .inmm-work-steps__number {
	margin: 0 0 16px;
	font-family: var(--font-ui);
	font-weight: var(--fw-bold);
	font-size: 18px;
	line-height: 24px;
	color: var(--color-accent);
}

.wp-singular .entry-content h3.inmm-work-steps__stage-title,
.editor-styles-wrapper h3.inmm-work-steps__stage-title,
.wp-singular.page:not(.home) .entry-content h3.inmm-work-steps__stage-title {
	margin: 0;
	font-family: var(--font-ui);
	font-weight: var(--fw-medium);
	font-size: 20px;
	line-height: 26px;
	color: var(--color-text);
	transition: color 180ms ease;
}

.wp-singular .entry-content .inmm-work-steps__stage:hover .inmm-work-steps__stage-title,
.editor-styles-wrapper .inmm-work-steps__stage:hover .inmm-work-steps__stage-title,
.editor-styles-wrapper .inmm-work-steps__stage:focus-within .inmm-work-steps__stage-title {
	color: var(--color-accent);
}

.wp-singular .entry-content .inmm-work-steps__stage-description,
.editor-styles-wrapper .inmm-work-steps__stage-description {
	margin: 16px 0 0;
	font-family: var(--font-text);
	font-weight: var(--fw-regular);
	font-size: 14px;
	line-height: 20px;
	color: var(--color-muted);
}

.wp-singular .entry-content .inmm-work-steps__stage-description p,
.editor-styles-wrapper .inmm-work-steps__stage-description p,
.wp-singular.page:not(.home) .entry-content .inmm-work-steps__stage-description p {
	margin: 0;
	font: inherit;
	color: inherit;
}

.wp-singular .entry-content .inmm-work-steps__stage-description p + p,
.editor-styles-wrapper .inmm-work-steps__stage-description p + p,
.wp-singular.page:not(.home) .entry-content .inmm-work-steps__stage-description p + p {
	margin-top: 8px;
}

.editor-styles-wrapper .is-root-container > .wp-block[data-type="inmm/work-steps"] {
	max-width: 848px;
	width: 100%;
}

@media (max-width: 1199px) {
	.wp-singular .entry-content .inmm-work-steps,
	.editor-styles-wrapper .inmm-work-steps {
		margin-top: 32px;
	}

	.wp-singular .entry-content .inmm-work-steps__stage,
	.editor-styles-wrapper .inmm-work-steps__stage {
		padding: 20px;
	}

	.wp-singular .entry-content .inmm-work-steps__stage--1,
	.editor-styles-wrapper .inmm-work-steps__stage--1 {
		min-height: 220px;
	}

	.wp-singular .entry-content .inmm-work-steps__stage--2,
	.editor-styles-wrapper .inmm-work-steps__stage--2 {
		min-height: 252px;
	}

	.wp-singular .entry-content .inmm-work-steps__stage--3,
	.editor-styles-wrapper .inmm-work-steps__stage--3 {
		min-height: 284px;
	}

	.wp-singular .entry-content .inmm-work-steps__stage--4,
	.editor-styles-wrapper .inmm-work-steps__stage--4 {
		min-height: 316px;
	}

	.wp-singular .entry-content h3.inmm-work-steps__stage-title,
	.editor-styles-wrapper h3.inmm-work-steps__stage-title {
		font-size: 18px;
		line-height: 24px;
	}
}

@media (hover: none) {
	.wp-singular .entry-content .inmm-work-steps__stage:hover,
	.editor-styles-wrapper .inmm-work-steps__stage:hover {
		background: var(--color-subtle-soft);
		border-color: var(--color-subtle);
		border-top-color: var(--color-accent);
		box-shadow: none;
	}

	.wp-singular .entry-content .inmm-work-steps__stage:hover .inmm-work-steps__stage-title,
	.editor-styles-wrapper .inmm-work-steps__stage:hover .inmm-work-steps__stage-title {
		color: var(--color-text);
	}
}

@media (max-width: 767px) {
	.wp-singular .entry-content .inmm-work-steps,
	.editor-styles-wrapper .inmm-work-steps {
		margin-top: 24px;
	}

	.wp-singular .entry-content .inmm-work-steps__list,
	.editor-styles-wrapper .inmm-work-steps__list {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.wp-singular .entry-content .inmm-work-steps__stage,
	.editor-styles-wrapper .inmm-work-steps__stage,
	.wp-singular .entry-content .inmm-work-steps__stage--1,
	.editor-styles-wrapper .inmm-work-steps__stage--1,
	.wp-singular .entry-content .inmm-work-steps__stage--2,
	.editor-styles-wrapper .inmm-work-steps__stage--2,
	.wp-singular .entry-content .inmm-work-steps__stage--3,
	.editor-styles-wrapper .inmm-work-steps__stage--3,
	.wp-singular .entry-content .inmm-work-steps__stage--4,
	.editor-styles-wrapper .inmm-work-steps__stage--4 {
		width: 100%;
		max-width: none;
		min-height: 0;
		margin-left: 0;
		margin-right: 0;
	}
}

/* Gutenberg file/PDF block */
.wp-singular .entry-content .wp-block-file,
.editor-styles-wrapper .wp-block-file {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	column-gap: 32px;
	row-gap: 0;
	align-items: center;
	width: 100%;
	margin-top: 32px;
	margin-bottom: 32px;
	border-bottom: 1px solid #e5e5eb;
	transition: border-color 180ms ease;
}

.wp-singular.page:not(.home) .entry-content > .wp-block-file {
	max-width: none;
	width: 100%;
}

.wp-singular .entry-content .wp-block-file__embed,
.editor-styles-wrapper .wp-block-file__embed {
	grid-column: 1 / -1;
	width: 100%;
	min-height: 520px;
	border: 1px solid #e5e5eb;
	border-bottom: 0;
	background: var(--color-subtle-soft);
}

.wp-singular .entry-content .wp-block-file > a:not(.wp-block-file__button),
.editor-styles-wrapper .wp-block-file > a:not(.wp-block-file__button) {
	min-width: 0;
	padding: 20px 0;
	color: var(--color-text);
	font-family: var(--font-text);
	font-size: 18px;
	line-height: 28px;
	text-decoration: none;
	overflow-wrap: anywhere;
	transition:
		border-color 180ms ease,
		color 180ms ease;
}

.wp-singular .entry-content .wp-block-file .wp-block-file__button,
.editor-styles-wrapper .wp-block-file .wp-block-file__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 152px;
	margin: 0;
	padding: 12px 24px;
	border: 1px solid var(--color-accent);
	border-radius: 4px;
	background: var(--color-accent);
	color: #ffffff;
	font-family: var(--font-ui);
	font-size: 16px;
	line-height: 20px;
	text-decoration: none;
	transition: filter 180ms ease;
}

.wp-singular .entry-content .wp-block-file:has(> a:not(.wp-block-file__button):hover) > a:not(.wp-block-file__button),
.wp-singular .entry-content .wp-block-file:has(> a:not(.wp-block-file__button):focus-visible) > a:not(.wp-block-file__button),
.wp-singular .entry-content .wp-block-file:has(.wp-block-file__button:hover) > a:not(.wp-block-file__button),
.wp-singular .entry-content .wp-block-file:has(.wp-block-file__button:focus-visible) > a:not(.wp-block-file__button),
.editor-styles-wrapper .wp-block-file:has(> a:not(.wp-block-file__button):hover) > a:not(.wp-block-file__button),
.editor-styles-wrapper .wp-block-file:has(> a:not(.wp-block-file__button):focus-visible) > a:not(.wp-block-file__button),
.editor-styles-wrapper .wp-block-file:has(.wp-block-file__button:hover) > a:not(.wp-block-file__button),
.editor-styles-wrapper .wp-block-file:has(.wp-block-file__button:focus-visible) > a:not(.wp-block-file__button) {
	color: var(--color-accent);
}

.wp-singular .entry-content .wp-block-file:has(> a:not(.wp-block-file__button):hover),
.wp-singular .entry-content .wp-block-file:has(> a:not(.wp-block-file__button):focus-visible),
.wp-singular .entry-content .wp-block-file:has(.wp-block-file__button:hover),
.wp-singular .entry-content .wp-block-file:has(.wp-block-file__button:focus-visible),
.editor-styles-wrapper .wp-block-file:has(> a:not(.wp-block-file__button):hover),
.editor-styles-wrapper .wp-block-file:has(> a:not(.wp-block-file__button):focus-visible),
.editor-styles-wrapper .wp-block-file:has(.wp-block-file__button:hover),
.editor-styles-wrapper .wp-block-file:has(.wp-block-file__button:focus-visible) {
	border-bottom-color: var(--color-accent);
}

.wp-singular .entry-content .wp-block-file .wp-block-file__button:hover,
.wp-singular .entry-content .wp-block-file .wp-block-file__button:focus-visible,
.editor-styles-wrapper .wp-block-file .wp-block-file__button:hover,
.editor-styles-wrapper .wp-block-file .wp-block-file__button:focus-visible {
	color: #ffffff;
	text-decoration: none;
	filter: brightness(0.95);
}

/* Contacts block */
.wp-singular .entry-content .inmm-contacts,
.editor-styles-wrapper .inmm-contacts {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr);
	gap: 24px;
	width: 100%;
	margin-top: 32px;
	margin-bottom: 32px;
	padding: 24px;
	border-radius: 4px;
	background: var(--color-subtle-soft);
}

.wp-singular.page:not(.home) .entry-content > .inmm-contacts,
.wp-singular.page:not(.home) .entry-content > .wp-block-inmm-contacts {
	max-width: none;
	width: 100%;
}

.wp-singular.page:not(.home) .entry-content .inmm-contacts {
	margin-left: 0;
	margin-right: auto;
}

.wp-singular .entry-content .inmm-contacts__icon,
.editor-styles-wrapper .inmm-contacts__icon {
	display: block;
	width: 42px;
	height: 52px;
	background-color: #d9dce3;
	-webkit-mask-image: url("assets/images/ic_contacts.svg");
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	mask-image: url("assets/images/ic_contacts.svg");
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: contain;
}

.wp-singular .entry-content .inmm-contacts__body,
.editor-styles-wrapper .inmm-contacts__body {
	min-width: 0;
}

.wp-singular .entry-content .inmm-contacts__description,
.editor-styles-wrapper .inmm-contacts__description {
	color: var(--color-text);
}

.wp-singular .entry-content .inmm-contacts__description p,
.editor-styles-wrapper .inmm-contacts__description p,
.wp-singular .entry-content p.inmm-contacts__description,
.editor-styles-wrapper p.inmm-contacts__description {
	margin: 0;
}

.wp-singular .entry-content .inmm-contacts__description p + p,
.editor-styles-wrapper .inmm-contacts__description p + p {
	margin-top: 0.6em;
}

.wp-singular .entry-content .inmm-contacts__list,
.editor-styles-wrapper .inmm-contacts__list {
	display: grid;
	gap: 0;
	margin: 20px 0 0;
	padding: 0;
}

.wp-singular .entry-content .inmm-contacts__row,
.editor-styles-wrapper .inmm-contacts__row {
	display: grid;
	grid-template-columns: minmax(128px, 220px) minmax(0, 1fr);
	gap: 16px;
	padding: 14px 0;
	border-top: 1px solid #e5e5eb;
}

.wp-singular .entry-content .inmm-contacts__label,
.editor-styles-wrapper .inmm-contacts__label {
	margin: 0;
	color: var(--color-muted);
	font-family: var(--font-ui);
	font-size: 18px;
	line-height: 28px;
}

.wp-singular .entry-content .inmm-contacts__value,
.editor-styles-wrapper .inmm-contacts__value {
	margin: 0;
	min-width: 0;
	font-family: var(--font-text);
	font-size: 18px;
	line-height: 28px;
	color: var(--color-text);
	overflow-wrap: anywhere;
}

.wp-singular .entry-content .inmm-contacts__note,
.editor-styles-wrapper .inmm-contacts__note {
	display: inline;
	margin-left: 0;
	color: var(--color-muted);
	font-family: var(--font-text);
	font-size: 18px;
	line-height: 28px;
}

.wp-singular .entry-content .inmm-contacts__value--has-value .inmm-contacts__note,
.editor-styles-wrapper .inmm-contacts__value--has-value .inmm-contacts__note {
	margin-left: 0.35em;
}

.wp-singular .entry-content .inmm-contacts__groups,
.editor-styles-wrapper .inmm-contacts__groups {
	display: grid;
	gap: 20px;
	margin-top: 24px;
}

.wp-singular .entry-content .inmm-contacts__person,
.editor-styles-wrapper .inmm-contacts__person {
	min-width: 0;
	padding-top: 20px;
	border-top: 1px solid #e5e5eb;
}

.wp-singular.page:not(.home) .entry-content .inmm-contacts__person {
	width: 100%;
	max-width: none;
	margin-left: 0;
	margin-right: 0;
}

.wp-singular .entry-content .inmm-contacts__person-header,
.editor-styles-wrapper .inmm-contacts__person-header {
	margin-bottom: 4px;
}

.wp-singular .entry-content .inmm-contacts__person-name,
.editor-styles-wrapper .inmm-contacts__person-name {
	margin: 0;
	font-family: var(--font-ui);
	font-weight: var(--fw-medium);
	font-size: 20px;
	line-height: 26px;
	color: var(--color-text);
}

.wp-singular.page:not(.home) .entry-content .inmm-contacts__person-name {
	margin: 0;
}

.wp-singular .entry-content .inmm-contacts__person-note,
.editor-styles-wrapper .inmm-contacts__person-note {
	margin: 4px 0 0;
	color: var(--color-muted);
	font-family: var(--font-ui);
	font-size: 16px;
	line-height: 22px;
}

.wp-singular .entry-content .inmm-contacts--inline .inmm-contacts__list,
.editor-styles-wrapper .inmm-contacts--inline .inmm-contacts__list {
	margin-top: 12px;
}

.wp-singular .entry-content .inmm-contacts__empty,
.editor-styles-wrapper .inmm-contacts__empty {
	margin: 16px 0 0;
	color: var(--color-muted);
	font-family: var(--font-ui);
	font-size: 14px;
	line-height: 20px;
}

.editor-styles-wrapper .inmm-contacts-editor {
	width: 100%;
	max-width: 848px;
	margin: 16px auto 0;
}

.editor-styles-wrapper .inmm-contacts-editor__item {
	padding: 12px;
	margin-bottom: 12px;
	border: 1px solid #e5e5eb;
	border-radius: 4px;
	background: #ffffff;
}

.editor-styles-wrapper .inmm-contacts-editor__actions,
.editor-styles-wrapper .inmm-contacts-editor__add {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.editor-styles-wrapper .inmm-contacts-editor__actions {
	padding-top: 12px;
	border-top: 1px solid #e5e5eb;
}

@media (max-width: 640px) {
	.wp-singular .entry-content .wp-block-file,
	.editor-styles-wrapper .wp-block-file {
		grid-template-columns: 1fr;
	}

	.wp-singular .entry-content .wp-block-file__embed,
	.editor-styles-wrapper .wp-block-file__embed {
		min-height: 420px;
	}

	.wp-singular .entry-content .wp-block-file .wp-block-file__button,
	.editor-styles-wrapper .wp-block-file .wp-block-file__button {
		width: 100%;
		min-width: 0;
		margin-top: 12px;
	}

	.wp-singular .entry-content .inmm-contacts,
	.editor-styles-wrapper .inmm-contacts {
		grid-template-columns: 1fr;
		gap: 16px;
		padding: 20px 16px;
	}

	.wp-singular .entry-content .inmm-contacts__icon,
	.editor-styles-wrapper .inmm-contacts__icon {
		width: 34px;
		height: 42px;
	}

	.wp-singular .entry-content .inmm-contacts__row,
	.editor-styles-wrapper .inmm-contacts__row {
		grid-template-columns: 1fr;
		gap: 4px;
	}
}

small {
	font-family: var(--font-ui);
	font-weight: var(--fw-regular);
	font-size: var(--fs-small);
	line-height: var(--lh-small);
}

.entry-title {
	margin: 0 0 0.6em;
}

.wp-singular.page:not(.home) .site-main > .container,
.wp-singular.single-post .site-main > .container {
	max-width: calc(1024px + (var(--container-padding) * 2));
}

.wp-singular:not(.home) .press-center__inner.container {
	max-width: calc(1024px + (var(--container-padding) * 2));
}

.wp-singular.page:not(.home) article {
	max-width: 1024px;
	margin-left: auto;
	margin-right: auto;
}

.wp-singular.page:not(.home) .entry-header,
.wp-singular.page:not(.home) .entry-content {
	max-width: 1024px;
	margin-left: auto;
	margin-right: auto;
}

.wp-singular.page:not(.home) .entry-header > *,
.wp-singular.page:not(.home) .entry-content > * {
	max-width: 848px;
	margin-left: 0;
	margin-right: auto;
}

.wp-singular.page:not(.home) .entry-content > ul {
	max-width: 848px;
	margin-left: 0;
	margin-right: auto;
}

.wp-singular.page:not(.home) .entry-content ul {
	padding: 0;
	list-style: none;
}

.wp-singular.page:not(.home) .entry-content ul li {
	position: relative;
	margin: 0 0 0.45em;
	padding-left: 1em;
}

.wp-singular.page:not(.home) .entry-content ul li::before {
	content: "·";
	position: absolute;
	top: 0;
	left: 0;
	font-family: var(--font-ui);
	font-weight: var(--fw-medium);
}

.wp-singular.page:not(.home) .entry-content ul ul {
	margin-top: 0.45em;
	margin-bottom: 0;
}

.wp-singular.page:not(.home) .entry-content > .wp-block-image,
.wp-singular.page:not(.home) .entry-content > .wp-block-gallery,
.wp-singular.page:not(.home) .entry-content > .wp-block-cover,
.wp-singular.page:not(.home) .entry-content > .wp-block-media-text,
.wp-singular.page:not(.home) .entry-content > figure,
.wp-singular.page:not(.home) .entry-content > img {
	max-width: none;
	width: 100%;
}

.wp-singular.page:not(.home) .entry-content > .wp-block-image img,
.wp-singular.page:not(.home) .entry-content > .wp-block-cover img,
.wp-singular.page:not(.home) .entry-content > figure img,
.wp-singular.page:not(.home) .entry-content > img {
	width: 100%;
}

.wp-singular.page:not(.home) .entry-content > p:has(> img),
.wp-singular.page:not(.home) .entry-content > p:has(> a > img) {
	max-width: none;
	width: 100%;
}

.wp-singular.page:not(.home) .entry-content > p:has(> img) > img,
.wp-singular.page:not(.home) .entry-content > p:has(> a > img) > a > img {
	display: block;
	width: 100% !important;
	max-width: 100%;
	height: auto;
}

.wp-singular.page:not(.home) .entry-content h3,
.wp-singular.page:not(.home) .entry-content h4 {
	margin-top: 56px;
	margin-bottom: 24px;
}

.wp-singular:not(.home) .entry-content h2 {
	margin-top: 96px;
	margin-bottom: 16px;
}

.wp-singular.page:not(.home) .entry-content h2 + h3,
.wp-singular.page:not(.home) .entry-content h3 + h4 {
	margin-top: 32px;
}

.wp-singular.page:not(.home) .entry-content .wp-block-image,
.wp-singular.page:not(.home) .entry-content figure {
	width: 100% !important;
	max-width: none !important;
}

.wp-singular.page:not(.home) .entry-content .wp-block-image img,
.wp-singular.page:not(.home) .entry-content figure img,
.wp-singular.page:not(.home) .entry-content p > img {
	display: block;
	width: 100% !important;
	max-width: 100%;
	height: auto;
}

.wp-block-image.is-style-inmm-bordered img {
	border: 1px solid var(--color-subtle);
	border-radius: 4px;
	padding: 8px;
	background-color: var(--color-surface);
}

.entry-meta {
	margin: 0 0 1em;
	color: var(--color-muted);
	font-family: var(--font-ui);
	font-weight: var(--fw-regular);
	font-size: var(--fs-small);
	line-height: var(--lh-small);
}

.entry-content > *:first-child {
	margin-top: 0;
}

.entry-content > *:last-child {
	margin-bottom: 0;
}

.error-404-page {
	padding: 120px 0 160px;
	text-align: center;
}

.error-404-page__code {
	margin: 0;
	font-family: var(--font-ui);
	font-weight: var(--fw-bold);
	font-size: 180px;
	line-height: 1;
	color: #000000;
}

.error-404-page__message {
	margin: 24px auto 0;
	max-width: 736px;
	font-family: var(--font-ui);
	font-weight: var(--fw-regular);
	font-size: 30px;
	line-height: 36px;
	color: #000000;
}

@media (max-width: 960px) {
	.error-404-page {
		padding: 100px 0 132px;
	}

	.error-404-page__code {
		font-size: 140px;
	}

	.error-404-page__message {
		font-size: 24px;
		line-height: 32px;
	}
}

@media (max-width: 640px) {
	.error-404-page {
		padding: 72px 0 96px;
	}

	.error-404-page__code {
		font-size: 104px;
	}

	.error-404-page__message {
		margin-top: 16px;
		font-size: 20px;
		line-height: 28px;
	}
}

/* Buttons (basic) */
.button,
button,
input[type="submit"],
input[type="button"] {
	display: inline-block;
	padding: 10px 14px;
	border: 1px solid var(--color-subtle);
	border-radius: 8px;
	background: var(--color-surface);
	cursor: pointer;
}

.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
	background: var(--color-subtle);
}

/* Content button link */
.wp-singular .entry-content a.btn,
.editor-styles-wrapper a.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 16px;
	border: 1px solid var(--color-accent);
	border-radius: 4px;
	background: var(--color-accent);
	color: #ffffff;
	font-family: var(--font-ui);
	font-weight: var(--fw-regular);
	font-size: 16px;
	line-height: 20px;
	text-decoration: none;
	transition: filter 180ms ease;
	width: auto;
}

.wp-singular .entry-content a.btn:hover,
.wp-singular .entry-content a.btn:focus-visible,
.editor-styles-wrapper a.btn:hover,
.editor-styles-wrapper a.btn:focus-visible {
	color: #ffffff;
	text-decoration: none;
	filter: brightness(0.95);
}

.wp-singular .entry-content a.btn.btn--full,
.editor-styles-wrapper a.btn.btn--full {
	display: flex;
	width: 100%;
}

/* Gutenberg buttons (default + presets) */
.wp-singular .entry-content .wp-block-button__link,
.editor-styles-wrapper .wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 16px;
	border: 1px solid var(--color-accent);
	border-radius: 4px;
	background: var(--color-accent);
	color: #ffffff;
	font-family: var(--font-ui);
	font-weight: var(--fw-regular);
	font-size: 16px;
	line-height: 20px;
	text-decoration: none;
	transition: filter 180ms ease;
	width: auto;
}

.wp-singular .entry-content .wp-block-button__link:hover,
.wp-singular .entry-content .wp-block-button__link:focus-visible,
.wp-singular .entry-content .wp-block-buttons.is-style-inmm-btn-full .wp-block-button__link:hover,
.wp-singular .entry-content .wp-block-buttons.is-style-inmm-btn-full .wp-block-button__link:focus-visible,
.editor-styles-wrapper .wp-block-button__link:hover,
.editor-styles-wrapper .wp-block-button__link:focus-visible,
.editor-styles-wrapper .wp-block-buttons.is-style-inmm-btn-full .wp-block-button__link:hover,
.editor-styles-wrapper .wp-block-buttons.is-style-inmm-btn-full .wp-block-button__link:focus-visible {
	color: #ffffff;
	text-decoration: none;
	filter: brightness(0.95);
}

.wp-singular.page:not(.home) .entry-content > .wp-block-buttons.is-style-inmm-btn-full {
	max-width: none;
	width: 100%;
}

.wp-singular .entry-content .wp-block-buttons.is-style-inmm-btn-full,
.editor-styles-wrapper .wp-block-buttons.is-style-inmm-btn-full {
	display: flex;
}

.wp-singular .entry-content .wp-block-buttons.is-style-inmm-btn-full .wp-block-button,
.editor-styles-wrapper .wp-block-buttons.is-style-inmm-btn-full .wp-block-button {
	flex: 1 1 auto;
	width: 100%;
}

.wp-singular .entry-content .wp-block-buttons.is-style-inmm-btn-full .wp-block-button__link,
.editor-styles-wrapper .wp-block-buttons.is-style-inmm-btn-full .wp-block-button__link {
	display: flex;
	width: 100%;
}

/* Reusable site form */
.inmm-form {
	width: 100%;
	margin: 100px 0 32px;
	padding: 24px;
	border: 1px solid #e5e5eb;
	border-radius: 4px;
	background: #ffffff;
	transition: border-color 180ms ease, box-shadow 180ms ease;
}

.wp-singular.page:not(.home) .entry-content > .inmm-form {
	max-width: none;
	width: 100%;
}

.inmm-form__title {
	margin: 0 0 16px;
	font-family: var(--font-ui);
	font-weight: var(--fw-medium);
	font-size: 24px;
	line-height: 32px;
}

.wp-singular.page:not(.home) .entry-content .inmm-form__title {
	margin-top: 0;
	margin-bottom: 16px;
}

.inmm-form__description {
	margin: 0 0 20px;
	max-width: 848px;
	font-family: var(--font-text);
	font-size: 16px;
	line-height: 24px;
	color: #2b2d3b;
}

.inmm-form__element {
	margin: 0;
}

.inmm-form__fields {
	display: grid;
	row-gap: 16px;
}

.inmm-form__field {
	margin: 0;
}

.inmm-form__label {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	margin: 0 0 8px;
	font-family: var(--font-ui);
	font-weight: var(--fw-medium);
	font-size: 16px;
	line-height: 20px;
	color: #1d1d1b;
}

.inmm-form__required {
	color: #ce4056;
}

.inmm-form__control {
	display: block;
	width: 100%;
	min-height: 48px;
	padding: 0 14px;
	border: 1px solid #cad0da;
	border-radius: 4px;
	background: #ffffff;
	color: #1d1d1b;
	font-family: var(--font-ui);
	font-size: 16px;
	line-height: 20px;
	transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.inmm-form__control--select {
	-webkit-appearance: none;
	appearance: none;
	padding-right: 42px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236A7387' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	background-size: 12px 8px;
}

.inmm-form__control--select:invalid {
	color: #8b92a1;
}

.inmm-form__control--select option {
	color: #1d1d1b;
}

.inmm-form__control--textarea {
	min-height: 132px;
	padding-top: 12px;
	padding-bottom: 12px;
	resize: vertical;
}

.inmm-form__control::placeholder {
	color: #8b92a1;
}

.inmm-form__control:focus,
.inmm-form__control:focus-visible {
	outline: none;
	border-color: var(--color-accent);
	box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.14);
}

.inmm-form__field.has-error .inmm-form__control {
	border-color: #ce4056;
	background: #fff7f8;
}

.inmm-form__field--checkbox {
	margin-top: 4px;
}

.inmm-form__checkbox-label {
	display: inline-flex;
	align-items: flex-start;
	gap: 10px;
	cursor: pointer;
}

.inmm-form__checkbox-control {
	-webkit-appearance: none;
	appearance: none;
	flex: 0 0 18px;
	width: 18px;
	height: 18px;
	margin: 1px 0 0;
	border: 1px solid #adb1b8;
	border-radius: 4px;
	background: #ffffff;
	position: relative;
	transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.inmm-form__checkbox-control:focus,
.inmm-form__checkbox-control:focus-visible {
	outline: none;
	border-color: var(--color-accent);
	box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.14);
}

.inmm-form__checkbox-control:checked {
	border-color: var(--color-accent);
	background: var(--color-accent);
}

.inmm-form__checkbox-control:checked::after {
	content: "";
	position: absolute;
	left: 6px;
	top: 2px;
	width: 4px;
	height: 9px;
	border: solid #ffffff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.inmm-form__checkbox-text {
	display: block;
	font-family: var(--font-ui);
	font-size: 16px;
	line-height: 20px;
	color: #1d1d1b;
}

.inmm-form__checkbox-text a {
	color: inherit;
	text-decoration: underline;
	text-decoration-color: rgba(31, 78, 121, 0.35);
}

.inmm-form__checkbox-text a:hover,
.inmm-form__checkbox-text a:focus-visible {
	color: var(--color-link);
}

.inmm-form__field--checkbox.has-error .inmm-form__checkbox-control {
	border-color: #ce4056;
	background: #fff7f8;
}

.inmm-form__field--checkbox .inmm-form__field-error {
	margin-top: 6px;
}

.inmm-form__field-error {
	margin: 8px 0 0;
	font-family: var(--font-ui);
	font-size: 14px;
	line-height: 18px;
	color: #a62f41;
}

.inmm-form__status {
	margin: 16px 0 0;
	padding: 12px 14px;
	border-radius: 4px;
	font-family: var(--font-ui);
	font-size: 14px;
	line-height: 18px;
}

.inmm-form__status.is-error {
	background: #fff3f5;
	color: #8f2434;
}

.inmm-form__status.is-success {
	background: #edf9f4;
	color: #1f6f4f;
}

.inmm-form__actions {
	margin-top: 20px;
}

.inmm-form__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 24px;
	border: 1px solid var(--color-accent);
	border-radius: 4px;
	background: var(--color-accent);
	color: #ffffff;
	font-family: var(--font-ui);
	font-size: 16px;
	line-height: 20px;
	cursor: pointer;
	transition: filter 180ms ease, opacity 180ms ease;
}

.inmm-form__submit:hover,
.inmm-form__submit:focus-visible {
	background: var(--color-accent);
	border-color: var(--color-accent);
	color: #ffffff;
	filter: brightness(0.95);
}

.inmm-form__submit:disabled {
	cursor: not-allowed;
	opacity: 0.8;
	filter: none;
}

.inmm-form.is-loading .inmm-form__submit {
	cursor: wait;
}

.inmm-form.is-success {
	border-color: rgba(5, 150, 105, 0.38);
}

.inmm-form.is-error {
	border-color: rgba(206, 64, 86, 0.4);
}

/* Disclosure block */
.wp-singular .entry-content .wp-block-inmm-disclosure,
.wp-singular .entry-content .inmm-disclosure,
.editor-styles-wrapper .wp-block-inmm-disclosure.inmm-disclosure,
.editor-styles-wrapper .inmm-disclosure {
	margin: 0;
}

.wp-singular.page:not(.home) .entry-content > .wp-block-inmm-disclosure,
.wp-singular.page:not(.home) .entry-content > .inmm-disclosure {
	max-width: none;
	width: 100%;
}

/* Keep disclosure width in post body text at 848px total (including inner left offset). */
.wp-singular.single-post .entry-content > .wp-block-inmm-disclosure,
.wp-singular.single-post .entry-content > .inmm-disclosure {
	max-width: 848px;
	width: 100%;
	margin-left: 0;
	margin-right: auto;
}

/* Allow disclosure block wrappers to escape the default 848px content width. */
.wp-singular.page:not(.home) .entry-content > *:has(.wp-block-inmm-disclosure),
.wp-singular.page:not(.home) .entry-content > *:has(.inmm-disclosure) {
	max-width: none;
	width: 100%;
}

.wp-singular .entry-content .inmm-disclosure__summary {
	width: 100%;
	max-width: none;
	margin-left: 0;
	margin-right: 0;
}

.wp-singular .entry-content .inmm-disclosure__content {
	width: 100%;
	max-width: 848px;
	margin-left: 0;
	margin-right: auto;
}

.wp-singular .entry-content .inmm-disclosure__details,
.editor-styles-wrapper .inmm-disclosure__details {
	border-top: 1px solid #e5e5eb;
	border-bottom: 1px solid #e5e5eb;
}

.wp-singular .entry-content .inmm-disclosure + .inmm-disclosure .inmm-disclosure__details,
.editor-styles-wrapper .inmm-disclosure + .inmm-disclosure .inmm-disclosure__details {
	border-top: 0;
}

.wp-singular .entry-content .inmm-disclosure__summary,
.editor-styles-wrapper .inmm-disclosure__summary {
	display: flex;
	align-items: center;
	gap: 0;
	position: relative;
	padding: 20px 0 20px 66px;
	list-style: none;
	cursor: pointer;
}

.wp-singular .entry-content .inmm-disclosure__summary::-webkit-details-marker,
.editor-styles-wrapper .inmm-disclosure__summary::-webkit-details-marker {
	display: none;
}

.wp-singular .entry-content .inmm-disclosure__summary::marker,
.editor-styles-wrapper .inmm-disclosure__summary::marker {
	display: none;
}

.wp-singular .entry-content .inmm-disclosure__summary:focus-visible {
	outline: 2px solid var(--color-accent);
	outline-offset: 4px;
}

.wp-singular .entry-content .inmm-disclosure__icon,
.editor-styles-wrapper .inmm-disclosure__icon {
	position: absolute;
	top: 20px;
	left: 0;
	display: block;
	width: 42px;
	height: 52px;
	background-color: #d9dce3;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: contain;
	transition: background-color 180ms ease;
}

.wp-singular .entry-content .inmm-disclosure--icon-document .inmm-disclosure__icon,
.editor-styles-wrapper .inmm-disclosure--icon-document .inmm-disclosure__icon {
	-webkit-mask-image: url("assets/images/ic_files.svg");
	mask-image: url("assets/images/ic_files.svg");
}

.wp-singular .entry-content .inmm-disclosure--icon-standard .inmm-disclosure__icon,
.editor-styles-wrapper .inmm-disclosure--icon-standard .inmm-disclosure__icon {
	-webkit-mask-image: url("assets/images/ic_standard.svg");
	mask-image: url("assets/images/ic_standard.svg");
}

.wp-singular .entry-content .inmm-disclosure--icon-education .inmm-disclosure__icon,
.editor-styles-wrapper .inmm-disclosure--icon-education .inmm-disclosure__icon {
	-webkit-mask-image: url("assets/images/ic_education.svg");
	mask-image: url("assets/images/ic_education.svg");
}

.wp-singular .entry-content .inmm-disclosure--icon-link .inmm-disclosure__icon,
.editor-styles-wrapper .inmm-disclosure--icon-link .inmm-disclosure__icon {
	-webkit-mask-image: url("assets/images/ic_link.svg");
	mask-image: url("assets/images/ic_link.svg");
}

.wp-singular .entry-content .inmm-disclosure--icon-info .inmm-disclosure__icon,
.editor-styles-wrapper .inmm-disclosure--icon-info .inmm-disclosure__icon {
	-webkit-mask-image: url("assets/images/icon-action-dark.svg");
	mask-image: url("assets/images/icon-action-dark.svg");
}

.wp-singular .entry-content .inmm-disclosure--icon-none .inmm-disclosure__icon,
.editor-styles-wrapper .inmm-disclosure--icon-none .inmm-disclosure__icon {
	display: none;
}

.wp-singular .entry-content .inmm-disclosure__info,
.editor-styles-wrapper .inmm-disclosure__info {
	flex: 1 1 auto;
	min-width: 0;
	max-width: none;
	margin-right: 0;
}

.wp-singular .entry-content .inmm-disclosure__title,
.editor-styles-wrapper .inmm-disclosure__title {
	display: block;
	margin: 0;
	font-family: var(--font-text);
	font-weight: var(--fw-regular);
	font-size: 18px;
	line-height: 28px;
	color: #000000;
	transition: color 180ms ease;
}

.wp-singular .entry-content .inmm-disclosure__meta,
.editor-styles-wrapper .inmm-disclosure__meta {
	display: block;
	margin: 0;
	font-family: var(--font-text);
	font-weight: var(--fw-regular);
	font-size: 14px;
	line-height: 21.6px;
	color: #76767a;
}

.wp-singular .entry-content .inmm-disclosure__chevron,
.editor-styles-wrapper .inmm-disclosure__chevron {
	display: block;
	flex: 0 0 24px;
	width: 24px;
	height: 24px;
	margin-left: 76px;
	position: relative;
	transform: none;
}

.wp-singular .entry-content .inmm-disclosure__chevron::before,
.editor-styles-wrapper .inmm-disclosure__chevron::before {
	content: "";
	position: absolute;
	inset: 0;
	display: block;
	background-color: #76767a;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: 24px 24px;
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: 24px 24px;
	transform: rotate(0deg);
	transform-origin: center;
	transition: transform 220ms ease;
	-webkit-mask-image: url("assets/images/ic_arrow-right.svg");
	mask-image: url("assets/images/ic_arrow-right.svg");
}

.wp-singular .entry-content .inmm-disclosure__details[open] .inmm-disclosure__summary,
.editor-styles-wrapper .inmm-disclosure__details[open] .inmm-disclosure__summary,
.editor-styles-wrapper .inmm-disclosure__details.is-open .inmm-disclosure__summary {
	padding-bottom: 16px;
}

.wp-singular .entry-content .inmm-disclosure__details[open] .inmm-disclosure__chevron::before,
.editor-styles-wrapper .inmm-disclosure__details[open] .inmm-disclosure__chevron::before,
.editor-styles-wrapper .inmm-disclosure__details.is-open .inmm-disclosure__chevron::before {
	transform: rotate(90deg);
}

.wp-singular .entry-content .inmm-disclosure__content,
.editor-styles-wrapper .inmm-disclosure__content {
	padding: 0 48px 20px 66px;
}

.wp-singular .entry-content .inmm-disclosure__content > *:first-child,
.editor-styles-wrapper .inmm-disclosure__content > *:first-child {
	margin-top: 0;
}

.wp-singular .entry-content .inmm-disclosure__content > *:last-child,
.editor-styles-wrapper .inmm-disclosure__content > *:last-child {
	margin-bottom: 0;
}

.wp-singular .entry-content .inmm-disclosure--icon-none .inmm-disclosure__summary,
.wp-singular .entry-content .inmm-disclosure--icon-none .inmm-disclosure__content,
.editor-styles-wrapper .inmm-disclosure--icon-none .inmm-disclosure__summary,
.editor-styles-wrapper .inmm-disclosure--icon-none .inmm-disclosure__content {
	padding-left: 0;
}

.wp-singular .entry-content .inmm-disclosure__summary:hover .inmm-disclosure__title,
.wp-singular .entry-content .inmm-disclosure__summary:focus-visible .inmm-disclosure__title,
.editor-styles-wrapper .inmm-disclosure__summary:hover .inmm-disclosure__title,
.editor-styles-wrapper .inmm-disclosure__summary:focus-within .inmm-disclosure__title {
	color: var(--color-accent);
}

.wp-singular .entry-content .inmm-disclosure__summary:hover .inmm-disclosure__icon,
.wp-singular .entry-content .inmm-disclosure__summary:focus-visible .inmm-disclosure__icon,
.editor-styles-wrapper .inmm-disclosure__summary:hover .inmm-disclosure__icon,
.editor-styles-wrapper .inmm-disclosure__summary:focus-within .inmm-disclosure__icon {
	background-color: var(--color-accent);
}

.wp-singular .entry-content .inmm-disclosure__summary:hover .inmm-disclosure__chevron::before,
.wp-singular .entry-content .inmm-disclosure__summary:focus-visible .inmm-disclosure__chevron::before,
.editor-styles-wrapper .inmm-disclosure__summary:hover .inmm-disclosure__chevron::before,
.editor-styles-wrapper .inmm-disclosure__summary:focus-within .inmm-disclosure__chevron::before {
	background-color: var(--color-accent);
}

@media (max-width: 930px) {
	.wp-singular .entry-content .inmm-disclosure__summary,
	.editor-styles-wrapper .inmm-disclosure__summary {
		display: grid;
		grid-template-columns: 42px minmax(0, 1fr) 24px;
		column-gap: 16px;
		row-gap: 8px;
		align-items: start;
		padding: 20px 0;
	}

	.wp-singular .entry-content .inmm-disclosure__icon,
	.editor-styles-wrapper .inmm-disclosure__icon {
		grid-column: 1;
		grid-row: 1;
		position: static;
		top: auto;
		left: auto;
	}

	.wp-singular .entry-content .inmm-disclosure__info,
	.editor-styles-wrapper .inmm-disclosure__info {
		grid-column: 2;
		grid-row: 1;
		min-width: 0;
		margin-right: 0;
	}

	.wp-singular .entry-content .inmm-disclosure__chevron,
	.editor-styles-wrapper .inmm-disclosure__chevron {
		grid-column: 3;
		grid-row: 1;
		position: relative;
		top: auto;
		right: auto;
		margin-left: 0;
		justify-self: end;
		align-self: start;
		margin-top: 2px;
		transform: none;
	}

	.wp-singular .entry-content .inmm-disclosure__content,
	.editor-styles-wrapper .inmm-disclosure__content {
		padding: 0 0 20px 58px;
	}

	.wp-singular .entry-content .inmm-disclosure--icon-none .inmm-disclosure__summary,
	.editor-styles-wrapper .inmm-disclosure--icon-none .inmm-disclosure__summary {
		grid-template-columns: minmax(0, 1fr) 24px;
	}

	.wp-singular .entry-content .inmm-disclosure--icon-none .inmm-disclosure__info,
	.editor-styles-wrapper .inmm-disclosure--icon-none .inmm-disclosure__info {
		grid-column: 1;
	}

	.wp-singular .entry-content .inmm-disclosure--icon-none .inmm-disclosure__chevron,
	.editor-styles-wrapper .inmm-disclosure--icon-none .inmm-disclosure__chevron {
		grid-column: 2;
	}

	.wp-singular .entry-content .inmm-disclosure--icon-none .inmm-disclosure__content,
	.editor-styles-wrapper .inmm-disclosure--icon-none .inmm-disclosure__content {
		padding-left: 0;
	}
}

/* Content documents list */
.wp-singular .entry-content .docs-list,
.editor-styles-wrapper .docs-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.wp-singular.page:not(.home) .entry-content > .docs-list {
	max-width: none;
	width: 100%;
}

.wp-singular .entry-content .docs-list li,
.editor-styles-wrapper .docs-list li {
	display: flex;
	align-items: center;
	gap: 0;
	margin: 0;
	padding: 20px 0;
	padding-left: 66px;
	position: relative;
	cursor: pointer;
}

.wp-singular.page:not(.home) .entry-content .docs-list li {
	margin: 0;
	padding: 20px 0;
	padding-left: 66px;
	position: relative;
}

.wp-singular .entry-content .docs-list li::before,
.editor-styles-wrapper .docs-list li::before {
	content: "";
	display: block;
	width: 42px;
	height: 52px;
	background-color: #d9dce3;
	-webkit-mask-image: url("assets/images/ic_files.svg");
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	mask-image: url("assets/images/ic_files.svg");
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: contain;
	transition: background-color 180ms ease;
	position: absolute;
	top: 20px;
	left: 0;
}

.wp-singular.page:not(.home) .entry-content .docs-list li::before {
	content: "";
	display: block;
	width: 42px;
	height: 52px;
	background-color: #d9dce3;
	-webkit-mask-image: url("assets/images/ic_files.svg");
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	mask-image: url("assets/images/ic_files.svg");
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: contain;
	transition: background-color 180ms ease;
	position: absolute;
	top: 20px;
	left: 0;
}

.wp-singular .entry-content .docs-list li.docs-list__item--link::before,
.wp-singular.page:not(.home) .entry-content .docs-list li.docs-list__item--link::before,
.editor-styles-wrapper .docs-list li.docs-list__item--link::before {
	-webkit-mask-image: url("assets/images/ic_link.svg");
	mask-image: url("assets/images/ic_link.svg");
}

.wp-singular .entry-content .docs-list li.docs-list__item--icon-document::before,
.wp-singular.page:not(.home) .entry-content .docs-list li.docs-list__item--icon-document::before,
.editor-styles-wrapper .docs-list li.docs-list__item--icon-document::before {
	-webkit-mask-image: url("assets/images/ic_files.svg");
	mask-image: url("assets/images/ic_files.svg");
}

.wp-singular .entry-content .docs-list li.docs-list__item--icon-standard::before,
.wp-singular.page:not(.home) .entry-content .docs-list li.docs-list__item--icon-standard::before,
.editor-styles-wrapper .docs-list li.docs-list__item--icon-standard::before {
	-webkit-mask-image: url("assets/images/ic_standard.svg");
	mask-image: url("assets/images/ic_standard.svg");
}

.wp-singular .entry-content .docs-list li.docs-list__item--icon-education::before,
.wp-singular.page:not(.home) .entry-content .docs-list li.docs-list__item--icon-education::before,
.editor-styles-wrapper .docs-list li.docs-list__item--icon-education::before {
	-webkit-mask-image: url("assets/images/ic_education.svg");
	mask-image: url("assets/images/ic_education.svg");
}

.wp-singular .entry-content .docs-list li.docs-list__item--icon-action::before,
.wp-singular.page:not(.home) .entry-content .docs-list li.docs-list__item--icon-action::before,
.editor-styles-wrapper .docs-list li.docs-list__item--icon-action::before {
	-webkit-mask-image: url("assets/images/icon-action-dark.svg");
	mask-image: url("assets/images/icon-action-dark.svg");
}

.wp-singular .entry-content .docs-list li + li,
.editor-styles-wrapper .docs-list li + li {
	border-top: 1px solid #e5e5eb;
}

.wp-singular .entry-content .docs-list li:last-child,
.editor-styles-wrapper .docs-list li:last-child {
	border-bottom: 1px solid #e5e5eb;
}

.wp-singular .entry-content .docs-list__icon,
.editor-styles-wrapper .docs-list__icon {
	display: none;
}

.wp-singular .entry-content .docs-list__info,
.editor-styles-wrapper .docs-list__info {
	flex: 1 1 auto;
	min-width: 0;
	max-width: 782px;
	margin-right: 72px;
}

.wp-singular .entry-content .docs-list__title,
.editor-styles-wrapper .docs-list__title {
	margin: 0;
	font-family: var(--font-text);
	font-weight: var(--fw-regular);
	font-size: 18px;
	line-height: 28px;
	color: #000000;
	transition: color 180ms ease;
}

.wp-singular .entry-content .docs-list__meta,
.editor-styles-wrapper .docs-list__meta {
	margin: 0;
	font-family: var(--font-text);
	font-weight: var(--fw-regular);
	font-size: 14px;
	line-height: 21.6px;
	color: #76767a;
}

.wp-singular .entry-content .docs-list li.docs-list__item--link .docs-list__meta,
.editor-styles-wrapper .docs-list li.docs-list__item--link .docs-list__meta {
	overflow-wrap: anywhere;
	word-break: break-word;
}

.wp-singular .entry-content .docs-list__row-link {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: block;
}

.wp-singular .entry-content a.btn.docs-list__button,
.editor-styles-wrapper a.btn.docs-list__button {
	flex: 0 0 auto;
	align-self: flex-start;
	margin-left: auto;
	min-width: 152px;
	padding: 12px 24px;
	position: relative;
	z-index: 2;
}

.wp-singular .entry-content a.btn.docs-list__button.btn--full,
.editor-styles-wrapper a.btn.docs-list__button.btn--full {
	display: inline-flex;
	width: auto;
}

.wp-singular .entry-content .docs-list li:hover .docs-list__title,
.wp-singular .entry-content .docs-list li:focus-within .docs-list__title,
.editor-styles-wrapper .docs-list li:hover .docs-list__title,
.editor-styles-wrapper .docs-list li:focus-within .docs-list__title {
	color: var(--color-accent);
}

.wp-singular .entry-content .docs-list li:hover::before,
.wp-singular .entry-content .docs-list li:focus-within::before,
.editor-styles-wrapper .docs-list li:hover::before,
.editor-styles-wrapper .docs-list li:focus-within::before {
	background-color: var(--color-accent);
}

.wp-singular.page:not(.home) .entry-content .docs-list li:hover::before,
.wp-singular.page:not(.home) .entry-content .docs-list li:focus-within::before {
	background-color: var(--color-accent);
}

.wp-singular .entry-content .docs-list li:hover a.btn.docs-list__button,
.wp-singular .entry-content .docs-list li:focus-within a.btn.docs-list__button,
.editor-styles-wrapper .docs-list li:hover a.btn.docs-list__button,
.editor-styles-wrapper .docs-list li:focus-within a.btn.docs-list__button {
	color: #ffffff;
	text-decoration: none;
	filter: brightness(0.95);
}

/* Content links list */
.wp-singular .entry-content .links-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.wp-singular.page:not(.home) .entry-content > .links-list {
	max-width: none;
	width: 100%;
}

.wp-singular .entry-content .links-list li {
	display: flex;
	align-items: center;
	gap: 0;
	margin: 0;
	padding: 20px 0;
	padding-left: 66px;
	position: relative;
	cursor: pointer;
	border-bottom: 1px solid #e5e5eb;
	transition: border-color 180ms ease;
}

.wp-singular.page:not(.home) .entry-content .links-list li {
	margin: 0;
	padding: 20px 0;
	padding-left: 66px;
	position: relative;
}

.wp-singular .entry-content .links-list li::before {
	content: "";
	display: block;
	width: 42px;
	height: 52px;
	background-color: #d9dce3;
	-webkit-mask-image: url("assets/images/ic_link.svg");
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	mask-image: url("assets/images/ic_link.svg");
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: contain;
	transition: background-color 180ms ease;
	position: absolute;
	top: 20px;
	left: 0;
}

.wp-singular.page:not(.home) .entry-content .links-list li::before {
	content: "";
	display: block;
	width: 42px;
	height: 52px;
	background-color: #d9dce3;
	-webkit-mask-image: url("assets/images/ic_link.svg");
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	mask-image: url("assets/images/ic_link.svg");
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: contain;
	transition: background-color 180ms ease;
	position: absolute;
	top: 20px;
	left: 0;
}

.wp-singular .entry-content .links-list__info {
	position: relative;
	z-index: 2;
	flex: 1 1 auto;
	min-width: 0;
	max-width: 782px;
	margin-right: 72px;
}

.wp-singular .entry-content .links-list__title {
	margin: 0;
	font-family: var(--font-text);
	font-weight: var(--fw-regular);
	font-size: 18px;
	line-height: 28px;
	color: #000000;
	transition: color 180ms ease;
}

.wp-singular .entry-content .links-list__url {
	margin: 0;
	font-family: var(--font-text);
	font-weight: var(--fw-regular);
	font-size: 14px;
	line-height: 21.6px;
	color: #76767a;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.wp-singular .entry-content .links-list__row-link {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: block;
}

.wp-singular .entry-content a.btn.links-list__button {
	flex: 0 0 auto;
	margin-left: auto;
	min-width: 152px;
	padding: 12px 24px;
	position: relative;
	z-index: 2;
}

.wp-singular .entry-content .links-list li:hover .links-list__title,
.wp-singular .entry-content .links-list li:focus-within .links-list__title {
	color: var(--color-accent);
}

.wp-singular .entry-content .links-list li:hover a.btn.links-list__button,
.wp-singular .entry-content .links-list li:focus-within a.btn.links-list__button {
	color: #ffffff;
	text-decoration: none;
	filter: brightness(0.95);
}

.wp-singular .entry-content .links-list li:hover::before,
.wp-singular .entry-content .links-list li:focus-within::before {
	background-color: var(--color-accent);
}

.wp-singular.page:not(.home) .entry-content .links-list li:hover::before,
.wp-singular.page:not(.home) .entry-content .links-list li:focus-within::before {
	background-color: var(--color-accent);
}

.wp-singular .entry-content .links-list li:hover,
.wp-singular .entry-content .links-list li:focus-within {
	border-bottom-color: var(--color-accent);
}

@media (max-width: 640px) {
	.inmm-form {
		padding: 20px 16px;
	}

	.inmm-form__title {
		font-size: 22px;
		line-height: 28px;
	}

	.inmm-form__submit {
		width: 100%;
	}

	.wp-singular .entry-content .inmm-disclosure__summary,
	.editor-styles-wrapper .inmm-disclosure__summary {
		display: grid;
		grid-template-columns: 42px minmax(0, 1fr) 24px;
		column-gap: 16px;
		row-gap: 8px;
		align-items: start;
		padding: 20px 0;
	}

	.wp-singular .entry-content .inmm-disclosure__icon,
	.editor-styles-wrapper .inmm-disclosure__icon {
		position: static;
		top: auto;
		left: auto;
	}

	.wp-singular .entry-content .inmm-disclosure__info,
	.editor-styles-wrapper .inmm-disclosure__info {
		margin-right: 0;
	}

	.wp-singular .entry-content .inmm-disclosure__chevron,
	.editor-styles-wrapper .inmm-disclosure__chevron {
		position: relative;
		top: auto;
		right: auto;
		margin-left: 0;
		justify-self: end;
		align-self: start;
		margin-top: 2px;
		transform: none;
	}

	.wp-singular .entry-content .inmm-disclosure__details[open] .inmm-disclosure__summary,
	.editor-styles-wrapper .inmm-disclosure__details[open] .inmm-disclosure__summary,
	.editor-styles-wrapper .inmm-disclosure__details.is-open .inmm-disclosure__summary {
		padding-bottom: 16px;
	}

	.wp-singular .entry-content .inmm-disclosure__content,
	.editor-styles-wrapper .inmm-disclosure__content {
		padding: 0 0 20px 58px;
	}

	.wp-singular .entry-content .inmm-disclosure--icon-none .inmm-disclosure__summary,
	.editor-styles-wrapper .inmm-disclosure--icon-none .inmm-disclosure__summary {
		grid-template-columns: minmax(0, 1fr) 24px;
	}

	.wp-singular .entry-content .inmm-disclosure--icon-none .inmm-disclosure__content,
	.editor-styles-wrapper .inmm-disclosure--icon-none .inmm-disclosure__content {
		padding-left: 0;
	}

	.wp-singular .entry-content .docs-list li,
	.wp-singular.page:not(.home) .entry-content .docs-list li,
	.editor-styles-wrapper .docs-list li {
		display: grid;
		grid-template-columns: 42px minmax(0, 1fr);
		column-gap: 16px;
		row-gap: 8px;
		align-items: start;
		padding-left: 0;
	}

	.wp-singular .entry-content .docs-list__icon,
	.editor-styles-wrapper .docs-list__icon {
		display: none;
	}

	.wp-singular .entry-content .docs-list__info,
	.editor-styles-wrapper .docs-list__info {
		margin-right: 0;
	}

	.wp-singular .entry-content .docs-list li::before,
	.wp-singular.page:not(.home) .entry-content .docs-list li::before,
	.editor-styles-wrapper .docs-list li::before {
		width: 42px;
		height: 52px;
		position: static;
		top: auto;
		left: auto;
	}

	.wp-singular .entry-content a.btn.docs-list__button,
	.editor-styles-wrapper a.btn.docs-list__button {
		grid-column: 2;
		width: 100%;
		min-width: 0;
		margin-top: 8px;
	}

	.wp-singular .entry-content .links-list li {
		display: grid;
		grid-template-columns: 42px minmax(0, 1fr);
		column-gap: 16px;
		row-gap: 8px;
		align-items: start;
		padding-left: 0;
	}

	.wp-singular.page:not(.home) .entry-content .links-list li {
		padding-left: 0;
	}

	.wp-singular .entry-content .links-list li::before,
	.wp-singular.page:not(.home) .entry-content .links-list li::before {
		width: 42px;
		height: 52px;
		position: static;
		top: auto;
		left: auto;
	}

	.wp-singular .entry-content .links-list__info {
		margin-right: 0;
	}

	.wp-singular .entry-content a.btn.links-list__button {
		grid-column: 2;
		width: 100%;
		min-width: 0;
		margin-top: 8px;
	}
}

/* Utilities */
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Responsive system: desktop >=1200, tablet 768-1199, mobile <=767, small <=480 */
@media (max-width: 1199px) {
	:root {
		--fs-h1: 48px;
		--lh-h1: 56px;
		--fs-h2: 28px;
		--lh-h2: 34px;
		--fs-h3: 21px;
		--lh-h3: 28px;
		--fs-body: 17px;
		--lh-body: 27px;
	}

	.site-main {
		padding-top: 24px;
		padding-bottom: 64px;
	}

	.wp-singular.page:not(.home) .site-main,
	.wp-singular.single-post .site-main {
		padding-top: 200px;
		padding-bottom: 112px;
	}

	.site-footer {
		min-height: 0;
		padding: 80px 0 28px;
	}

	.site-footer__inner {
		padding-inline: 24px;
	}

	.site-footer__top {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		column-gap: 24px;
		row-gap: 40px;
	}

	.site-footer__subscribe {
		grid-column: 1 / -1;
		min-height: 329px;
		--subscribe-description-width: calc((100% - 24px) / 2);
		--subscribe-line-width: calc((100% - 24px) / 2);
	}

	.site-footer__flag {
		position: absolute;
		right: 0;
		bottom: 0;
		margin-top: 0;
		width: 320px;
		height: 329px;
	}

	.site-footer__bottom {
		width: 100%;
		margin-left: 0;
		margin-top: 48px;
		padding-inline: 0;
	}

	.site-footer__bottom-left,
	.site-footer__bottom-right {
		width: 100%;
	}

	.site-footer__bottom-right {
		margin-left: 0;
		justify-content: flex-start;
	}

	.wp-singular:not(.home) .entry-content h2 {
		margin-top: 72px;
	}

	.wp-singular.page:not(.home) .entry-content h3,
	.wp-singular.page:not(.home) .entry-content h4 {
		margin-top: 44px;
	}

	.wp-singular .entry-content .lead,
	.editor-styles-wrapper .lead {
		font-size: 22px;
		line-height: 32px;
	}

	.wp-singular .entry-content .team-grid__list,
	.editor-styles-wrapper .team-grid__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 36px 24px;
	}
}

@media (max-width: 767px) {
	:root {
		--fs-h1: 36px;
		--lh-h1: 44px;
		--fs-h2: 26px;
		--lh-h2: 32px;
		--fs-h3: 20px;
		--lh-h3: 27px;
		--fs-h4: 17px;
		--lh-h4: 24px;
		--fs-body: 16px;
		--lh-body: 25px;
		--fs-nav: 16px;
		--lh-nav: 24px;
	}

	.site-main {
		padding-top: 16px;
		padding-bottom: 40px;
	}

	.wp-singular.page:not(.home) .site-main,
	.wp-singular.single-post .site-main {
		padding-top: 158px;
		padding-bottom: 76px;
	}

	.site-footer {
		padding: 56px 0 20px;
	}

	.site-footer__inner {
		padding-inline: 16px;
	}

	.site-footer__top {
		grid-template-columns: 1fr;
		row-gap: 0;
	}

	.site-footer__logo {
		margin-bottom: 24px;
	}

	.site-footer__nav,
	.site-footer__subscribe {
		margin-top: 32px;
		padding-top: 32px;
		border-top: 1px solid #3c4054;
	}

	.site-footer__subscribe {
		display: block;
		min-height: 0;
		--subscribe-description-width: 100%;
		--subscribe-line-width: 100%;
	}

	.site-footer__form {
		flex-direction: row;
		align-items: center;
		gap: 0;
	}

	.site-footer__form input {
		width: auto;
		height: 44px;
		border-radius: 4px 0 0 4px;
	}

	.site-footer__form button {
		width: auto;
		height: 44px;
		border-radius: 0 4px 4px 0;
	}

	.site-footer__bottom {
		display: flex;
		flex-direction: column;
		margin-top: 36px;
		padding-top: 18px;
	}

	.site-footer__flag {
		display: none;
	}

	.site-footer__bottom-left,
	.site-footer__bottom-right {
		display: flex;
		width: 100%;
		gap: 10px 14px;
	}

	.site-footer__bottom-right {
		order: 1;
		justify-content: space-between;
	}

	.site-footer__bottom-left {
		order: 2;
		flex-direction: row;
		align-items: center;
	}

	.site-footer__accessibility {
		min-height: 44px;
	}

	.site-footer__lang {
		margin-left: auto;
	}

	.wp-singular.page:not(.home) .entry-header > *,
	.wp-singular.page:not(.home) .entry-content > * {
		max-width: 100%;
	}

	.wp-singular.page:not(.home) .entry-content h3,
	.wp-singular.page:not(.home) .entry-content h4 {
		margin-top: 32px;
		margin-bottom: 16px;
	}

	.wp-singular:not(.home) .entry-content h2 {
		margin-top: 48px;
		margin-bottom: 14px;
	}

	.wp-singular.page:not(.home) .entry-content h2 + h3,
	.wp-singular.page:not(.home) .entry-content h3 + h4 {
		margin-top: 20px;
	}

	.wp-singular .entry-content .lead,
	.editor-styles-wrapper .lead {
		font-size: 20px;
		line-height: 30px;
	}

	.wp-singular .entry-content .team-grid__list,
	.editor-styles-wrapper .team-grid__list {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.wp-singular .entry-content .wp-block-table {
		overflow-x: visible;
		-webkit-overflow-scrolling: touch;
	}

	.wp-singular .entry-content .wp-block-table table {
		min-width: 0;
		table-layout: fixed;
	}

	.wp-singular .entry-content .wp-block-table th,
	.wp-singular .entry-content .wp-block-table td {
		padding: 10px 0;
		overflow-wrap: anywhere;
		word-break: break-word;
	}

	.wp-singular .entry-content .wp-block-table.inmm-table-stack-mobile table,
	.wp-singular .entry-content .wp-block-table.inmm-table-stack-mobile thead,
	.wp-singular .entry-content .wp-block-table.inmm-table-stack-mobile tbody,
	.wp-singular .entry-content .wp-block-table.inmm-table-stack-mobile tfoot,
	.wp-singular .entry-content .wp-block-table.inmm-table-stack-mobile tr,
	.editor-styles-wrapper .inmm-table-stack-mobile .wp-block-table table,
	.editor-styles-wrapper .inmm-table-stack-mobile .wp-block-table thead,
	.editor-styles-wrapper .inmm-table-stack-mobile .wp-block-table tbody,
	.editor-styles-wrapper .inmm-table-stack-mobile .wp-block-table tfoot,
	.editor-styles-wrapper .inmm-table-stack-mobile .wp-block-table tr {
		display: block;
		width: 100%;
	}

	.wp-singular .entry-content .wp-block-table.inmm-table-stack-mobile tr,
	.editor-styles-wrapper .inmm-table-stack-mobile .wp-block-table tr {
		border-top: 1px solid #e5e5eb;
		border-bottom: 1px solid #e5e5eb;
	}

	.wp-singular .entry-content .wp-block-table.inmm-table-stack-mobile tr + tr,
	.editor-styles-wrapper .inmm-table-stack-mobile .wp-block-table tr + tr {
		border-top: 0;
	}

	.wp-singular .entry-content .wp-block-table.inmm-table-stack-mobile th,
	.wp-singular .entry-content .wp-block-table.inmm-table-stack-mobile td,
	.editor-styles-wrapper .inmm-table-stack-mobile .wp-block-table th,
	.editor-styles-wrapper .inmm-table-stack-mobile .wp-block-table td {
		display: block;
		width: 100% !important;
		padding: 10px 0;
		border-top: 0;
		border-bottom: 0;
	}

	.wp-singular .entry-content a.btn,
	.wp-singular .entry-content .wp-block-button__link {
		min-height: 44px;
	}

	.inmm-form {
		margin-top: 56px;
		margin-bottom: 20px;
	}
}

@media (max-width: 480px) {
	:root {
		--fs-h1: 32px;
		--lh-h1: 40px;
		--fs-h2: 24px;
		--lh-h2: 30px;
		--fs-h3: 19px;
		--lh-h3: 25px;
	}

	.site-lang__link {
		padding-inline: 3px;
		font-size: 13px;
	}

	.wp-singular.page:not(.home) .site-main,
	.wp-singular.single-post .site-main {
		padding-top: 126px;
	}
}

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