
.orbit-section {
    position: relative;

    width: 100%;

    display: grid;

    grid-template-columns: 62.5% 37.5%;
    grid-template-rows: auto 1fr;

    min-height: clamp(36rem, 48vw, 48rem);

    background: #073760;

    overflow: hidden;
}


.orbit-top {
    grid-column: 1 / 3;
    grid-row: 1;

    position: relative;

    min-height: clamp(7rem, 9vw, 9rem);

    z-index: 5;

    pointer-events: none;
}

.orbit-description {
    position: absolute;

    left: 39%;
    bottom: 1.3rem;

    width: 22%;

    padding-bottom: 0.8rem;

    color: #ffffff;

    text-align: right;

    font-family: 'Avenir';

    font-size:
        clamp(
            1rem,
            1vw,
            0.95rem
        );

    line-height: 1.25;
}

.orbit-heading {
    position: absolute;

    left: 65.5%;
    bottom: 1.2rem;

    color: #e8d9c4;

  font-family: 'Big Caslon';

    font-size:
        clamp(
            1.65rem,
            2.15vw,
            2.5rem
        );

    

    line-height: 1.04;

    letter-spacing: 0.01em;
}


.orbit-top::after {
    content: "";

    position: absolute;

    left: 39.8%;
    right: 9%;

    bottom: 0;

    height: 0.08rem;

    background: rgba(232, 217, 196, 0.9);
}

.orbit-map-panel {
    position: relative;

    grid-column: 1;
    grid-row: 1 / 3;

    width: 100%;
    height: 100%;

    min-height: clamp(36rem, 48vw, 48rem);

    background: #31597d;

    overflow: hidden;
}

.orbit-map-stage {
    position: absolute;

    top: 4%;
    left: 5%;
    right: 4%;
    bottom: 3%;

    display: flex;

    justify-content: center;
    align-items: center;

    overflow: hidden;

    touch-action: none;

    user-select: none;
}

.orbit-map-image {
    display: block;

    width: 88%;
    height: auto;

    max-height: 100%;

    object-fit: contain;

    transform-origin: center center;

    transform:
        translate3d(0, 0, 0)
        scale(1);

    transition:
        transform 0.25s ease;

    user-select: none;

    -webkit-user-drag: none;
}


.orbit-map-image.zoomed {
    cursor: grab;
}


.orbit-map-image.dragging {
    cursor: grabbing;

    transition: none;
}

.orbit-zoom-controls {
    position: absolute;

    z-index: 10;

    left: 4.5%;
    bottom: 8%;

    display: flex;

    flex-direction: column;

    gap: 0.45rem;
}


.orbit-zoom-button {
    display: flex;

    align-items: center;
    justify-content: center;

    width: clamp(1.9rem, 2.3vw, 2.3rem);

    aspect-ratio: 1 / 1;

    padding: 0;

    border: none;

    border-radius: 50%;

    background: #e8d9c4;

    color: #31597d;

    font-family:
        Arial,
        Helvetica,
        sans-serif;


    font-size: 1.45rem;

    font-weight: 400;

    line-height: 1;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}


.orbit-zoom-button:hover {
    transform: scale(1.08);
}


.orbit-zoom-button:active {
    transform: scale(0.94);
}

.orbit-accordion {
    grid-column: 2;
    grid-row: 2;

    width: 100%;

    min-height: 100%;

    padding:
        clamp(2rem, 3vw, 3.5rem)
        clamp(3rem, 6vw, 7rem)
        clamp(2rem, 4vw, 4rem)
        clamp(4rem, 7vw, 7rem);

    background: #073760;
}


.orbit-item {
    width: 100%;
}

.orbit-item-button {
    width: 100%;

    display: grid;

    grid-template-columns:
        1.7rem
        minmax(0, 1fr)
        clamp(3rem, 5vw, 5rem);

    align-items: center;

    gap: 0.65rem;

    padding: 0.55rem 0;

    border: 0;

    outline: none;

    background: transparent;

    text-align: left;

    cursor: pointer;
}


.orbit-item-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    color: #e8d9c4;

    font-size:
        clamp(
            1rem,
            1.3vw,
            1.3rem
        );
}

.orbit-item-title {
    color: #f5f0e9;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size:
        clamp(
            0.73rem,
            1vw,
            0.95rem
        );

    font-weight: 600;

    line-height: 1.2;
}


.orbit-item-divider {
    display: flex;

    align-items: center;

    width: 100%;
}


.orbit-item-dot {
    width: 0.32rem;
    height: 0.32rem;

    flex-shrink: 0;

    border-radius: 50%;

    background: #e8d9c4;
}


.orbit-item-line {
    flex: 1;

    height: 0.08rem;

    background: #e8d9c4;
}

.orbit-item-content {
    display: grid;

    grid-template-rows: 0fr;

    transition:
        grid-template-rows 0.4s ease;
}


.orbit-item.open .orbit-item-content {
    grid-template-rows: 1fr;
}


