.yachts-for-charter {
	width: 100%;
	display: flex;
	flex-direction: column;
	margin: 40px 0;
	position: relative;
	align-items: center;
	background-color: #eeeeee;
	margin-bottom: 0;
}
.yacht-charter-header h2 {
    margin-bottom: 0;
}
.charter-cover { 
    padding-bottom: 70px;
	background-color: var(--dark-blue-accent);
    width: 100%;
    height: 470px;
    object-fit: cover;
}
.yacht-charter-body p {
	letter-spacing: unset;
	font-weight: 200;
	font-size: 0.9rem;
	color: #444444;
	line-height: 1.6;
	font-family: system-ui;
	margin-bottom: 0;
}
.yacht-charter-header-section {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 30px 0;
	width: calc(100% - 40px);
	max-width: 1160px;
}
.yacht-charter-grid {
	flex-shrink: 0;
	display: flex;
	flex-direction: row;
	gap: 20px;
	overflow: hidden;
	width: fit-content;
	justify-content: flex-start;
	margin: 0 20px;
}
.yacht {
	min-width: 300px;
}
.yacht-grid-cont-and-bg {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	overflow-x: auto;
	scrollbar-width: none;
	margin-bottom: 40px;
	max-width: 1200px;
}
@media (max-width: 1320px) {
	.yacht-grid-cont-and-bg {
		align-items: flex-start;
	}
}
.for-owners-container {
    max-width: 1000px;
}
.for-owners p {
    font-weight: 200;
	letter-spacing: .07rem;
	font-size: 0.8rem;
	color: #dddddd;
	line-height: 1.6;
}
.for-owners {
	width: calc(100% - 80px);
	padding: 40px;
	color: white;
	background-color: #1d1d1d;
	display: flex;
	flex-direction: column;
	align-items: center;
}



.charter-destinations {
	margin-top: 60px;
	margin-bottom: 60px;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	max-width: 1400px;
}
.charter-destinations-grid-wrapper {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	overflow-x: auto;
	scrollbar-width: none;
	margin-bottom: 40px;
	align-items: flex-start;
}


.destinations-grid {
	flex-shrink: 0;
	display: flex;
	flex-direction: row;
	gap: 20px;
	overflow-x: auto;
	width: calc(100% - 40px);
	max-width: 1500px;
	width: fit-content;
	justify-content: flex-start;
	margin: 0 20px;
}
.destination {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	background-color: #ebf0ff;
	min-width: 330px;
	position: relative;
	border-radius: 20px;
	cursor: pointer;
}

.destination {
	position: relative;
	overflow: hidden;
}

.destination::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top,rgba(0, 0, 0, 0.65) 0%,rgba(0, 0, 0, 0.25) 50%,rgba(0, 0, 0, 0) 60%);
	pointer-events: none;
	z-index: 2;
}

.destination > * {
	position: relative;
	z-index: 2;
}
.destination img {
	width: 100%;
	aspect-ratio: 1.4;
	object-fit: cover;
}
.destination-info {
	width: calc(100% - 4rem);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 2rem;
	position: absolute;
	bottom: 0;
	color: white;
	z-index: 3;
}
.destination-name {
	font-size: 1.7rem;
	line-height: 1;
	margin-bottom: 8px;
	font-family: Libre_Baskerville;
	letter-spacing: 0.09rem;
}
@media (max-width: 500px) {
	.destination-info {
		width: calc(100% - 2rem);
		padding: 1rem;
	}
	.destination-desc {
		display: none;
	}

	.destination-info span {
		font-size: 0.9rem;
	}
	.destination-name {
		font-size: 1.2rem !important;
		margin: 0;
	}
}