/* Homepage — Stage 2
 * Content width on prod: mostly .t-container = 1200px centered.
 * Marquiz iframe: 1024px centered (not full-bleed).
 */

/* Tilda .t-container = 1200 @ x:120; inner cols start at x:140 → 20px gutters */
.domfk-home-container {
	width: min(100% - 40px, 1200px);
	margin: 0 auto;
	padding-left: 20px;
	padding-right: 20px;
	box-sizing: border-box;
}

.domfk-home-section {
	padding: 0;
}

.domfk-home-heading {
	margin: 0;
	padding: 60px 0 15px;
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 600;
	line-height: 1.2;
	color: #000;
	text-transform: uppercase;
}

/* --- Hero (t712) --- */
.domfk-hero {
	position: relative;
	min-height: 900px;
	color: #fff;
	overflow: hidden;
	display: flex;
	align-items: center;
}

.domfk-hero__bg {
	position: absolute;
	inset: 0;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}

.domfk-hero__shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
}

.domfk-hero__inner {
	position: relative;
	z-index: 1;
	width: min(100% - 40px, 1200px);
	margin: 0 auto;
	padding: 180px 20px 80px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	gap: 40px;
	align-items: start;
	box-sizing: border-box;
}

/* t-uptitle */
.domfk-hero__address {
	margin: 0 0 20px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.35;
	color: #fff;
}

/* t-title + <strong> on prod */
.domfk-hero__title {
	margin: 0 0 20px;
	font-size: 45px;
	font-weight: 700;
	line-height: 1.17;
	color: #fff;
}

.domfk-hero__title-line,
.domfk-hero__price,
.domfk-hero__price-note {
	display: block;
}

.domfk-hero__price {
	font-weight: 700;
}

.domfk-hero__price-note {
	margin-top: 4px;
	font-size: 20px;
	font-weight: 700;
	line-height: 22px;
	opacity: 1;
}

/* t-descr 300; list titles are <strong> → 700 */
.domfk-hero__descr {
	max-width: 660px;
	font-size: 17px;
	font-weight: 300;
	line-height: 1.45;
	color: #fff;
}

.domfk-hero__list-title {
	margin: 14px 0 6px;
	font-weight: 700;
}

.domfk-hero__list {
	margin: 0 0 8px;
	padding-left: 1.15em;
	font-weight: 300;
}

.domfk-hero__list li {
	margin: 0;
	font-weight: 300;
}

.domfk-hero__card {
	position: relative;
	width: 360px;
	max-width: 100%;
	margin-top: 20px;
}

.domfk-hero__card-bg {
	position: absolute;
	inset: 0;
	background: #fff;
	border-radius: 30px;
}

.domfk-hero__card-body {
	position: relative;
	z-index: 1;
	padding: 28px 34px 30px;
	box-sizing: border-box;
}

.domfk-hero__card-title {
	margin: 0 0 16px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.25;
	color: #000;
	text-align: left;
}

.domfk-hero__form {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 12px;
	align-items: stretch;
	justify-items: stretch;
	width: 100%;
	max-width: 100%;
	text-align: left;
	box-sizing: border-box;
}

/* Beat .domfk-lead-form label { display:grid } (many :not() → high specificity). */
.domfk-hero__form.domfk-lead-form .domfk-hero__field {
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	gap: 0 !important;
	box-sizing: border-box;
}

.domfk-hero__form.domfk-lead-form .domfk-hero__field > input[type="text"],
.domfk-hero__form.domfk-lead-form .domfk-hero__field .domfk-phone-field--box {
	display: block;
	width: 100% !important;
	max-width: 100% !important;
	min-width: 0;
	min-height: 50px !important;
	height: 50px !important;
	margin: 0 !important;
	padding: 0 14px !important;
	border: 0 !important;
	border-radius: 5px !important;
	background: #f0f0f0 !important;
	box-shadow: none !important;
	box-sizing: border-box !important;
	outline: none;
}

.domfk-hero__form.domfk-lead-form .domfk-hero__field .domfk-phone-field--box {
	display: flex !important;
	align-items: center;
	padding: 0 14px 0 12px !important;
	gap: 8px;
}

.domfk-hero__form.domfk-lead-form .domfk-hero__field .domfk-phone-field--box input[type="tel"] {
	flex: 1 1 auto;
	width: auto !important;
	max-width: none !important;
	height: 50px !important;
	min-height: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	font-size: 15px !important;
	line-height: 50px !important;
	box-shadow: none !important;
}

.domfk-hero__form.domfk-lead-form .domfk-hero__field > input[type="text"] {
	font: inherit;
	font-size: 15px;
	line-height: 50px;
	color: #000;
}

.domfk-hero__form.domfk-lead-form .domfk-hero__field > input[type="text"]::placeholder {
	color: #000;
	opacity: 0.5;
}

.domfk-hero__consent {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: flex-start !important;
	gap: 10px;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.35;
	color: #111 !important;
}

.domfk-hero__consent input {
	margin-top: 2px;
	flex: 0 0 18px;
	width: 18px;
	height: 18px;
}

.domfk-hero__consent .domfk-consent__text {
	flex: 1 1 auto;
	min-width: 0;
	color: #111 !important;
}

.domfk-hero__consent a {
	color: #c5252d !important;
	text-decoration: underline;
}

