/**
 * Yoga Di landing layout — scoped under .yogadi-landing
 */

html {
	scroll-padding-top: 68px;
}

.yogadi-landing {
	background: var(--yogadi-warm-white, #FDFAF7);
	color: var(--yogadi-dark, #2C2C2A);
	overflow-x: hidden;
}

.yogadi-landing *,
.yogadi-landing *::before,
.yogadi-landing *::after {
	box-sizing: border-box;
}

/* Hide default page title area on landing */
.yogadi-landing + .entry-hero-container,
body.home .entry-hero-container,
body.home .page-title,
body.home .entry-header {
	display: none;
}

/* ── Hero ─────────────────────────────────────────────── */

.yogadi-hero {
	min-height: clamp(540px, 78vh, 760px);
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.yogadi-hero__left {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 40px clamp(24px, 5vw, 60px);
}

.yogadi-hero__tag {
	font-size: 11px;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--yogadi-sage, #8A9E8C);
	margin: 0 0 24px;
}

.yogadi-hero__title {
	font-family: var(--yogadi-font-heading);
	font-size: clamp(52px, 6vw, 82px);
	font-weight: 300;
	line-height: 1.1;
	color: var(--yogadi-dark, #2C2C2A);
	margin: 0 0 32px;
}

.yogadi-hero__title em {
	font-style: italic;
	color: var(--yogadi-clay, #C4956A);
}

.yogadi-hero__text {
	font-size: 15px;
	line-height: 1.8;
	color: var(--yogadi-muted, #8C8880);
	max-width: 420px;
	margin: 0 0 48px;
}

.yogadi-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	align-items: center;
}

.yogadi-hero__right {
	position: relative;
	overflow: hidden;
	min-height: 400px;
}

.yogadi-hero__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	filter: saturate(0.85);
	border-radius: 0;
}

.yogadi-hero__badge {
	position: absolute;
	bottom: 48px;
	left: -24px;
	background: var(--yogadi-warm-white, #FDFAF7);
	padding: 24px 32px;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.yogadi-hero__badge-num {
	font-family: var(--yogadi-font-heading);
	font-size: 42px;
	font-weight: 300;
	color: var(--yogadi-clay, #C4956A);
	line-height: 1;
}

.yogadi-hero__badge-text {
	font-size: 11px;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--yogadi-muted, #8C8880);
	margin-top: 4px;
}

/* ── Buttons ─────────────────────────────────────────── */

.yogadi-btn {
	font-family: var(--yogadi-font-body);
	font-size: 12px;
	font-weight: 300;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	text-decoration: none;
	display: inline-block;
	cursor: pointer;
	border: none;
	transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease, border-color 0.3s ease;
}

.yogadi-btn--primary {
	background: var(--yogadi-dark, #2C2C2A);
	color: var(--yogadi-warm-white, #FDFAF7);
	padding: 16px 36px;
}

.yogadi-btn--primary:hover {
	background: var(--yogadi-clay, #C4956A);
	color: var(--yogadi-warm-white, #FDFAF7);
	transform: translateY(-1px);
}

.yogadi-btn--secondary {
	font-size: 12px;
	letter-spacing: 0.15em;
	color: var(--yogadi-muted, #8C8880);
	border-bottom: 1px solid var(--yogadi-sage-light, #C4D4C5);
	padding-bottom: 2px;
}

.yogadi-btn--secondary:hover {
	color: var(--yogadi-dark, #2C2C2A);
}

.yogadi-btn--outline {
	display: block;
	text-align: center;
	padding: 14px;
	border: 1px solid var(--yogadi-sage-light, #C4D4C5);
	color: var(--yogadi-dark, #2C2C2A);
	background: transparent;
}

.yogadi-btn--outline:hover {
	background: var(--yogadi-dark, #2C2C2A);
	color: var(--yogadi-warm-white, #FDFAF7);
	border-color: var(--yogadi-dark, #2C2C2A);
}

.yogadi-price--featured .yogadi-btn--outline {
	border-color: var(--yogadi-clay, #C4956A);
	color: var(--yogadi-clay, #C4956A);
}

.yogadi-price--featured .yogadi-btn--outline:hover {
	background: var(--yogadi-clay, #C4956A);
	color: var(--yogadi-warm-white, #FDFAF7);
}

.yogadi-btn--submit {
	width: 100%;
	margin-top: 24px;
	background: var(--yogadi-dark, #2C2C2A);
	color: var(--yogadi-warm-white, #FDFAF7);
	padding: 18px;
}

.yogadi-btn--submit:hover {
	background: var(--yogadi-clay, #C4956A);
}

/* ── Strip ─────────────────────────────────────────────── */

.yogadi-strip {
	background: var(--yogadi-cream, #F7F3EE);
	padding: 28px clamp(24px, 5vw, 60px);
	display: flex;
	gap: 60px;
	align-items: center;
	overflow-x: auto;
}

.yogadi-strip__item {
	display: flex;
	align-items: center;
	gap: 16px;
	white-space: nowrap;
	flex-shrink: 0;
}

.yogadi-strip__dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--yogadi-sage, #8A9E8C);
	flex-shrink: 0;
}

.yogadi-strip__item span:last-child {
	font-size: 12px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--yogadi-muted, #8C8880);
}

/* ── Sections ──────────────────────────────────────────── */

.yogadi-section {
	padding: 100px clamp(24px, 5vw, 60px);
}

.yogadi-section--cream {
	background: var(--yogadi-cream, #F7F3EE);
}

.yogadi-section__header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 60px;
	gap: 24px;
}

.yogadi-section__sub {
	font-size: 13px;
	letter-spacing: 0.12em;
	color: var(--yogadi-muted, #8C8880);
	text-transform: uppercase;
	margin: 0 0 12px;
}

.yogadi-section__title {
	font-family: var(--yogadi-font-heading);
	font-size: clamp(36px, 4vw, 54px);
	font-weight: 300;
	line-height: 1.2;
	margin: 0;
}

/* ── About ─────────────────────────────────────────────── */

.yogadi-about {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 60px;
	align-items: start;
}

.yogadi-about__text p {
	font-size: 15px;
	line-height: 1.8;
	color: var(--yogadi-muted, #8C8880);
	margin: 0 0 20px;
}

.yogadi-about__meta {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.yogadi-about__stat-num {
	display: block;
	font-family: var(--yogadi-font-heading);
	font-size: 36px;
	font-weight: 300;
	color: var(--yogadi-clay, #C4956A);
	line-height: 1;
}

.yogadi-about__stat-label {
	display: block;
	font-size: 11px;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--yogadi-muted, #8C8880);
	margin-top: 8px;
}

/* ── Cards ─────────────────────────────────────────────── */

.yogadi-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2px;
}

.yogadi-card {
	background: var(--yogadi-cream, #F7F3EE);
	padding: 48px 40px;
	position: relative;
	overflow: hidden;
	transition: background 0.3s ease;
}

.yogadi-section--cream .yogadi-card {
	background: var(--yogadi-warm-white, #FDFAF7);
}

.yogadi-card::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--yogadi-clay, #C4956A);
	transition: width 0.4s ease;
}

.yogadi-card:hover {
	background: var(--yogadi-warm-white, #FDFAF7);
}

.yogadi-section--cream .yogadi-card:hover {
	background: var(--yogadi-cream, #F7F3EE);
}

.yogadi-card:hover::after {
	width: 100%;
}

.yogadi-card__icon {
	font-size: 28px;
	margin-bottom: 24px;
	display: block;
}

.yogadi-card__title {
	font-family: var(--yogadi-font-heading);
	font-size: 26px;
	font-weight: 300;
	margin: 0 0 12px;
}

.yogadi-card__text {
	font-size: 14px;
	line-height: 1.7;
	color: var(--yogadi-muted, #8C8880);
	margin: 0 0 24px;
}

.yogadi-card__meta {
	font-size: 11px;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--yogadi-sage, #8A9E8C);
}

/* ── Table ─────────────────────────────────────────────── */

.yogadi-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 48px;
}

.yogadi-table th {
	font-size: 11px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--yogadi-muted, #8C8880);
	text-align: left;
	padding: 16px 24px;
	border-bottom: 1px solid var(--yogadi-sage-light, #C4D4C5);
	font-weight: 300;
}

.yogadi-table td {
	padding: 20px 24px;
	font-size: 14px;
	border-bottom: 1px solid rgba(196, 212, 197, 0.3);
	color: var(--yogadi-dark, #2C2C2A);
}

.yogadi-table tr:hover td {
	background: rgba(253, 250, 247, 0.8);
}

.yogadi-tag {
	display: inline-block;
	padding: 4px 12px;
	font-size: 10px;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	background: var(--yogadi-sage-light, #C4D4C5);
	color: var(--yogadi-dark, #2C2C2A);
}

.yogadi-tag--clay {
	background: #EDD9C5;
}

/* ── Quote ─────────────────────────────────────────────── */

.yogadi-quote {
	padding: 120px clamp(24px, 5vw, 60px);
	text-align: center;
	position: relative;
}

.yogadi-quote::before {
	content: '"';
	position: absolute;
	top: 60px;
	left: 50%;
	transform: translateX(-50%);
	font-family: var(--yogadi-font-heading);
	font-size: 200px;
	color: var(--yogadi-cream, #F7F3EE);
	line-height: 0.8;
	z-index: 0;
	pointer-events: none;
}

.yogadi-quote blockquote {
	position: relative;
	z-index: 1;
	font-family: var(--yogadi-font-heading);
	font-size: clamp(24px, 3vw, 40px);
	font-weight: 300;
	font-style: italic;
	line-height: 1.5;
	max-width: 700px;
	margin: 0 auto 24px;
	color: var(--yogadi-dark, #2C2C2A);
	border: none;
	padding: 0;
}

.yogadi-quote cite {
	font-size: 12px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--yogadi-muted, #8C8880);
	font-style: normal;
}

/* ── Gallery ───────────────────────────────────────────── */

.yogadi-gallery {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 8px;
}

.yogadi-gallery__item {
	margin: 0;
	overflow: hidden;
	aspect-ratio: 4 / 5;
	background: var(--yogadi-warm-white, #FDFAF7);
}

.yogadi-gallery__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 0;
	filter: saturate(0.92);
	transition: transform 0.6s ease, filter 0.4s ease;
}

.yogadi-gallery__item:hover img {
	transform: scale(1.05);
	filter: saturate(1);
}

@media (max-width: 900px) {
	.yogadi-gallery {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ── Pricing ───────────────────────────────────────────── */

.yogadi-pricing {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2px;
	margin-top: 48px;
}

.yogadi-price {
	padding: 56px 40px;
	background: var(--yogadi-cream, #F7F3EE);
	position: relative;
	transition: transform 0.3s ease;
}

.yogadi-price:hover {
	transform: translateY(-4px);
}

.yogadi-price--featured {
	background: var(--yogadi-dark, #2C2C2A);
	color: var(--yogadi-warm-white, #FDFAF7);
}

.yogadi-price__badge {
	position: absolute;
	top: 24px;
	right: 24px;
	font-size: 10px;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--yogadi-clay, #C4956A);
}

.yogadi-price__name {
	font-size: 11px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--yogadi-muted, #8C8880);
	margin: 0 0 24px;
}

.yogadi-price--featured .yogadi-price__name {
	color: var(--yogadi-sage-light, #C4D4C5);
}

.yogadi-price__amount {
	font-family: var(--yogadi-font-heading);
	font-size: 56px;
	font-weight: 300;
	line-height: 1;
	margin-bottom: 4px;
	color: var(--yogadi-dark, #2C2C2A);
}

.yogadi-price--featured .yogadi-price__amount {
	color: var(--yogadi-warm-white, #FDFAF7);
}

.yogadi-price__amount span {
	font-size: 24px;
}

.yogadi-price__period {
	font-size: 12px;
	color: var(--yogadi-muted, #8C8880);
	margin: 0 0 32px;
}

.yogadi-price--featured .yogadi-price__period {
	color: var(--yogadi-sage-light, #C4D4C5);
}

.yogadi-price__features {
	list-style: none;
	margin: 0 0 40px;
	padding: 0;
}

.yogadi-price__features li {
	font-size: 13px;
	line-height: 1.6;
	color: var(--yogadi-muted, #8C8880);
	padding: 8px 0;
	border-bottom: 1px solid var(--yogadi-sage-light, #C4D4C5);
	display: flex;
	align-items: center;
	gap: 10px;
}

.yogadi-price--featured .yogadi-price__features li {
	color: rgba(253, 250, 247, 0.7);
	border-bottom-color: rgba(255, 255, 255, 0.1);
}

.yogadi-price__features li::before {
	content: '–';
	color: var(--yogadi-sage, #8A9E8C);
	font-size: 16px;
}

.yogadi-pricing__note {
	margin-top: 24px;
	font-size: 13px;
	color: var(--yogadi-muted, #8C8880);
	letter-spacing: 0.05em;
}

/* ── CTA ───────────────────────────────────────────────── */

.yogadi-cta {
	padding: 120px clamp(24px, 5vw, 60px);
	background: var(--yogadi-cream, #F7F3EE);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.yogadi-cta__text p {
	font-size: 15px;
	line-height: 1.8;
	color: var(--yogadi-muted, #8C8880);
	margin: 0 0 40px;
}

.yogadi-cta__contacts {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
}

.yogadi-cta__value {
	font-family: var(--yogadi-font-heading);
	font-size: clamp(22px, 3vw, 28px);
	color: var(--yogadi-dark, #2C2C2A);
	text-decoration: none;
}

.yogadi-cta__value:hover {
	color: var(--yogadi-clay, #C4956A);
}

.yogadi-cta__label {
	font-size: 12px;
	color: var(--yogadi-muted, #8C8880);
	margin-top: 4px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.yogadi-form__group {
	margin-bottom: 16px;
}

.yogadi-form input,
.yogadi-form select,
.yogadi-form textarea {
	width: 100%;
	padding: 16px 0;
	background: transparent;
	border: none;
	border-bottom: 1px solid var(--yogadi-sage-light, #C4D4C5);
	font-family: var(--yogadi-font-body);
	font-size: 14px;
	font-weight: 300;
	color: var(--yogadi-dark, #2C2C2A);
	outline: none;
	transition: border-color 0.3s ease;
}

.yogadi-form input:focus,
.yogadi-form select:focus,
.yogadi-form textarea:focus {
	border-bottom-color: var(--yogadi-clay, #C4956A);
}

.yogadi-form input::placeholder,
.yogadi-form textarea::placeholder {
	color: var(--yogadi-muted, #8C8880);
}

.yogadi-form textarea {
	resize: vertical;
	min-height: 52px;
	line-height: 1.5;
}

.yogadi-form__select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	cursor: pointer;
	padding-right: 28px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%238C8880' stroke-width='1.5' d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right center;
}

.yogadi-form__select:invalid,
.yogadi-form__select option[value=""] {
	color: var(--yogadi-muted, #8C8880);
}

/* ── Scroll reveal ─────────────────────────────────────── */

.yogadi-reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.yogadi-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* ── Full-width content area ───────────────────────────── */

body.home .content-area,
body.home .entry-content-wrap,
body.home .site-main {
	margin: 0;
	padding: 0;
	max-width: none;
}

body.home .entry-content {
	margin: 0;
}

/* ── Responsive ────────────────────────────────────────── */

@media (max-width: 900px) {
	.yogadi-hero {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.yogadi-hero__right {
		height: 50vw;
		min-height: 280px;
	}

	.yogadi-hero__left {
		padding: 48px 24px;
	}

	.yogadi-hero__badge {
		left: 16px;
		bottom: 24px;
	}

	.yogadi-section,
	.yogadi-quote,
	.yogadi-cta {
		padding: 60px 24px;
	}

	.yogadi-strip {
		padding: 20px 24px;
		gap: 32px;
	}

	.yogadi-cards,
	.yogadi-pricing {
		grid-template-columns: 1fr;
	}

	.yogadi-about,
	.yogadi-cta {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.yogadi-section__header {
		flex-direction: column;
		align-items: flex-start;
	}

	.yogadi-table {
		display: block;
		overflow-x: auto;
	}
}

.yogadi-form__hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.yogadi-form__notice {
	margin: 0 0 20px;
	padding: 14px 18px;
	border-radius: 10px;
	font-size: 0.95rem;
	line-height: 1.5;
}

.yogadi-form__notice--ok {
	background: var(--yogadi-sage-light, #C4D4C5);
	color: var(--yogadi-dark, #2C2C2A);
}

.yogadi-form__notice--err {
	background: #f3d9cb;
	color: #7a3b1c;
}

.yogadi-social {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	list-style: none;
	padding: 0;
	margin: 28px 0 0;
}

.yogadi-social__link {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	color: var(--yogadi-sage, #8A9E8C);
	border: 1px solid var(--yogadi-sage-light, #C4D4C5);
	background: transparent;
	transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease,
		transform 0.25s ease;
}

.yogadi-social__link:hover {
	color: #fff;
	background: var(--yogadi-sage, #8A9E8C);
	border-color: var(--yogadi-sage, #8A9E8C);
	transform: translateY(-2px);
}

.yogadi-social__link svg {
	display: block;
}

/* Optical centering: the Telegram plane reads slightly high by its shape */
.yogadi-social__link--telegram svg {
	transform: translate(-1px, 1px);
}

/* ── Language versions (client-side UA/EN switch) ─────── */

.yogadi-lang-version.lang-en {
	display: none;
}

html[data-lang="en"] .yogadi-lang-version.lang-uk {
	display: none;
}

html[data-lang="en"] .yogadi-lang-version.lang-en {
	display: block;
}

/* Offset anchor scrolling for the sticky header */
.yogadi-landing [id] {
	scroll-margin-top: 90px;
}

/* ── Gallery lightbox ─────────────────────────────────── */

.yogadi-gallery__item,
.yogadi-shot {
	cursor: zoom-in;
	outline: none;
}

.yogadi-gallery__item:focus-visible,
.yogadi-shot:focus-visible {
	outline: 3px solid var(--yogadi-sage, #8A9E8C);
	outline-offset: 3px;
}

.yogadi-lightbox {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: rgba(24, 24, 22, 0.92);
	opacity: 0;
	transition: opacity 0.2s ease;
}

.yogadi-lightbox.is-open {
	display: flex;
	opacity: 1;
}

.yogadi-lightbox__img {
	max-width: 92vw;
	max-height: 88vh;
	width: auto;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
}

.yogadi-lightbox__close {
	position: absolute;
	top: 14px;
	right: 20px;
	width: 44px;
	height: 44px;
	padding: 0;
	border: none;
	background: none;
	color: #fff;
	font-size: 38px;
	line-height: 1;
	cursor: pointer;
	opacity: 0.85;
	transition: opacity 0.2s ease;
}

.yogadi-lightbox__close:hover {
	opacity: 1;
}

.yogadi-lightbox__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	display: grid;
	place-items: center;
	width: 54px;
	height: 54px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.3);
	color: #fff;
	font-size: 34px;
	line-height: 1;
	cursor: pointer;
	opacity: 0.85;
	transition: opacity 0.2s ease, background 0.2s ease;
}

.yogadi-lightbox__nav:hover {
	opacity: 1;
	background: rgba(0, 0, 0, 0.5);
}

.yogadi-lightbox__nav--prev {
	left: 18px;
}

.yogadi-lightbox__nav--next {
	right: 18px;
}

@media (max-width: 600px) {
	.yogadi-lightbox__nav {
		width: 44px;
		height: 44px;
		font-size: 28px;
	}

	.yogadi-lightbox__nav--prev {
		left: 6px;
	}

	.yogadi-lightbox__nav--next {
		right: 6px;
	}
}

/* ── Reviews as screenshots ───────────────────────────── */

.yogadi-reviews-shots {
	column-count: 4;
	column-gap: 18px;
	margin-top: 12px;
}

@media (max-width: 1000px) {
	.yogadi-reviews-shots {
		column-count: 3;
	}
}

@media (max-width: 700px) {
	.yogadi-reviews-shots {
		column-count: 2;
		column-gap: 12px;
	}
}

.yogadi-reviews-shots .yogadi-shot {
	display: block;
	width: 100%;
	margin: 0 0 18px;
	cursor: zoom-in;
	border-radius: 12px;
	overflow: hidden;
	background: #fff;
	break-inside: avoid;
	-webkit-column-break-inside: avoid;
	border: 1px solid rgba(196, 212, 197, 0.5);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.yogadi-reviews-shots .yogadi-shot:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.yogadi-reviews-shots .yogadi-shot img {
	display: block;
	width: 100%;
	height: auto;
}

/* ── Reviews / testimonials ───────────────────────────── */

.yogadi-reviews {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 24px;
	margin-top: 12px;
}

.yogadi-review {
	position: relative;
	margin: 0;
	padding: 32px 28px 28px;
	background: var(--yogadi-warm-white, #FBFAF7);
	border: 1px solid rgba(196, 212, 197, 0.5);
	border-radius: 14px;
}

.yogadi-review__quote {
	color: var(--yogadi-sage-light, #C4D4C5);
	margin-bottom: 8px;
}

.yogadi-review__text {
	margin: 0 0 18px;
	font-size: 16px;
	line-height: 1.65;
	color: var(--yogadi-dark, #2C2C2A);
}

.yogadi-review__author {
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.5px;
	color: var(--yogadi-sage, #8A9E8C);
}

.yogadi-review__author::before {
	content: "— ";
}
