.your-ship-images {
    display: flex;
}

.your-ship-left-image {
    width: 67%;
    position: relative;
}

.your-ship-right-image {
    width: 33%;
    padding-left: 30px;
    display: flex;
    gap: 30px;
    flex-direction: column;
}

.your-ship-image-container.desk-hidden {
    display: none;
}

.your-ship-right-image .your-ship-image-container {
    height: 50%;
    display: flex;
}

.your-ship-image {
    height: auto;
}

.your-ship-left-image .your-ship-image-container .slide {
    height: 500px;
}

.your-ship-left-image .ship-slideshow .slide {
    border-radius: 10px;
}

.your-ship-right-image .ship-slideshow .slide {
    max-height: 100%;
    border-radius: 10px;
    height: 235px;
}

.your-ship__description {
    margin: 27px 0 0 0;
}

.your-ship__description .tabs {
    width: 100%;
    display: flex;
    gap: 2px;
    justify-content: flex-start;
    flex-wrap: wrap;
    float: unset;
    border-radius: 5px 5px 0 0;
}

.your-ship__description .tabs li {
    text-align: center;
    border-radius: 5px 5px 0 0;
}

.your-ship__description .tabs li a {
    padding: 9px 21px;
    background: var(--fc-blue);
    font: normal normal bold 20px/24px 'Barlow Condensed';
    border-radius: 5px 5px 0 0;
    white-space: nowrap;
    overflow: hidden;
}

.your-ship__description .tab-container {
    width: 100%;
}

.your-ship__description .tabs li a.active {
    background: var(--fc-white);
    color: var(--fc-blue);
    border-left: 1px #dddddd solid;
    border-right: 1px #cacaca solid;
    border-top: 1px #cacaca solid;
}

.your-ship__description .tabs li:first-child a.active::after {
    height: 5px;
    border-right: 0;
    bottom: -3px;
}

.your-ship__description .tabs li:last-child a.active::after {
    height: 5px;
    border-left: 0;
    bottom: -3px;
    left: 1px;
}

.your-ship__description .tabs li a:hover {
    color: var(--fc-white);
    background: var(--fc-blue-hover);
}

.your-ship__description .tabs li a.active:hover {
    color: var(--fc-gray);
    background: var(--fc-white);
}

.your-ship-right-image .ship-slideshow {
    height: 235px;
}

.your-ship-right-image .ship-slideshow .slide {
    max-height: 100%;
    border-radius: 10px;
    height: 235px;
}

.your-ship__description--mobile {
    display: none;
}

section.your-ship {
    margin: 79px 0 0 0;
}

.tabs li:has(a.active) {
    position: relative;
}

.tabs li a.active {
    position: unset;
}

.tabs li a.active::after {
    content: ' ';
    width: calc(100% - 2px);
    display: block;
    height: 3px;
    position: absolute;
    left: 0;
    bottom: -1px;
    border-left: 1px solid #dddddd;
    border-right: 1px solid #cacaca;
    background: var(--fc-white);
    z-index: 9999;
}

.tab-container {
    float: none;
    width: 100%;
    background-color: white;
    border: 1px var(--fc-lightgray) solid;
    border-radius: 5px;
}

.tab-container .panel {
    background: var(--fc-white);
}

@media (max-width: 1080px) {
    .your-ship-images {
        flex-direction: column;
        gap: 12px;
    }

    .your-ship-left-image {
        width: 100%;
    }

    .your-ship-right-image {
        padding: 0;
        width: 100%;
        justify-content: space-between;
        flex-direction: row;
        gap: 10px;
    }

    .your-ship__description .tabs li a {
        border-radius: 5px;
    }

    .your-ship-right-image .your-ship-image-container {
        width: 50%;
    }
}

@media (max-width: 780px) {
    .your-ship-left-image .your-ship-image-container .slide,
    .single-cruises .ship-slideshow,
    .single-cruises .ship-slideshow .slide {
        height: 230px;
    }

    .single-cruises .your-ship-right-image .ship-slideshow .slide {
        height: 200px;
    }

    .your-ship__description .tabs li {
        text-align: left;
    }
}

@media (max-width: 600px) {
    .single-cruises .your-ship-right-image .ship-slideshow .slide {
        height: 166px;
    }
}

@media (max-width: 500px) {
    .single-cruises .your-ship-right-image .ship-slideshow .slide {
        height: 110px;
    }
}