.domfk-hero__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	justify-self: stretch;
	width: 100%;
	min-height: 50px;
	margin: 4px 0 0;
	padding: 14px 30px;
	border: 0;
	border-radius: 100px;
	background: linear-gradient(0.75turn, #f83600 0%, #f9d423 100%);
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	box-shadow: 0 5px 15px 0 rgba(248, 54, 0, 0.5);
	transition: filter 0.2s ease;
	font-family: inherit;
}

.domfk-hero__submit:hover {
	filter: brightness(1.05);
}

.domfk-hero__form [data-lead-error] {
	color: #c5252d;
	font-size: 13px;
	margin: 0;
}

.domfk-hero__form [data-lead-success] {
	padding: 10px 12px;
	background: #eef8ee;
	border-radius: 8px;
	font-size: 14px;
	color: #1d1d1d;
}

.domfk-hp {
	position: absolute !important;
	left: -9999px !important;
	height: 0 !important;
	width: 0 !important;
	opacity: 0 !important;
}

.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;
}

/* --- About --- */
.domfk-about {
	background: #f8ecce;
}

.domfk-about__panel {
	background: transparent;
	padding: 0 0 64px;
}

.domfk-about__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px 48px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.domfk-about__item {
	display: flex;
	align-items: center;
	gap: 20px;
}

.domfk-about__icon {
	width: 85px;
	height: 85px;
	object-fit: contain;
	flex-shrink: 0;
}

.domfk-about__label {
	font-size: 25px;
	font-weight: 500;
	line-height: 1.35;
	text-transform: uppercase;
	color: #000;
}

/* --- Services mosaic (t939) — 570/275/275/275, gap 20 --- */
.domfk-services {
	padding-bottom: 60px;
	background: #f8ecce;
}

.domfk-services__mosaic {
	display: grid;
	grid-template-columns: 275px 275px 275px 275px;
	grid-template-rows: 285px 275px;
	gap: 20px;
	margin: 0 0 20px;
	justify-content: start;
}

.domfk-services__cell--wide {
	grid-column: 1 / span 2;
	grid-row: 1;
}

.domfk-services__cell--sm1 {
	grid-column: 1;
	grid-row: 2;
}

.domfk-services__cell--sm2 {
	grid-column: 2;
	grid-row: 2;
}

.domfk-services__cell--tall {
	grid-column: 3;
	grid-row: 1 / span 2;
}

.domfk-services__cell--stack1 {
	grid-column: 4;
	grid-row: 1;
}

.domfk-services__cell--stack2 {
	grid-column: 4;
	grid-row: 2;
}

.domfk-services__card {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
	color: #fff;
	text-decoration: none;
}

.domfk-services__card:hover,
.domfk-services__card:focus,
.domfk-services__card:hover .domfk-services__title,
.domfk-services__card:focus .domfk-services__title {
	color: #fff;
	text-decoration: none;
}

.domfk-services__media {
	position: absolute;
	inset: 0;
	background-position: center;
	background-size: cover;
	transition: transform 0.45s ease;
}

.domfk-services__media--focus-top {
	background-position: center top;
}

.domfk-services__card:hover .domfk-services__media {
	transform: scale(1.06);
}

.domfk-services__overlay {
	position: absolute;
	inset: 0;
	background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.9));
}

.domfk-services__title {
	position: absolute;
	left: 16px;
	right: 16px;
	bottom: 16px;
	z-index: 1;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.25;
}

/* --- Responsive --- */
@media (max-width: 1100px) {
	.domfk-hero {
		min-height: 0;
	}

	.domfk-hero__inner {
		grid-template-columns: 1fr;
		padding-top: 160px;
	}

	.domfk-hero__card {
		width: min(360px, 100%);
	}

	.domfk-hero__title {
		font-size: 36px;
	}

	.domfk-about__label {
		font-size: 20px;
	}

	.domfk-services__mosaic {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-template-rows: none;
		gap: 12px;
	}

	.domfk-services__cell--wide,
	.domfk-services__cell--sm1,
	.domfk-services__cell--sm2,
	.domfk-services__cell--tall,
	.domfk-services__cell--stack1,
	.domfk-services__cell--stack2 {
		grid-column: auto;
		grid-row: auto;
	}

	.domfk-services__cell--wide {
		grid-column: 1 / -1;
	}

	.domfk-services__cell--tall {
		grid-column: 1 / -1;
		min-height: 280px;
	}

	.domfk-services__card {
		min-height: 200px;
	}
}

@media (max-width: 767px) {
	.domfk-hero__inner {
		padding: 100px 0 40px;
	}

	.domfk-hero__title {
		font-size: 28px;
		line-height: 1.2;
	}

	.domfk-hero__descr {
		font-size: 15px;
	}

	.domfk-about__grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.domfk-about__icon {
		width: 60px;
		height: 60px;
	}

	.domfk-about__label {
		font-size: 15px;
	}

	.domfk-services__mosaic {
		grid-template-columns: 1fr;
	}

	.domfk-services__title {
		font-size: 15px;
		left: 10px;
		right: 10px;
		bottom: 10px;
	}

	/* Keep faces (e.g. Массаж) in frame on tall mobile crops */
	.domfk-services__media--focus-top {
		background-position: center 12%;
	}
}

@media (max-width: 480px) {
	.domfk-hero__inner {
		padding-top: 24px;
	}
}

/* --- Marquiz (prod iframe 1024×600 @ x:208 on 1440) --- */
.domfk-marquiz {
	padding: 45px 0 0;
	background: #f8ecce;
}

.domfk-marquiz__frame-wrap {
	width: min(100% - 40px, 1024px);
	margin: 0 auto;
	box-sizing: border-box;
}

