.guild-container {
    position: relative;
}

.guide-header {
    padding: 0 2rem;
    position: relative;
}

.guide-title-1 {
    text-align: center;
    font-size: 4rem;
    color: var(--deep-green);
}

.guide-title-2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--deep-blue);
}

.guide-title-3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    padding: 0 2rem;
    color: var(--deep-blue);
}

.guide-list {
    list-style-type: none;
    text-align: center;
    color: var(--deep-green);
    margin-bottom: 1rem;
}

.guide-list-item {
    font-size: 1.1rem;
    font-weight: 500;
    padding: .5rem 0;
}

.icon-leave::after {
    content: "🌿";
}

.leave-left {
    display: none;
}

.leave-right {
    display: none;
}

.gift-item {
    height: 400px;
}

.gift-example-mobile .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gift-example-mobile .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gift-example-desktop {
    display: none;
}

.guide-title-2-desktop{
    display: none;
}

@media screen and (min-width: 1024px) {
    .guide-header {
        padding: 2rem 6rem;
    }

    .leave-left {
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        /* same .guide-header padding */
        width: 6rem;
    }

    .leave-right {
        position: absolute;
        display: block;
        bottom: 0;
        right: 0;
        /* same .guide-header padding */
        width: 10rem;
        z-index: 2;
    }

    .guide-title-1 {
        font-size: 8rem;
    }

    .guide-title-2 {
        font-size: 4rem;
        margin-bottom: 1rem;
    }

    .guide-title-2-mobile {
        display: none;
    }

    .guide-title-2-desktop{
        display: block;
    }

    .guide-title-3 {
        font-size: 1.7rem;
        max-width: 770px;
        margin: 0 auto;
        margin-bottom: 2rem;
    }


    .gift-layout {
        background-image: url(../images/notebook-bg.png);
        background-repeat: no-repeat;
        width: 100%;
        background-size: contain;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 66.25%;
        position: relative;
    }

    .gift-group {
        display: flex;
        flex-direction: row-reverse;
        align-items: start;
        justify-content: center;
        gap: 2.5rem;
        position: absolute;
        top: 15%;
        padding: 0 2rem;
        width: 100%;
    }

    .guide-list {
        text-align: left;
        padding: 2rem 0;
        width: 50%;
    }

    .guide-list-item {
        font-size: 2rem;
        font-weight: 500;
        padding: 1.4rem 0;
    }

    .gift-examples {
        width: 50%;
    }

    .gift-item {
        height: 400px;
    }

    .icon-leave::after {
        content: "🌱";
    }

    .gift-example-mobile {
        display: none;
    }

    .gift-example-desktop {
        display: block;
    }

    .gift-item-desktop {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .gift-example-desktop .swiper-slide {
        text-align: center;
    }

    .gift-example-desktop .swiper {
        padding-right: 20px;
        padding-left: 20px;
    }

    .gift-example-desktop .swiper-button-next {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        color: white;
        background-color: var(--deep-blue);
    }

    .gift-example-desktop .swiper-button-next:after {
        font-size: 16px;
    }

    .gift-example-desktop .swiper-button-prev {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        color: white;
        background-color: var(--deep-blue);
    }

    .gift-example-desktop .swiper-button-prev:after {
        font-size: 16px;
    }


}

@media screen and (min-width: 1920) {
    .guide-list-item {
        font-size: 2rem;
    }
}