/* Image-free ornamental section headings. */
.section-title {
	width: min(750px, 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin: 0 auto 42px;
	text-align: center;
}

.section-title__line {
	position: relative;
	flex: 1 1 80px;
	height: 2px;
	background: var(--gold);
}

.section-title__line::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 8px;
	height: 8px;
	border: 2px solid var(--gold);
	border-radius: 50%;
	background: var(--cream);
	transform: translateY(-50%);
}

.section-title__line--left::after {
	left: 0;
	transform: translate(-50%, -50%);
}

.section-title__line--right::after {
	right: 0;
	transform: translate(50%, -50%);
}

.section-title h2 {
	position: static;
	flex: 0 1 auto;
	padding: 0;
	margin: 0;
	background: transparent;
	font-size: 32px;
	line-height: 1.2;
	text-transform: uppercase;
}

@media (max-width: 520px) {
	.section-title {
		gap: 9px;
	}

	.section-title__line {
		min-width: 16px;
	}

	.section-title h2 {
		padding: 0;
		font-size: 25px;
	}
}