.domfk-marquiz__frame {
	display: block;
	width: 100%;
	height: 600px;
	border: 0;
	background: #fff;
}

/* --- News --- */
.domfk-news {
	padding-bottom: 48px;
	background: #f8ecce;
}

.domfk-news__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	margin: 0;
	padding: 0;
	list-style: none;
	overflow: visible;
	justify-content: stretch;
}

.domfk-news__card {
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-height: 280px;
	padding: 28px 24px;
	background: #f3e4b8;
	color: #111;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	box-sizing: border-box;
	overflow: hidden;
}

.domfk-news__card--media {
	padding: 0;
	min-height: 0;
}

.domfk-news__media {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #e8d9a8;
}

.domfk-news__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.domfk-news__body {
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
	padding: 20px 22px 24px;
}

.domfk-news__card:hover {
	color: #111;
	text-decoration: none;
}

.domfk-news__footer {
	display: flex;
	justify-content: center;
	padding: 28px 0 8px;
}

.domfk-news__next {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 36px;
	border-radius: 100px;
	background: #c5252d;
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
}

.domfk-news__next:hover {
	color: #fff;
	filter: brightness(1.05);
}

.domfk-news__card:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
	color: #111;
	text-decoration: none;
}

.domfk-news__title {
	font-size: 18px;
	font-weight: 600;
	line-height: 1.35;
	flex: 1;
}

.domfk-news__date {
	font-size: 13px;
	font-weight: 400;
	color: #666;
}

.domfk-news__more {
	font-size: 14px;
	font-weight: 600;
	color: #c5252d;
}

/* --- App --- */
.domfk-app {
	padding: 56px 0;
	background: #f8ecce;
}

.domfk-app__inner {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 40px;
	align-items: center;
}

.domfk-app__title {
	margin: 0 0 16px;
	font-size: clamp(22px, 3vw, 30px);
	font-weight: 600;
	line-height: 1.3;
	color: #000;
}

.domfk-app__text {
	margin: 0 0 24px;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.45;
	color: #000;
}

.domfk-app__stores {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.domfk-app__stores img {
	display: block;
	height: 48px;
	width: auto;
}

.domfk-app__phone img {
	display: block;
	width: min(100%, 320px);
	height: auto;
	margin: 0 auto;
}

/* --- Find us --- */
.domfk-find {
	padding: 56px 0 60px;
	background: #f8ecce;
}

.domfk-find__inner {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 36px;
	align-items: start;
}

.domfk-find__title {
	margin: 0 0 18px;
	font-size: clamp(26px, 3vw, 36px);
	font-weight: 600;
	color: #000;
}

.domfk-find__text,
.domfk-find__hours p {
	margin: 0 0 10px;
	font-size: 16px;
	line-height: 1.5;
	color: #222;
}

.domfk-find__map {
	position: relative;
	width: 100%;
	height: 400px;
	background: #ddd;
	overflow: hidden;
}

.domfk-find__map iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

@media (max-width: 980px) {
	.domfk-news__grid {
		display: grid;
		grid-template-columns: 1fr;
		overflow: visible;
		scroll-snap-type: none;
		gap: 16px;
		padding-bottom: 0;
	}

	.domfk-news__item {
		flex: none;
		width: 100%;
	}

	.domfk-app__inner,
	.domfk-find__inner {
		grid-template-columns: 1fr;
	}

	/* Map full-bleed on mobile: no side/bottom gutters */
	.domfk-find {
		padding-bottom: 0 !important;
		overflow-x: clip;
	}

	.domfk-find__map {
		width: 100vw;
		max-width: 100vw;
		margin-left: calc(50% - 50vw);
		margin-right: calc(50% - 50vw);
		border-radius: 0;
	}

	.domfk-marquiz__frame {
		height: 520px;
	}
}

@media (max-width: 560px) {
	.domfk-news__item {
		flex: none;
		width: 100%;
	}
}

/* --- Constructor (t1040) — card ~1158 in 1200 container --- */
.domfk-ctor {
	padding: 45px 0 60px;
	background: #f8ecce;
}

.domfk-ctor__card {
	width: 100%;
	max-width: 1158px;
	margin: 0 auto;
	background: #fff;
	border-radius: 10px;
	padding: 28px 36px 24px;
	box-sizing: border-box;
	box-shadow: 0 6px 28px rgba(0, 0, 0, 0.08);
	min-height: 600px;
	display: flex;
	flex-direction: column;
}

.domfk-ctor__step.is-active,
.domfk-ctor__step:not([hidden]) {
	flex: 1;
}

.domfk-ctor__head {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 14px;
}

.domfk-ctor__icon {
	width: 28px;
	height: 28px;
	display: block;
	flex-shrink: 0;
}

.domfk-ctor__title {
	margin: 0;
	font-size: 22px;
	font-weight: 700;
	color: #111;
}

.domfk-ctor__progress {
	height: 3px;
	background: #f3e2d2;
	margin-bottom: 28px;
	overflow: hidden;
}

.domfk-ctor__progress span {
	display: block;
	height: 100%;
	width: 16%;
	background: #f07a20;
	transition: width 0.25s ease;
}

.domfk-ctor__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
	min-height: 220px;
	align-items: start;
}

.domfk-ctor__question {
	margin: 0 0 10px;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.25;
	color: #111;
}

.domfk-ctor__hint {
	margin: 0;
	font-size: 14px;
	color: #666;
	line-height: 1.4;
}

.domfk-ctor__opts {
	display: grid;
	gap: 10px;
}

