.yachts-for-charter {
	width: 100%;
	display: flex;
	flex-direction: column;
	margin: 40px 0;
	position: relative;
	align-items: center;
}
.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: #c3c3c3;
	line-height: 1.6;
	font-family: system-ui;
}
.yacht-charter-header-section {
	position: absolute;
	top: 360px;
	left: 50%;
	display: flex;
	flex-direction: column;
	max-width: 900px;
	align-items: flex-start;
	transform: translateX(-50%);
	background-color: var(--dark-blue-accent);
	padding: 30px 50px;
	color: white;
	width: calc(100% - 100px);
}
.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 {
  	background: linear-gradient(to bottom, var(--dark-blue-accent) 0, var(--dark-blue-accent) 100px, transparent 100px);
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	overflow-x: auto;
	scrollbar-width: none;
	margin-bottom: 40px;
}
@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: 300px;
}
.destination img {
	width: 100%;
	aspect-ratio: 1.6;
	object-fit: cover;
}
.destination-info {
	width: calc(100% - 2rem);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 1rem;
}
.destination-name {
	font-size: 1.3rem;
	line-height: 1;
	margin-bottom: 8px;
	font-family: var(--accent-font-regular);
}
@media (max-width: 500px) {
	.destination-info span {
		font-size: 0.9rem;
	}
	.destination-name {
		font-size: 1.1rem !important;
	}
}