.places {
	--width-place-col: 295px;
	display: flex;
	justify-content: space-between;
	padding: calc(var(--padding-sm) * 1.2) 0;
	font-size: var(--font-size-b-2);
	line-height: 2.3em;
}

.places-category {
	width: var(--width-place-col);
	box-sizing: border-box;
	padding-right: 1em;
}

.places-category-title-inner {
	display: inline-block;
	background-color: var(--color-background);
	position: relative;
	z-index: 2;
	padding: 0 1em;
	left: -1em;
	white-space: nowrap;
}

.places .title {
	position: relative;
	margin-bottom: calc(var(--margin-l) * 0.7);
}

.places-category:first-of-type .title:after {
	display: block;
	position: absolute;
	content: "";
	left: 0;
	top: 50%;
	width: calc(100vw - (var(--width-place-col) * 1.6) - var(--padding-big));
	height: 1px;
	background-color: var(--color-foreground);
	z-index: 1;
}

.places ol {
	margin: 0;
	padding: 0;
}

.places li {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

@media screen and (max-width: 1340px) {
	.places {
		--width-place-col: calc(33.3334% - 1.3333em);
		gap: 2em;
	}

	.places-category {
		padding-right: 0;
	}

	.places-category:first-of-type {
		text-align: left;
	}

	.places-category:nth-of-type(2) {
		text-align: center;
	}

	.places-category:nth-of-type(3) {
		text-align: right;
	}

	.places-category-title-inner {
		padding: 0;
		left: 0;
		white-space: normal;
	}

	.places-category:first-of-type .places-category-title-inner {
		padding: 0 1em 0 0;
	}

	.places-category:nth-of-type(2) .places-category-title-inner {
		padding: 0 1em;
	}

	.places-category:nth-of-type(3) .places-category-title-inner {
		padding: 0 0 0 1em;
	}
}

@media screen and (max-width: 940px) {
	.places {
		--width-place-col: 100%;

		flex-direction: column;
		align-items: center;
	}

	places-category,
	.places-category:first-of-type,
	.places-category:nth-of-type(2),
	.places-category:nth-of-type(3) {
		text-align: center;
	}

	.places-category:first-of-type .places-category-title-inner,
	.places-category:nth-of-type(2) .places-category-title-inner,
	.places-category:nth-of-type(3) .places-category-title-inner {
		padding: 0;
	}

	.places-category:first-of-type .title:after {
		display: none;
	}
}