.domfk-ctor__opt {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 16px;
	background: #f3f3f3;
	border-radius: 8px;
	cursor: pointer;
	font-size: 16px;
	font-weight: 500;
	color: #111;
}

.domfk-ctor__opt input {
	accent-color: #e53935;
	width: 18px;
	height: 18px;
}

.domfk-ctor__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 28px;
	gap: 16px;
}

.domfk-ctor__stepnum {
	margin: 0;
	font-size: 13px;
	color: #999;
}

.domfk-ctor__nav {
	display: flex;
	gap: 10px;
	align-items: center;
}

.domfk-ctor__back {
	width: 42px;
	height: 42px;
	border: 1px solid #ddd;
	background: #fff;
	border-radius: 6px;
	cursor: pointer;
	font-size: 18px;
}

.domfk-ctor__next,
.domfk-ctor__send,
.domfk-ctor__submit {
	min-height: 42px;
	padding: 0 22px;
	border: 0;
	border-radius: 6px;
	background: linear-gradient(90deg, #f9d423 0%, #f83600 100%);
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
}

.domfk-ctor__form {
	display: grid;
	gap: 12px;
	max-width: 420px;
	margin-top: 16px;
}

.domfk-ctor__field input {
	width: 100%;
	min-height: 48px;
	padding: 12px 14px;
	border: 1px solid #ddd;
	border-radius: 8px;
	background: #f7f7f7;
	box-sizing: border-box;
	font: inherit;
}

.domfk-ctor__consent {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	font-size: 13px;
	color: #444;
}

.domfk-ctor__consent a {
	color: #c5252d;
}

/* --- Trainers --- */
.domfk-trainers {
	padding-bottom: 48px;
	background: #f8ecce;
}

.domfk-trainers .domfk-home-heading {
	padding-top: 45px;
	padding-bottom: 15px;
	text-align: left;
}

.domfk-trainers__filters {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin: 0 0 28px;
	padding: 0;
}

.domfk-trainers__filter {
	border: 1px solid #c5252d;
	background: transparent;
	padding: 6px 18px;
	border-radius: 40px;
	font-size: 14px;
	font-weight: 400;
	color: #000;
	cursor: pointer;
	font-family: inherit;
	line-height: 1.4;
}

.domfk-trainers__filter.is-active {
	background: #c5252d;
	border-color: #c5252d;
	color: #fff;
}

.domfk-trainers__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 260px));
	gap: 40px;
	justify-content: space-between;
	margin: 0;
	padding: 0;
	list-style: none;
}

.domfk-trainers__card {
	background: #f8ecce;
	overflow: hidden;
	height: 100%;
	display: flex;
	flex-direction: column;
	min-height: 615px;
}

.domfk-trainers__photo {
	aspect-ratio: 0.7;
	background-size: cover;
	background-position: center top;
	flex-shrink: 0;
}

.domfk-trainers__tags {
	margin: 0;
	padding: 12px 14px 4px;
	min-height: 3.6em; /* keep names aligned when tags wrap 2–3 lines */
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.02em;
	line-height: 1.35;
	color: #666;
	text-transform: uppercase;
}

.domfk-trainers__name {
	margin: 0;
	padding: 4px 14px 6px;
	min-height: 2.4em;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.25;
}

.domfk-trainers__role {
	margin: 0;
	padding: 0 14px 12px;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.35;
	color: #6b5e4e;
	flex: 1;
}

/* Tilda t390 trainer bios */
.domfk-trainer-modal {
	position: fixed;
	inset: 0;
	z-index: 10050;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
}

.domfk-trainer-modal[hidden] {
	display: none !important;
}

.domfk-trainer-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
}

.domfk-trainer-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(42rem, 100%);
	max-height: min(88vh, 46rem);
	overflow: auto;
	background: #fbfbf9;
	padding: 2rem 1.75rem 1.5rem;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.domfk-trainer-modal__close {
	position: absolute;
	top: 0.45rem;
	right: 0.65rem;
	appearance: none;
	border: 0;
	background: transparent;
	font-size: 1.85rem;
	line-height: 1;
	cursor: pointer;
	color: #666;
}

.domfk-trainer-modal__role {
	margin: 0 0 0.35rem;
	font-size: 13px;
	font-weight: 500;
	color: #666;
}

.domfk-trainer-modal__title {
	margin: 0 1.75rem 1rem 0;
	font-size: 1.45rem;
	font-weight: 700;
	line-height: 1.25;
	color: #111;
}

.domfk-trainer-modal__body {
	font-size: 15px;
	line-height: 1.55;
	color: #111;
}

.domfk-trainer-modal__label {
	margin: 0 0 0.35rem;
}

.domfk-trainer-modal__body ul {
	margin: 0 0 1rem;
	padding-left: 1.15em;
}

.domfk-trainer-modal__body li {
	margin: 0 0 0.25rem;
}

.domfk-trainers__actions {
	padding: 0 14px 18px;
	margin-top: auto;
}

.domfk-trainers__detail {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 0 22px;
	border: 0;
	border-radius: 100px;
	background: #c5252d;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	font-family: inherit;
}

.domfk-trainers__more-wrap {
	display: flex;
	justify-content: center;
	padding: 28px 0 12px;
}

.domfk-trainers__more {
	min-height: 60px;
	padding: 18px 60px;
	border: 0;
	border-radius: 100px;
	background: #c5252d;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	font-family: inherit;
}

.domfk-trainers__more[hidden] {
	display: none !important;
}

