.pg {
	display: block;
	margin-bottom: 10px;
}

@media screen and (min-width: 992px) {
	.pg {
		margin-bottom: 100px;
	}
}

.pg__list {
	display: flex;
	align-items: center;
	gap: 14px;
	/* расстояние между кружками */
	padding: 0;
	margin: 0;
	list-style: none;
	justify-content: center;
}

.pg__item {
	display: flex;
	align-items: center;
}

.pg__btn {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;

	background: #DAF4F1;
	/* светлый фон кружка */
	color: #111;
	text-decoration: none;
	font-size: 14px;
	line-height: 1;

	transition: transform .12s ease, background-color .12s ease, color .12s ease;
	user-select: none;
}

.pg__btn:hover {
	transform: translateY(-1px);
}

.pg__btn:focus-visible {
	outline: 3px solid rgba(0, 150, 136, .35);
	outline-offset: 3px;
}

.pg__btn--active {
	background: #00B6AA;
	/* активный (бирюзовый) */
	color: #fff;
}

.pg__item--dots {
	width: 30px;
	/* визуально по ширине как кружок */
	justify-content: center;
}

.pg__dots {
	font-size: 26px;
	line-height: 14px;
	color: #111;
}