.yacht-images-container {
    display: grid;
	grid-template-columns: 1fr 1fr;
	position: relative;
	gap: 10px;
    cursor: pointer;
}
.yacht-images-container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
    aspect-ratio: 16 / 9;
}
.image-container-view-all {
    position: absolute;
	bottom: 20px;
	right: 20px;
	background-color: white;
	padding: 10px 15px;
	border-radius: 8px;
	font-family: system-ui;
	font-weight: 400;
    cursor: pointer;
    color: black;
}
.image-container-view-all:hover {
    opacity: 0.7;
}

/* ~~~~~~~~~~~~~~~ */

h1 {
	font-size: 1.6rem;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
}
.yacht-sections-header {
	width: 100%;
	position: sticky;
	top: var(--header-height);
	height: 60px;
	background-color: var(--main-content-background);
	border-top: 1px solid #cbcbcb;
	border-bottom: 1px solid #cbcbcb;
	display: flex;
	justify-content: center;
	gap: 2rem;
	align-items: center;
	transition: top .3s;
    z-index: 1;
    overflow-x: auto;
    scrollbar-width: none;
}
.yacht-sections-header.short-gap {
    top: var(--header-tucked-height);
}
.yacht-section-item {
    cursor: pointer;
    box-shadow: inset 0px 0px 0 var(--main-accent-color);
    transition: box-shadow .2s;
    white-space: nowrap;
	font-size: 1rem;
}
.yacht-section-item.current-section {
    color: black;
    box-shadow: inset 0px -3px 0 var(--main-accent-color);
}

.yacht-info-section {
	display: flex;
	gap: 2rem;
	justify-content: space-between;
	padding: 2rem;
}
.info-section-title {
	font-size: 1.2rem;
	width: 200px;
	font-family: var(--accent-font-regular);
}
.info-section-content {
	white-space: break-spaces;
	color: #444;
	max-width: 900px;
	width: 100%;
	font-family: system-ui;
	font-weight: 200;
}

.yacht-content {
	display: flex;
	flex-direction: row;
	width: calc(100% - 4rem);
	align-items: flex-start;
	max-width: 1900px;
	margin-top: 3rem;
}
.yacht-content-left {
    display: flex;
	width: 100%;
	flex-direction: column;
    margin-bottom: 240px;
}
.gray-row {
    background-color: #f6f6f6;
}
#yacht-specs {
	width: 100%;
	max-width: 500px;
	display: flex;
	flex-direction: column;
    gap: 2rem;
}
.yacht-spec-item {
	display: flex;
	flex-direction: row;
	gap: 1rem;
	justify-content: space-between;
	align-items: flex-end;
}

.yacht-spec-item hr,
.additional-contact-section hr {
    width: 100%;
	height: 1px;
	border: none;
	background-color: #d2d2d2;
    margin: 0;
}
.yacht-spec-item hr {
    margin-left: 4px;
}
.spec-label,
.spec-value {
    white-space: nowrap;
	line-height: 1;
}


.yacht-points-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    row-gap: 1rem;
}
.key-features-grid {
    grid-template-columns: 1fr;
}
.yacht-points-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

#yacht-brochure {
	width: 140px;
	gap: 10px;
	margin: auto;
	margin-top: 1rem;
}



.yacht-content-right {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: calc(460px - 50px);
	position: sticky;
	top: calc(var(--header-height) + 80px);
	transition: top .3s;
	gap: 1rem;
	border-left: 1px solid #d2d2d2;
	padding-left: 2rem;
}
.yacht-content-right.short-gap {
    top: calc(var(--header-tucked-height) + 80px);
}

.yacht-details-section {
    display: flex;
	flex-direction: column;
}

.yacht-specs,
.yacht-rate {
	letter-spacing: unset;
	font-weight: 300;
	font-size: 1rem;
	color: #444;
	font-family: system-ui;
}
.yacht-specs {
    font-size: 0.9rem;
    margin-top: 4px;
	margin-bottom: 4px;
}
.yacht-rate {
	color: black;
}

.enquire,
.floating_enquire {
	width: 100%;
	margin-top: 2rem;
	margin-bottom: 1rem;
    height: 50px;
}
.enquire:hover,
.floating_enquire:hover { 
    box-shadow: inset 0 0 0px 26px var(--main-accent-color);
}

.additional-contact-section {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.additional-contact-item {
    display: flex;
	align-items: center;
	gap: 10px;
	height: 30px;
    color: #444;
    cursor: pointer;
}
.additional-contact-item:hover {
    color: black;
    text-decoration: underline;
}
.additional-contact-item svg {
}
.additional-contact-item span {
    font-size: 1rem;
}


.floating_enquire {
	display: none;
	position: fixed;
	bottom: -70px;
	width: calc(100% - 40px);
	left: 20px;
	background-color: white;
	transition: bottom .3s 
}
.floating_enquire.active {
	bottom: 20px;
}

@media (max-width: 1200px) {
	.floating_enquire {
		display: flex;
	}
    .yacht-content {
	    flex-direction: column-reverse;
        width: 100%;
    }
	.yacht-content-left {
		
	}
	.yacht-content-right {
		padding: 1rem;
		width: calc(100% - 2rem);
		max-width: unset;
		border: none;
		position: unset;
	}

	.yacht-info-section {
		padding: 1rem;
	}

    .yacht-sections-header {
        width: calc(100% - 40px);
        justify-content: flex-start;
        padding-left: 20px;        
        padding-right: 20px;        
    }
}
@media (max-width: 768px) {
    .yacht-content {
        margin-top: 0;
    }
    #yacht-specs {
        max-width: unset;
    }
    .yacht-info-section {
        flex-direction: column;
        gap: 1rem;
    }
}
@media (max-width: 500px) {
    .main-image {
        max-height: 290px;
    }
    #main-image-container {
        height: 390px;
    }
	.yacht-sections-header {
		height: 44px;
	}
}