.container-where-to-next {
	margin-top: 4rem;
	margin-bottom: 4rem;
}

.container-where-to-next .where-to-next-title {
	margin-bottom: 2rem;
	font-size: 1.5rem;
	font-weight: bold;
}

.container-where-to-next .where-to-next-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 1.5rem;
	margin-bottom: 0;
	margin-left: -15px;
	margin-right: -15px;
}

.container-where-to-next .where-to-next-carousel {
	display: none;
}

.container-where-to-next .where-to-next-item {
	width: 100%;
}

.container-where-to-next .where-to-next-card {
	border-radius: 1.5rem;
	display: block;
	overflow: hidden;
	cursor: pointer;
	text-decoration: none;
	position: relative;
	padding-bottom: 100%;
	background-color: #f8f8fc;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	width: 100%;
	height: 0;
}

.container-where-to-next .where-to-next-card:hover {
	text-decoration: none;
	transform: translateY(-4px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.container-where-to-next .where-to-next-card picture {
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
}

.container-where-to-next .where-to-next-card picture img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.container-where-to-next .where-to-next-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 1.5rem;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
	color: white;
	z-index: 100;
}

.container-where-to-next .where-to-next-name {
	font-family: "OpenSans-Bold";
	font-size: 1.125rem;
	margin-bottom: 0.25rem;
	color: white;
	line-height: 1.3;
}

.container-where-to-next .where-to-next-trips {
	font-family: "OpenSans-SemiBold";
	font-size: 0.875rem;
	background-color: white;
	color: black;
	padding: 0.25rem 0.75rem;
	border-radius: 1.5rem;
	display: inline-block;
	margin-top: 0.5rem;
}

.container-where-to-next .where-to-next-carousel .owl-item {
	padding: 0 0.5rem;
}

.container-where-to-next .where-to-next-carousel .owl-item .where-to-next-card {
	padding-bottom: 100%;
}

@media (max-width: 1200px) {
	.container-where-to-next .where-to-next-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media (max-width: 992px) {
	.container-where-to-next .where-to-next-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 1rem;
	}
}

@media (max-width: 768px) {
	.container-where-to-next {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}

	.container-where-to-next .where-to-next-grid {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
		margin-bottom: 2rem;
		margin-left: 0;
		margin-right: 0;
	}

	.container-where-to-next .where-to-next-carousel {
		display: none;
	}
}