/* --- Personal cover: form ~720 centered in 1200 --- */
.domfk-personal {
	position: relative;
	min-height: 900px;
	display: flex;
	align-items: center;
	color: #fff;
	overflow: hidden;
}

.domfk-personal__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
}

.domfk-personal__shade {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
}

.domfk-personal__inner {
	position: relative;
	z-index: 1;
	width: min(100% - 40px, 760px);
	margin-left: auto;
	margin-right: auto;
	padding: 80px 20px;
	text-align: center;
	box-sizing: border-box;
}

.domfk-personal__title {
	margin: 0 0 16px;
	font-size: 42px;
	font-weight: 600;
	line-height: 1.2;
}

.domfk-personal__text {
	margin: 0 0 28px;
	font-size: 20px;
	font-weight: 400;
}

.domfk-personal__form {
	display: grid;
	gap: 14px;
	max-width: 420px;
	margin: 0 auto;
	text-align: left;
}

.domfk-personal__field input {
	width: 100%;
	min-height: 50px;
	padding: 12px 14px;
	border: 0;
	border-radius: 8px;
	background: #fff;
	box-sizing: border-box;
	font: inherit;
}

.domfk-personal__consent,
.domfk-hero__consent,
.domfk-start__consent,
.domfk-consent {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: flex-start !important;
	justify-content: flex-start !important;
	gap: 10px;
	text-align: left !important;
	font-size: 14px;
	font-weight: 300;
	line-height: 1.35;
}

.domfk-hero__consent,
.domfk-start__consent,
.domfk-consent {
	color: #111 !important;
}

.domfk-personal__consent {
	color: #fff !important;
}

.domfk-personal__consent input,
.domfk-hero__consent input,
.domfk-start__consent input,
.domfk-consent input {
	margin-top: 3px;
	flex: 0 0 18px;
	width: 18px;
	height: 18px;
	accent-color: #c5252d;
}

.domfk-personal__consent a {
	color: #ffc945;
	text-decoration: underline;
}

.domfk-start__consent a,
.domfk-hero__consent a,
.domfk-consent a {
	color: #c5252d;
	text-decoration: underline;
}

.domfk-consent__text {
	flex: 1 1 auto;
	min-width: 0;
	display: block;
	white-space: normal;
	color: inherit;
}

.domfk-personal__submit {
	min-height: 50px;
	border: 0;
	border-radius: 100px;
	background: linear-gradient(0.75turn, #f83600 0%, #f9d423 100%);
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
}

/* --- Gallery marquee full-bleed --- */
.domfk-gallery {
	padding-bottom: 45px;
	overflow: hidden;
	background: #f8ecce;
}

.domfk-gallery .domfk-home-heading {
	width: min(100% - 40px, 1200px);
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
	box-sizing: border-box;
}

.domfk-gallery__viewport {
	overflow: hidden;
	width: 100%;
}

.domfk-gallery__track {
	display: flex;
	gap: 5px;
	width: max-content;
	animation: domfk-marquee 60s linear infinite;
}

.domfk-gallery__viewport:hover .domfk-gallery__track {
	animation-play-state: paused;
}

.domfk-gallery__item {
	margin: 0;
	flex: 0 0 500px;
	height: 500px;
	overflow: hidden;
}

.domfk-gallery__zoom {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	padding: 0;
	border: 0;
	cursor: zoom-in;
	background: transparent;
}

.domfk-gallery__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.35s ease;
}

.domfk-gallery__zoom:hover img {
	transform: scale(1.06);
}

.domfk-gallery__zoom-icon {
	position: absolute;
	right: 14px;
	bottom: 14px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.45) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M11 8v6M8 11h6M20 20l-3.5-3.5'/%3E%3C/svg%3E") center / 18px no-repeat;
	opacity: 0;
	transition: opacity 0.2s ease;
	pointer-events: none;
}

.domfk-gallery__zoom:hover .domfk-gallery__zoom-icon {
	opacity: 1;
}

@keyframes domfk-marquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

.domfk-lightbox {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: rgba(0, 0, 0, 0.88);
	box-sizing: border-box;
}

.domfk-lightbox[hidden] {
	display: none !important;
}

.domfk-lightbox__img {
	max-width: min(1100px, 96vw);
	max-height: 90vh;
	object-fit: contain;
	border-radius: 4px;
}

.domfk-lightbox__close {
	position: absolute;
	top: 16px;
	right: 20px;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
}

html.domfk-lightbox-open {
	overflow: hidden;
}

/* --- Club cards: cols 560 @ x:140/740 --- */
.domfk-cards {
	padding-bottom: 40px;
	background: #f8ecce;
}

.domfk-cards__tabs-bar {
	background: #f8ecce;
	padding: 15px 0;
	margin-bottom: 15px;
}

.domfk-cards__tabs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: stretch;
	gap: 0;
	margin: 0 auto;
	padding: 0;
	list-style: none;
	max-width: 900px;
	border: 0;
	background: transparent;
}

.domfk-cards__tab-item {
	flex: 1 1 0;
	min-width: 0;
	margin: 0;
	background: #f8ecce;
	border: 1px solid #c5252d;
	border-right-width: 0;
}

.domfk-cards__tab-item:last-child {
	border-right-width: 1px;
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
}

.domfk-cards__tab-item:first-child {
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
}

.domfk-cards__tab-item.is-active {
	background: #c5252d;
	border-color: #222;
}

.domfk-cards__tab {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	min-height: 64px;
	border: 0;
	background: transparent;
	padding: 12px 10px;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.02em;
	line-height: 1.2;
	text-transform: uppercase;
	color: #000;
	cursor: pointer;
	font-family: inherit;
	text-align: center;
	white-space: normal;
}

