/*
 * Section primitives — padding, .section-head, .compact variant.
 */

.teledom-design section {
	padding: 100px 0;
	position: relative;
}

.teledom-design section.compact {
	padding: 0 0 20px;
}

.teledom-design .section-head {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 50px;
	align-items: center;
	margin-bottom: 60px;
}

.teledom-design .section-head h2 {
	margin: 0;
}

.teledom-design .section-head p {
	font-size: 16px;
	line-height: 1.6;
	color: var(--muted-light);
}

.teledom-design .section-head .right-block {
	align-self: center;
}

/* CTA inside the right-block — replaces the previous inline
 * `style="margin-top:18px"` on home / event pages. Class-based so
 * mobile media queries can override the spacing without `!important`. */
.teledom-design .section-head .section-head-cta {
	margin-top: 18px;
}

.teledom-design .section-head.center {
	grid-template-columns: 1fr;
	text-align: center;
	justify-items: center;
}

.teledom-design .section-head.center h2,
.teledom-design .section-head.center p {
	max-width: none;
}

.teledom-design .section-head.center p {
	max-width: 60ch;
	margin-left: auto;
	margin-right: auto;
}
