.campgrounds-container {
	display: flex;
	max-width: 100%;
	width: 1500px;
	flex-wrap: wrap;
	gap: 40px;
}

.campgrounds-container > .campground-item {
	width: calc(33% - 44px);
	justify-content: space-between;
	display: flex;
	flex-direction: column;
}

.campgrounds-container > .campground-item .campground-image {
	min-height: 300px;
	width: 100%;
	background-size: cover;
}

.campground-meta {
	display: flex;
	overflow-x: scroll;
	max-width: 400px;
	flex-wrap: nowrap;
	gap: 30px;
}

.campground-meta > .meta-item {
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.meta-label {
	font-weight: 500;
	font-size: 12px;
}

.meta-value {
	font-weight: 400;
	font-size: 12px;
}

.content {
	position: relative;
	max-height: 100px;
	overflow: hidden;
}

.content::after {
	content: "";
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 80%;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgb(255, 255, 255));
	left: 0;
}

.load-more-button {
	width: 100%;
	padding: 35px;
	order: 1;
}

.campgrounds-container > .campground-item * {
	text-decoration: none;
}

/* Single */

.single {
	width: 100%;
	max-width: unset;
}

.single .content {
	max-height: unset;
	overflow: visible;
}

.single .content::after {
	content: none;
}

.single .campground-meta {
	flex-direction: row;
	width: 100%;
	max-width: unset;
	gap: 50px 5%;
	flex-wrap: wrap;
	margin-top: 50px;
	overflow: visible;
	position: relative;
	z-index: 2;
}

.meta-group-title {
	margin-top: 100px !important;
	font-size: 36px !important;
	border: 1px solid black;
	padding: 50px 50px 250px;
	margin-bottom: -225px !important;
	margin-left: -50px !important;
	border-bottom: 0;
	position: relative;
	z-index: 1;
}

.meta-group-title::before,
.meta-group-title::after {
	content: "";
	position: absolute;
	bottom: 0;
	width: 10px;
	height: 200px;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgb(255, 255, 255));
}

.meta-group-title::before {
	left: -5px;
}

.meta-group-title::after {
	right: -5px;
}

.single .campground-meta > .meta-item {
	display: flex;
	flex-direction: column;
	gap: 5px;
	width: 45%;
}

.single .meta-label {
	font-size: 12px;
	font-weight: 600;
	color: rgba(134, 134, 134, 0.93);
}

.single .meta-value {
	font-size: 20px;
}

.single .campground-image {
	height: 500px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: auto;
}