.orbit-item-content-inner {
    overflow: hidden;

    padding-left: 2.35rem;

    opacity: 0;

    transform: translateY(-0.35rem);

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}


.orbit-item.open .orbit-item-content-inner {
    opacity: 1;

    transform: translateY(0);

    padding-bottom: 0.7rem;
}


.orbit-item-content p {
    margin: 0 0 0.12rem;

    color: #ffffff;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size:
        clamp(
            0.7rem,
            0.9vw,
            0.88rem
        );

    line-height: 1.8;
}

@media (max-width: 1024px) and (orientation: portrait) {

    .orbit-section {
        display: flex;

        flex-direction: column;

        min-height: 0;

        background: #31597d;
    }

    .orbit-top {
        order: 1;

        width: 100%;

        min-height: 0;

        padding:
            clamp(2rem, 8vw, 4rem)
            12%
            clamp(1.7rem, 6vw, 3rem);

        background: #073760;
    }


    .orbit-top::after {
        display: none;
    }

    .orbit-heading {
		padding-top: 0.8rem;
        position: relative;

        left: auto;
        bottom: auto;

        width: 100%;

        margin-bottom:
            clamp(
                1.5rem,
                5vw,
                2rem
            );

        text-align: right;

        font-size:
            clamp(
                1.25rem,
                5.5vw,
                2rem
            );
    }


    .orbit-description {
        position: relative;

        left: auto;
        bottom: auto;

        width: 100%;

        padding: 0;

        text-align: right;

        font-size:
            clamp(
                0.62rem,
                2.7vw,
                0.85rem
            );

        line-height: 1.3;
		
		font-size: 0.8rem;
    }


    .orbit-map-panel {
        order: 2;

        width: 100%;

        min-height:
            clamp(
                23rem,
                102vw,
                45rem
            );
    }


    .orbit-map-stage {
        top: 4%;
        left: 4%;
        right: 4%;
        bottom: 4%;
    }


    .orbit-map-image {
        width: 95%;

        max-height: 96%;
    }


    .orbit-zoom-controls {
        left: 5%;
        bottom: 6%;
    }


    .orbit-zoom-button {
        width:
            clamp(
                1.8rem,
                8vw,
                2.4rem
            );

        font-size:
            clamp(
                1.15rem,
                5vw,
                1.5rem
            );
    }

    .orbit-accordion {
        order: 3;

        width: 100%;

        min-height: 0;

        padding:
            clamp(2rem, 8vw, 3.5rem)
            12%
            clamp(3rem, 10vw, 5rem);

        background: #073760;
    }


    .orbit-item-button {
        grid-template-columns:
            1.4rem
            minmax(0, 1fr)
            3rem;

        gap: 0.45rem;

        padding: 0.4rem 0;
    }


    .orbit-item-icon {
        font-size:
            clamp(
                0.85rem,
                3.5vw,
                1.1rem
            );
    }


    .orbit-item-title {
        font-size:
            clamp(
                0.8rem,
                2.8vw,
                0.85rem
            );
    }


    .orbit-item-content-inner {
        padding-left: 1.85rem;
    }


    .orbit-item-content p {
        font-size:
            clamp(
                0.8rem,
                2.65vw,
                0.8rem
            );

        line-height: 2;
    }

}

@media (max-width: 1024px) and (orientation: landscape) {

    .orbit-section {
        display: grid;

        grid-template-columns: 62% 38%;
        grid-template-rows: auto 1fr;

        min-height:
            clamp(
                30rem,
                90vh,
                42rem
            );
    }


    .orbit-top {
        grid-column: 1 / 3;
    }


    .orbit-description {
        left: 37%;

        width: 23%;

        font-size:
            clamp(
                0.52rem,
                1.25vw,
                0.72rem
            );
    }



    .orbit-heading {
        left: 65%;

        font-size:
            clamp(
                1.2rem,
                2.7vw,
                1.8rem
            );
    }


    .orbit-top::after {
        left: 38%;
        right: 7%;
    }


    .orbit-map-panel {
        min-height:
            clamp(
                30rem,
                90vh,
                42rem
            );
    }


    .orbit-map-image {
        width: 90%;
    }


    .orbit-accordion {
        padding:
            1.5rem
            7%
            2rem
            10%;
    }


    .orbit-item-button {
        grid-template-columns:
            1.25rem
            minmax(0, 1fr)
            2.8rem;

        gap: 0.4rem;

        padding: 0.35rem 0;
    }


    .orbit-item-icon {
        font-size:
            clamp(
                0.7rem,
                1.5vw,
                1rem
            );
    }


    .orbit-item-title {
        font-size:
            clamp(
                0.55rem,
                1.3vw,
                0.74rem
            );
    }


    .orbit-item-content-inner {
        padding-left: 1.7rem;
    }


    .orbit-item-content p {
        font-size:
            clamp(
                0.52rem,
                1.2vw,
                0.7rem
            );
    }

}