div.next-to-hotel {
	--nth-accent: #960a19;
	--nth-text: #323439;
	--nth-muted: #414141;
	--nth-divider: rgba(50, 52, 57, 0.18);
	--nth-cols: 4;

	position: relative;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

div.next-to-hotel *,
div.next-to-hotel *::before,
div.next-to-hotel *::after {
	box-sizing: border-box;
}

div.next-to-hotel .next-to-hotel__grid {
	display: grid;
	grid-template-columns: repeat(var(--nth-cols), minmax(0, 1fr));
	align-items: stretch;
	width: 100%;
}

div.next-to-hotel .next-to-hotel__card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
	min-width: 0;
	padding: 0 40px 60px 60px;
	border-bottom: 1px solid rgba(123, 30, 40, 0.3);
	text-align: left;
}

div.next-to-hotel .next-to-hotel__card:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 1px;
	height: 120px;
	background: rgba(123, 30, 40, 0.3);
}

div.next-to-hotel .next-to-hotel__icon {
	display: block;
	flex: 0 0 auto;
	width: 24px;
	height: 24px;
	margin-bottom: 16px;
	object-fit: contain;
}

div.next-to-hotel .next-to-hotel__title {
	font-family: Ahellya, Georgia, "Times New Roman", serif;
	font-size: 24px;
	font-weight: 400;
	font-style: italic;
	line-height: 1.2;
	color: var(--nth-text);
}

div.next-to-hotel .next-to-hotel__text {
	font-family: "TikTok Sans", sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.4;
	color: var(--nth-muted);
}

div.next-to-hotel .next-to-hotel__text p {
	margin: 0;
}

@media (max-width: 1199px) {
	div.next-to-hotel {
		--nth-cols: 2;
	}

	div.next-to-hotel .next-to-hotel__card {
		padding: 0 28px 40px 28px;
	}

	div.next-to-hotel .next-to-hotel__card:nth-child(even)::after,
	div.next-to-hotel .next-to-hotel__card:last-child::after {
		display: none;
	}
}

@media (max-width: 767px) {
	div.next-to-hotel {
		--nth-cols: 1;
	}

	div.next-to-hotel .next-to-hotel__card {
		padding: 0 0 32px 0;
	}

	div.next-to-hotel .next-to-hotel__card::after {
		display: none;
	}

	div.next-to-hotel .next-to-hotel__title {
		font-size: 24px;
	}
}