.domfk-cards__tab.is-active {
	color: #fff;
	font-weight: 600;
	border-bottom: 0;
}

.domfk-cards__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 560px));
	gap: 40px;
	justify-content: space-between;
	margin: 0;
	padding: 15px 0 60px;
	list-style: none;
}

.domfk-cards__card {
	background: transparent;
	color: #111;
	min-height: 0;
	display: flex;
	flex-direction: column;
	overflow: visible;
}

.domfk-cards__media {
	width: 100%;
	padding-bottom: 60.714285714286%;
	background-size: cover;
	background-position: center;
	flex-shrink: 0;
	border-radius: 8px;
}

.domfk-cards__body {
	padding: 22px 0 0;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.domfk-cards__name {
	margin: 0 0 14px;
	font-size: 22px;
	font-weight: 700;
	text-transform: uppercase;
	color: #111;
}

.domfk-cards__features {
	margin: 0 0 22px;
	padding-left: 1.1em;
	flex: 1;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.55;
	color: #111;
}

.domfk-cards__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}

.domfk-cards__more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 22px;
	border: 0;
	border-radius: 100px;
	background: #c5252d;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	font-family: inherit;
}

.domfk-cards__more:hover {
	color: #fff;
	filter: brightness(1.05);
}

/* Tilda t390 card detail popups */
.domfk-card-modal {
	position: fixed;
	inset: 0;
	z-index: 10050;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
}

.domfk-card-modal[hidden] {
	display: none !important;
}

.domfk-card-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
}

.domfk-card-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(40rem, 100%);
	max-height: min(85vh, 42rem);
	overflow: auto;
	background: #fbfbf9;
	padding: 2rem 1.75rem 1.75rem;
	border-radius: 0;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.domfk-card-modal__close {
	position: absolute;
	top: 0.45rem;
	right: 0.65rem;
	appearance: none;
	border: 0;
	background: transparent;
	font-size: 1.85rem;
	line-height: 1;
	cursor: pointer;
	color: #666;
}

.domfk-card-modal__uptitle {
	margin: 0 0 0.35rem;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #666;
}

.domfk-card-modal__title {
	margin: 0 1.75rem 1rem 0;
	font-size: 1.45rem;
	font-weight: 700;
	line-height: 1.25;
	text-transform: uppercase;
	color: #111;
}

.domfk-card-modal__body {
	font-size: 15px;
	line-height: 1.55;
	color: #111;
}

.domfk-card-modal__label {
	margin: 0 0 0.35rem;
}

.domfk-card-modal__body ul {
	margin: 0 0 1.1rem;
	padding-left: 1.15em;
}

.domfk-card-modal__body li {
	margin: 0 0 0.25rem;
}

.domfk-cards__book {
	margin-left: 0;
	min-height: 42px;
	padding: 0 22px;
	border: 2px solid #ffc945;
	border-radius: 100px;
	background: transparent;
	color: #111;
	font-weight: 600;
	cursor: pointer;
	font-family: inherit;
}

/* --- START --- */
.domfk-start {
	padding: 45px 0 48px;
	background: #f8ecce;
}

.domfk-start .domfk-home-heading {
	padding-top: 15px;
}

.domfk-start__row {
	display: grid;
	grid-template-columns: 560px 560px;
	gap: 40px;
	justify-content: space-between;
	align-items: start;
}

.domfk-start__media img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 0;
}

.domfk-start__lead {
	margin: 0 0 18px;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.35;
}

.domfk-start__text,
.domfk-start__form-title {
	margin: 0 0 18px;
	font-size: 16px;
	line-height: 1.45;
	color: #333;
}

.domfk-start__form {
	display: grid;
	gap: 18px;
	max-width: 460px;
}

.domfk-start__field input {
	width: 100%;
	min-height: 44px;
	padding: 10px 0;
	border: 0;
	border-bottom: 1px solid #bbb;
	border-radius: 0;
	background: transparent;
	box-sizing: border-box;
	font: inherit;
}

.domfk-start__consent {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	justify-content: flex-start;
	text-align: left;
	font-size: 13px;
	color: #444;
}

