.tour {
    counter-reset: tour-num;
}

.gallery-guide {
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 100px;
}

.gallery-guide:nth-child(even) {
    flex-direction: row-reverse;
}

.gallery-guide:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.gallery-guide .text {
    margin-top: 30px;
}

.gallery-guide .text h2 {
    margin-bottom: 15px;
}

.gallery-guide .text h2::before {
    content: 'tour ' counter(tour-num, decimal-leading-zero);
    counter-increment: tour-num;
    display: block;
    letter-spacing: 5px;
    font-size: 13px;
    font-family: 'SUIT';
    line-height: 1;
    margin-bottom: 10px;
    color: var(--color-primary);
}

.gallery-guide .text p{
    color: var(--color-mute);
    word-break: keep-all;
}

.gallery-guide .text .location {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 30px;
}

.gallery-guide .text .location::before {
    content: '\e0c8';
    margin-right: 3px;
    font-family: 'Material Symbols Rounded';
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.tour .source {
    display: flex;
    justify-content: flex-end;
    font-size: 15px;
    color: var(--color-mute);
}

.tour .source .g-icon {
    transform: rotate(45deg);
    color: var(--color-mute);
    font-size: 16px;
    margin-right: 5px;
}

.tour-slider {
    width: 100%;
    flex: 1 0 auto;
    --dot-position: 25px;
}

.tour-slider.slider .slick-track {
    margin: 0;
}

.tour-slider.slider .slider-contents {
    width: 100%;
}

.tour-slider.slider .slider-contents::before {
    content: '';
    display: block;
    padding-bottom: 65%;
}

/* Desktop ( 1024px ~)*/
@media all and (min-width:1024px) {
    .tour-slider {
        max-width: 40vw;
    }

    .gallery-guide .text {
        margin-top: 0;
    }

    .gallery-guide .text p {
        max-width: 600px;
    }
}

/* Laptop ( 1024px ~ 1440px)*/
@media all and (min-width:1024px) and (max-width:1440px) {
    .gallery-guide {
        column-gap: 50px;
    }

    .tour-slider {
        max-width: 45vw;
    }
}

/* Tablet ( 768px ~ 1023px)*/
@media all and (min-width:768px) and (max-width:1023px) {
    .gallery-guide {
        flex-direction: column;
    }

    .gallery-guide:nth-child(even) {
        flex-direction: column;
    }

    .gallery-guide .text {
        width: 100%;
    }

}

/* Mobile ( ~ 767px)*/
@media all and (max-width:767px) {
    .gallery-guide {
        margin-bottom: 40px;
        padding-bottom: 40px;
    }

    .gallery-guide {
        flex-direction: column;
    }

    .gallery-guide:nth-child(even) {
        flex-direction: column;
    }

    .gallery-guide .text {
        width: 100%;
    }

    .gallery-guide .text h2 {
        margin-bottom: 20px;
    }

    .tour-slider.slider {
        --dot-position: 15px;
    }
}