.section-header {
	display: flex;
	flex-direction: column;
	text-align: center;
	gap: 24px;
	max-width: 700px;
	margin: 0 auto;
	padding-top: 20px;
}

.section-header-content {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
}

.section-badge {
	width: 8px;
	height: 8px;
	background-color: var(--color-primary-dark);
	flex-shrink: 0;
}

.section-label {
	font-size: var(--font-size-sm);
	font-weight: var(--font-weight-medium);
	color: var(--color-black);
	margin: 0;
	white-space: nowrap;
	line-height: var(--line-height-sm);
}

.section-title {
	font-size: 38px;
	font-weight: var(--font-weight-medium);
	line-height: 1.1;
	color: var(--color-black);
	margin: 0;
}

.section-description {
	font-size: var(--font-size-base);
	font-weight: var(--font-weight-semibold);
	line-height: var(--line-height-relaxed);
	color: var(--color-neutral-500);
	margin: 0;
}

@media (max-width: 768px) {
	.section-header {
		gap: 16px;
		max-width: 100%;
	}

	.section-title {
		font-size: var(--font-size-xl);
		line-height: 1.3;
	}

	.section-description {
		font-size: var(--font-size-base);
	}
}

@media (max-width: 480px) {
	.section-header {
		gap: 24px;
	}

	.section-title {
		font-size: 20px;
		line-height: 1.25;
	}

	.section-description {
		font-size: var(--font-size-sm);
		line-height: var(--line-height-relaxed);
	}
}