.domfk-start__consent a { color: #c5252d; }

.domfk-start__submit {
	min-height: 48px;
	border: 0;
	border-radius: 100px;
	background: linear-gradient(0.75turn, #f83600 0%, #f9d423 100%);
	color: #fff;
	font-weight: 600;
	font-size: 15px;
	cursor: pointer;
}

@media (max-width: 1100px) {
	.domfk-trainers__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		justify-content: stretch;
		gap: 24px;
	}
	.domfk-cards__grid {
		grid-template-columns: 1fr;
		justify-content: stretch;
	}
	.domfk-ctor__grid { grid-template-columns: 1fr; }
	.domfk-personal__title { font-size: 32px; }
}

@media (max-width: 767px) {
	.domfk-trainers__grid,
	.domfk-cards__grid,
	.domfk-start__row { grid-template-columns: 1fr; }
	.domfk-gallery__item { flex-basis: 280px; height: 220px; }
	.domfk-personal { min-height: 0; }
	.domfk-personal__inner { padding: 56px 20px; }
	.domfk-ctor__card { padding: 20px 16px; }
	.domfk-ctor__question { font-size: 22px; }

	.domfk-cards__tabs-bar {
		padding: 8px 0;
	}

	.domfk-cards__tabs {
		max-width: 100%;
	}

	.domfk-cards__tab {
		min-height: 72px;
		padding: 10px 4px;
		font-size: 11px;
		letter-spacing: 0.01em;
		line-height: 1.15;
	}
}

@media (max-width: 380px) {
	.domfk-cards__tab {
		font-size: 10px;
		padding: 8px 2px;
		min-height: 68px;
	}
}

/* === Pass 2026-08-05 fixes === */
body.home,
body.page-template-front-page {
	background: #f8ecce;
}

/* Continuous cream page (no white section gaps) */
.domfk-about,
.domfk-services,
.domfk-marquiz,
.domfk-ctor,
.domfk-trainers,
.domfk-gallery,
.domfk-cards,
.domfk-start,
.domfk-news,
.domfk-app,
.domfk-find {
	background: #f8ecce;
}

.domfk-trainers {
	padding-top: 8px;
	padding-bottom: 48px;
}

/* Personal form wider */
.domfk-personal__inner {
	width: min(100% - 40px, 760px);
}

.domfk-personal__form {
	max-width: 720px;
	width: 100%;
	margin: 0 auto;
	gap: 16px;
}

.domfk-personal__field input[type="text"],
.domfk-personal__field input[type="tel"] {
	min-height: 56px;
	padding: 0 20px;
	font-size: 16px;
	font-family: Montserrat, Arial, sans-serif;
	font-weight: 400;
	border-radius: 5px;
	color: #000;
}

.domfk-personal__consent,
.domfk-consent--indicator {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap;
	align-items: flex-start !important;
	justify-content: flex-start !important;
	gap: 12px;
	text-align: left !important;
	width: 100%;
	max-width: 100%;
	margin: 0;
	font-size: 15px;
	font-weight: 300;
	line-height: 1.35;
	color: #fff;
}

.domfk-consent__input {
	position: absolute;
	opacity: 0;
	width: 1px;
	height: 1px;
	pointer-events: none;
}

.domfk-consent__box {
	flex: 0 0 20px;
	width: 20px;
	height: 20px;
	margin-top: 1px;
	border: 2px solid #fff;
	border-radius: 2px;
	background: transparent;
	box-sizing: border-box;
	position: relative;
}

.domfk-consent--indicator.is-dark .domfk-consent__box {
	border-color: #000;
}

.domfk-consent__input:checked + .domfk-consent__box::after {
	content: "";
	position: absolute;
	left: 5px;
	top: 1px;
	width: 5px;
	height: 10px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.domfk-consent--indicator.is-dark .domfk-consent__input:checked + .domfk-consent__box::after {
	border-color: #000;
}

.domfk-consent__text {
	flex: 1 1 auto;
	min-width: 0;
	white-space: normal;
}

.domfk-personal__consent a {
	color: #ffc945;
	text-decoration: underline;
}

/* Phone field */
.domfk-phone-field,
.sf-phone-field {
	position: relative;
	display: flex;
	align-items: center;
	gap: 8px;
	width: 100%;
	box-sizing: border-box;
}

.domfk-phone-field--box {
	min-height: 56px;
	padding: 0 16px 0 12px;
	border-radius: 5px;
	background: #fff;
	border: 0;
}

.domfk-phone-field--line {
	min-height: 48px;
	padding: 0;
	background: transparent;
	border: 0;
	border-bottom: 1px solid #b3b3b3;
	border-radius: 0;
}

.domfk-phone-field__chrome,
.sf-phone-field__chrome {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	flex-shrink: 0;
	border: 0;
	background: transparent;
	padding: 0;
	cursor: pointer;
	font: inherit;
	color: #111;
	pointer-events: auto !important;
}

.domfk-phone-field__flag,
.sf-phone-field__flag {
	width: 22px;
	height: 16px;
	border-radius: 2px;
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
	background: url("https://flagcdn.com/w40/ru.png") no-repeat center / cover;
	flex-shrink: 0;
}

.domfk-phone-field__caret,
.sf-phone-field__caret {
	width: 0;
	height: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 5px solid #888;
}

.domfk-phone-field__code,
.sf-phone-field__code {
	font-size: 16px;
	font-weight: 500;
	color: #111;
	line-height: 1;
}

.domfk-phone-field input[type="tel"] {
	flex: 1 1 auto;
	min-width: 0;
	width: auto !important;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	outline: none !important;
	border-radius: 0 !important;
	padding: 14px 0 !important;
	min-height: 0 !important;
	margin: 0 !important;
	font-family: Montserrat, Arial, sans-serif !important;
	font-size: 16px !important;
	font-weight: 400 !important;
	color: #000 !important;
}

.domfk-phone-field__list {
	position: absolute;
	left: 0;
	top: calc(100% + 4px);
	z-index: 40;
	margin: 0;
	padding: 6px 0;
	list-style: none;
	min-width: 240px;
	max-height: 260px;
	overflow: auto;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.domfk-phone-field__list button {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	padding: 8px 12px;
	border: 0;
	background: transparent;
	font: inherit;
	font-size: 14px;
	color: #111;
	cursor: pointer;
	text-align: left;
}

.domfk-phone-field__list button:hover {
	background: #f5f5f5;
}

.domfk-phone-field__list-code {
	margin-left: auto;
	color: #888;
}

/* Cards: cream around title + panels */
.domfk-cards {
	background: #f8ecce;
}

.domfk-cards .domfk-home-heading {
	background: transparent;
}

.domfk-cards__card {
	background: transparent;
}

.domfk-cards__body {
	background: transparent;
}

/* START form */
.domfk-start {
	background: #f8ecce;
}

.domfk-start__field input[type="text"] {
	font-family: Montserrat, Arial, sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: #000;
	border: 0;
	border-bottom: 1px solid #b3b3b3;
	border-radius: 0;
	background: transparent;
	min-height: 48px;
	padding: 10px 0;
}

.domfk-start__consent {
	color: #111 !important;
}

.domfk-start__consent a {
	color: #c5252d !important;
}

.domfk-start__consent.domfk-consent--indicator {
	color: #111;
}

/* Risoma */
.domfk-risoma {
	padding: 0;
	background: transparent;
}

.domfk-risoma__frame {
	display: block;
	width: 100%;
	height: 600px;
	border: 0;
	background: transparent;
}

/* Halva full-bleed */
.domfk-halva {
	padding: 0;
	line-height: 0;
	background: #f8ecce;
}

.domfk-halva__img {
	display: block;
	width: 100%;
	height: auto;
	max-width: none;
}

/* Find us */
.domfk-find {
	background: #f8ecce !important;
	padding: 60px 0 48px !important;
	margin-bottom: 0 !important;
}

.domfk-find__title {
	font-weight: 700;
	font-size: clamp(26px, 3vw, 36px);
}

.domfk-find__text,
.domfk-find__hours p {
	font-weight: 700;
	font-size: 16px;
	line-height: 1.55;
	color: #111;
}

.domfk-find__socials {
	display: flex;
	gap: 12px;
	margin: 20px 0 0;
	padding: 0;
	list-style: none;
}

.domfk-find__socials a {
	display: inline-flex;
	color: #ffc945;
}

.domfk-find__socials a:hover {
	color: #ffc945;
	opacity: 0.85;
}

/* Kill white gap above black footer */
body.home #domfk-main,
body.home .domfk-site-main {
	background: #f8ecce !important;
	padding-bottom: 0 !important;
	margin-bottom: 0 !important;
}

body.home .domfk-find {
	padding-bottom: 48px !important;
}

@media (max-width: 980px) {
	body.home .domfk-find,
	body.single-napravlenie .domfk-find,
	body.single-program .domfk-find,
	.domfk-find {
		padding-bottom: 0 !important;
	}
}

body.home .domfk-footer,
body.single-napravlenie .domfk-footer,
body.single-program .domfk-footer {
	margin-top: 0 !important;
	border-top: 0 !important;
}

/* News archive + single (solid header in document flow — no overlay offset) */
.domfk-news-archive,
.domfk-single-post {
	background: #f8ecce;
	padding: 40px 0 64px;
}

.domfk-news__grid--archive {
	margin-top: 8px;
}

.domfk-news__pagination {
	display: flex;
	justify-content: center;
	padding: 32px 0 8px;
}

.domfk-news__pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	justify-content: center;
}

.domfk-news__pagination a,
.domfk-news__pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	min-height: 40px;
	padding: 0 12px;
	border: 1px solid #c5252d;
	color: #111;
	text-decoration: none;
	font-size: 14px;
	background: #f8ecce;
}

.domfk-news__pagination .current {
	background: #c5252d;
	color: #fff;
}

.domfk-entry__back {
	margin: 0 0 16px;
	font-size: 14px;
}

.domfk-entry__back a {
	color: #c5252d;
	text-decoration: none;
	font-weight: 600;
}

.domfk-entry__title {
	margin: 0 0 10px;
	font-size: clamp(24px, 4vw, 36px);
	font-weight: 700;
	line-height: 1.25;
	color: #111;
}

.domfk-entry__date {
	margin: 0 0 24px;
	font-size: 14px;
	color: #666;
}

.domfk-entry__media {
	margin: 0 0 28px;
}

.domfk-entry__img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 4px;
}

