/* Cabeçalho (InnerBlocks) à esquerda + barra divisória e descrição livre à
   direita — sem botão. */
.section-header {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	column-gap: var(--spacing-xl, 64px);
	row-gap: var(--spacing-md);
}

.section-header-text {
	flex: 0 1 auto;
	max-width: 560px;
}

.section-header-eyebrow {
	color: var(--cor-texto-secundario, var(--cor-texto));
	font-size: var(--fs-6, 1.25rem);
	margin-bottom: var(--spacing-xs);
}

.section-header-title {
	font-weight: 700;
	font-size: var(--fs-2);
	line-height: 1.2;
	margin-bottom: 0;
}

.section-header-description {
	display: flex;
	align-items: center;
	gap: 24px;
	flex: 1 1 320px;
}

.section-header-divider {
	align-self: stretch;
	width: 5px;
	flex-shrink: 0;
	background: var(--cor-secundaria, #bb423b);
}

.section-header-description__text {
	font-size: var(--fs-6);
	line-height: 1.4;
	color: var(--cor-destaque-secundaria);
	margin: 0;
}

@media (max-width: 767px) {
	.section-header {
		flex-direction: column;
		align-items: flex-start;
	}

	.section-header-text {
		max-width: none;
	}

	.section-header-description {
		flex-basis: auto;
	}
}