.launch-module > h2 {
	margin-bottom: 36px;
}

.launch-practice-info {
	display: grid;
	padding: clamp(24px, 4vw, 44px);
	background: #f6f2ea;
	border-radius: 24px;
	gap: 30px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.launch-practice-info span {
	display: block;
	margin-bottom: 8px;
	color: #1c7773;
	font-size: 0.72rem;
	font-weight: 850;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.launch-practice-info a,
.launch-practice-info p {
	margin: 0;
	color: #163b3a;
	font-size: 1rem;
	font-weight: 700;
	text-decoration: none;
}

.launch-editor-module {
	padding: 28px;
	background: #f6f2ea;
	border: 1px solid rgba(22, 59, 58, 0.18);
	border-radius: 18px;
}

.launch-editor-module__eyebrow {
	display: block;
	margin-bottom: 10px;
	color: #1c7773;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.launch-editor-module h3 {
	margin: 0 0 8px;
}

.launch-editor-module p {
	margin: 0;
}

.launch-editor-module--cta {
	color: #fff;
	background: #1c7773;
}

.launch-editor-builder {
	max-width: 920px;
	padding: 32px;
	background: #fff;
	border: 1px solid #d7dde0;
	border-left: 5px solid var(--wp--preset--color--primary, #73182c);
	border-radius: 8px;
	box-shadow: 0 8px 28px rgba(20, 38, 44, 0.06);
}

.launch-editor-builder--hero {
	background: #f4f7f8;
}

.launch-editor-module__header {
	margin-bottom: 24px;
	padding-bottom: 18px;
	border-bottom: 1px solid #e3e7e9;
}

.launch-editor-module__header p {
	color: #66757a;
}

.launch-editor-fieldset {
	margin: 18px 0 0;
	padding: 18px;
	background: #f7f8f8;
	border: 1px solid #e3e7e9;
	border-radius: 6px;
}

.launch-editor-image-picker {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 18px 0;
	padding: 16px;
	background: #f7f8f8;
	border: 1px dashed #aeb9bd;
	border-radius: 6px;
}

.launch-editor-image-picker img,
.launch-editor-image-picker__empty {
	width: 150px;
	height: 90px;
	object-fit: cover;
	background: #e7ebed;
	border-radius: 4px;
}

.launch-editor-image-picker__empty {
	display: grid;
	place-items: center;
	color: #67777c;
	font-size: 12px;
	text-align: center;
}

.launch-builder-shell {
	box-sizing: border-box;
	width: min(100% - 40px, 1240px);
	margin: 0 auto;
}

.launch-builder-hero,
.launch-builder-section,
.launch-builder-faq {
	padding: clamp(64px, 8vw, 120px) 0;
}

.launch-builder-hero .launch-builder-shell,
.launch-builder-section--split .launch-builder-shell {
	display: grid;
	align-items: center;
	gap: clamp(36px, 6vw, 88px);
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
}

.launch-builder-image--left .launch-builder-hero__content,
.launch-builder-image--left .launch-builder-section__content {
	order: 2;
}

.launch-builder-hero__image,
.launch-builder-section figure img {
	display: block;
	width: 100%;
	max-height: 700px;
	object-fit: cover;
	border-radius: 12px;
}

.launch-builder-hero h1,
.launch-builder-section h2,
.launch-builder-faq h2 {
	margin-top: 0;
}

.launch-builder-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 28px;
}

.launch-builder-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 10px 24px;
	color: #fff;
	background: var(--wp--preset--color--primary, #73182c);
	border: 2px solid var(--wp--preset--color--primary, #73182c);
	border-radius: 8px;
	font-weight: 750;
	text-decoration: none;
}

.launch-builder-button--outline {
	color: currentColor;
	background: transparent;
	border-color: currentColor;
}

.launch-builder-theme--dark {
	color: #fff;
	background: var(--wp--preset--color--contrast, #002739);
}

.launch-builder-theme--cream {
	color: var(--wp--preset--color--contrast, #002739);
	background: var(--wp--preset--color--base-2, #f6f0e7);
}

.launch-builder-theme--light {
	color: var(--wp--preset--color--contrast, #002739);
	background: #fff;
}

.launch-builder-checklist {
	box-sizing: border-box;
	width: min(100% - 40px, 1240px);
	margin: clamp(36px, 5vw, 72px) auto;
}

.launch-builder-checklist ul {
	display: grid;
	gap: 0 28px;
	margin: 0;
	padding: 0;
	grid-template-columns: repeat(var(--launch-check-columns, 1), minmax(0, 1fr));
	list-style: none;
}

.launch-builder-checklist--2 ul { --launch-check-columns: 2; }
.launch-builder-checklist--3 ul { --launch-check-columns: 3; }

.launch-builder-checklist li {
	padding: 16px 0 16px 34px;
	border-bottom: 1px solid rgba(20, 38, 44, 0.14);
	font-weight: 700;
}

.launch-builder-checklist li::before {
	float: left;
	margin-left: -32px;
	content: "✓";
	color: var(--wp--preset--color--primary, #73182c);
}

.launch-builder-single-image {
	box-sizing: border-box;
	margin: 36px auto;
}

.launch-builder-single-image--small { max-width: 420px; }
.launch-builder-single-image--medium { max-width: 720px; }
.launch-builder-single-image--large { max-width: 1120px; }
.launch-builder-single-image--full { max-width: none; }
.launch-builder-single-image img { display: block; width: 100%; height: auto; }
.launch-builder-single-image figcaption { margin-top: 10px; color: #66757a; font-size: 0.9rem; }

.launch-builder-align--left { margin-right: auto; margin-left: 0; text-align: left; }
.launch-builder-align--center { margin-right: auto; margin-left: auto; text-align: center; }
.launch-builder-align--right { margin-right: 0; margin-left: auto; text-align: right; }
.launch-builder-button-row { box-sizing: border-box; width: min(100% - 40px, 1240px); margin: 28px auto; }
.launch-builder-button-row.launch-builder-align--center .launch-builder-buttons { justify-content: center; }
.launch-builder-button-row.launch-builder-align--right .launch-builder-buttons { justify-content: flex-end; }

.launch-builder-faq details {
	padding: 20px 0;
	border-bottom: 1px solid currentColor;
}

.launch-builder-faq summary {
	cursor: pointer;
	font-size: 1.05rem;
	font-weight: 750;
}

@media (max-width: 780px) {
	.launch-builder-hero .launch-builder-shell,
	.launch-builder-section--split .launch-builder-shell {
		grid-template-columns: 1fr;
	}

	.launch-builder-image--left .launch-builder-hero__content,
	.launch-builder-image--left .launch-builder-section__content {
		order: initial;
	}

	.launch-builder-checklist ul {
		grid-template-columns: 1fr;
	}
}

.launch-reviews-module {
	box-sizing: border-box;
	width: min(100% - 40px, 1440px);
	margin: clamp(60px, 8vw, 120px) auto;
	padding: clamp(32px, 5vw, 72px);
	color: #24363a;
	background: #f6f2ea;
	border-radius: 28px;
}

.launch-reviews-module__header {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: clamp(28px, 4vw, 48px);
}

.launch-reviews-module__eyebrow {
	margin: 0 0 10px;
	color: var(--wp--preset--color--primary, #73182c);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.launch-reviews-module h2 {
	margin: 0;
}

.launch-reviews-module__all {
	flex: 0 0 auto;
	color: var(--wp--preset--color--primary, #73182c);
	font-weight: 750;
}

.launch-reviews-grid {
	display: grid;
	gap: 22px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.launch-review-card {
	display: flex;
	min-width: 0;
	padding: clamp(24px, 3vw, 36px);
	background: #fff;
	border: 1px solid rgba(36, 54, 58, 0.12);
	border-radius: 20px;
	box-shadow: 0 18px 45px rgba(36, 54, 58, 0.06);
	flex-direction: column;
}

.launch-review-card__stars {
	margin-bottom: 18px;
	color: #d69b50;
	font-size: 1rem;
	letter-spacing: 0.12em;
}

.launch-review-card blockquote {
	margin: 0 0 24px;
	padding: 0;
	border: 0;
}

.launch-review-card blockquote p {
	display: -webkit-box;
	overflow: hidden;
	margin: 0;
	font-size: clamp(1rem, 1.25vw, 1.15rem);
	line-height: 1.7;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 7;
}

.launch-review-card footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-top: auto;
	padding-top: 18px;
	border-top: 1px solid rgba(36, 54, 58, 0.1);
}

.launch-review-card footer a,
.launch-review-card footer span {
	color: #68777a;
	font-size: 0.78rem;
}

@media (max-width: 700px) {
	.launch-practice-info {
		grid-template-columns: 1fr;
	}

	.launch-reviews-module {
		width: min(100% - 24px, 1440px);
	}

	.launch-reviews-module__header {
		align-items: start;
		flex-direction: column;
	}

	.launch-reviews-grid {
		grid-template-columns: 1fr;
	}
}

@media (min-width: 701px) and (max-width: 1050px) {
	.launch-reviews-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