.domfk-entry__content {
	font-size: 16px;
	line-height: 1.6;
	color: #111;
	max-width: 720px;
}

.domfk-entry__content p {
	margin: 0 0 1em;
}

.domfk-entry__content strong {
	font-weight: 600;
}

body.blog #domfk-main,
body.single-post #domfk-main,
body.blog .domfk-site-main,
body.single-post .domfk-site-main {
	background: #f8ecce !important;
	padding-bottom: 0 !important;
}

@media (max-width: 767px) {
	.domfk-risoma__frame { height: 480px; }
	.domfk-personal__form { max-width: 100%; }

	.domfk-news-archive,
	.domfk-single-post {
		padding-top: 28px;
	}
}

/* Modal + hero consent must stay one row; hero text must stay dark on white card */
.domfk-modal__form label.domfk-modal__consent,
.domfk-lead-form label.domfk-modal__consent,
.domfk-lead-form label.domfk-hero__consent,
.domfk-hero__consent {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: flex-start !important;
	gap: 10px !important;
	grid-template-columns: none !important;
	color: #111 !important;
	font-weight: 400 !important;
}

.domfk-modal__consent > input[type="checkbox"],
.domfk-hero__consent > input[type="checkbox"] {
	position: static !important;
	opacity: 1 !important;
	width: 18px !important;
	height: 18px !important;
	flex: 0 0 18px !important;
	margin: 2px 0 0 !important;
}

.domfk-modal__consent .domfk-consent__text,
.domfk-hero__consent .domfk-consent__text {
	display: block !important;
	flex: 1 1 auto !important;
	min-width: 0 !important;
	color: #111 !important;
}

.domfk-modal__consent .domfk-consent__text a,
.domfk-hero__consent .domfk-consent__text a {
	display: inline !important;
	color: #c5252d !important;
}
