/* =========================================================
   TOUR PAGE
   ========================================================= */

.tour-page {
    width: 100%;
}


/* =========================================================
   CONTENT WRAPPER
   ========================================================= */

.tour-content-wrapper {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);

    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        320px;

    column-gap: 28px;
    align-items: start;
}


/* =========================================================
   MAIN CONTENT
   ========================================================= */

.tour-main-content {
    width: 100%;
    min-width: 0;
    grid-column: 1;
}


/* =========================================================
   BOOKING CARD
   ========================================================= */

.tour-content-wrapper > .booking-card {
    width: 100%;

    grid-column: 2;
    grid-row: 1;

    position: sticky;
    top: 20px;

    align-self: start;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .tour-content-wrapper {
        grid-template-columns:
            minmax(0, 1fr)
            280px;

        column-gap: 20px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .tour-content-wrapper {
        display: flex;
        flex-direction: column;

        width: 100%;
        max-width: none;

        margin: 0;
        padding: 0 var(--container-padding);
    }


    /* -----------------------------------------------------
       MAIN CONTENT
       ----------------------------------------------------- */

    .tour-main-content {
        width: 100%;
        min-width: 0;

        grid-column: auto;

        order: 1;
    }


    /* -----------------------------------------------------
       BOOKING CARD
       ----------------------------------------------------- */

    .tour-content-wrapper > .booking-card {
        width: 100%;

        grid-column: auto;
        grid-row: auto;

        position: static;

        align-self: auto;

        order: 2;

        margin-top: 24px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .tour-content-wrapper {
        padding: 0 16px;
    }


    .tour-content-wrapper > .booking-card {
        margin-top: 20px;
    }

}