.pp_wrp {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    opacity: 0;
    transform: scale(.7);
    transition: opacity .3s, transform .3s;
    background-color: var(--GnpG5_clr_background);
    z-index: 100;
}

.pp_wrp.active {
    opacity: 1;
    transform: scale(1);
}

body:has(.pp_wrp.active) {
    overflow: hidden;
}

.pp {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: scroll;
    overflow-x: hidden;
}

.detail_card_info {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.detail_card_info .preview_img {
    position: relative;
    width: 100%;
    height: fit-content;
    max-height: 40em;
    /* aspect-ratio: 1920/640; */
    aspect-ratio: 3;
    display: flex;
}

.detail_card_info .card_info {
    position: relative;
    /* max-width: 75.75em; */
    /* width: 100%; */
    width: fit-content;
    padding: 6.6875em 3em 4.625em 3em;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    align-self: center;
    gap: 5.75em;
    transform: translateX(.25em);
}

.detail_card_info .card_info > .h2 {
    width: 17.8125em;
    font-size: 4em;
    font-weight: 300;
    line-height: 1.3;
    text-align: start;
    text-transform: uppercase;
}

.detail_card_info .detail_info {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    gap: 2em;
}

.detail_info .detail_info_item {
    position: relative;
    max-width: 24em;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.detail_info_item > span.txt_l {
    width: 100%;
    font-size: 1em;
    font-weight: 400;
    line-height: .6875;
    text-align: start;
    
    padding-bottom: 1.25em;
    border-bottom: solid .0625em #FFFFFF1A;
}

.detail_info_item > h3.h3 {
    font-size: 1.5em;
    font-weight: 300;
    line-height: 1.3;
    text-align: start;
    color: var(--GnpG5_clr_gold_light);
    text-transform: uppercase;

    margin-top: .83333em;
}

.card_info .description_obj.txt_m {
    max-width: 39.8em;
    font-size: 1.25em;
    font-weight: 400;
    text-align: start;
    align-self: flex-end;
}

.detail_card_gallery {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4.5em;
    align-items: center;
}

.gallery_wrp {
    position: relative;
    width: 100%;
    height: fit-content;
    aspect-ratio: 1920/600;
    display: flex;
}

.gallery_wrp .swiper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery_wrp .swiper.g_slider_gal .swiper-wrapper {
    position: relative;
    width: max-content;
    height: 100%;
    display: flex;
}

.gallery_wrp .card_item_img {
    position: relative;
    /* max-width: 63em; */
    width: auto;
    height: 100%;
    /* aspect-ratio: 1008/600; */
    display: flex;
    cursor: pointer;
}

.detail_card_gallery .button_wrp {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 1.25em;
    align-self: center;
    margin-bottom: 1.5em;
}

.button_wrp .g_slider_gal {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    transform: translate(0);
    z-index: 0;
}

.button_wrp .g_slider_gal.swiper-button-next {
    transform: rotate(180deg);
}

.pp .btn_cls {
    position: fixed;
    top: 2em;
    right: 2em;
    width: 3.25em;
    height: 3.25em;
    display: flex;
    padding: 1.188em;
    border-radius: 100%;
    background-color: var(--GnpG5_clr_pure_wht);
    cursor: pointer;
}

@media screen and (max-width: 981px) {

    .pp {
        gap: 5em;
    }

    .gallery_wrp {
        aspect-ratio: 1;
    }

    .detail_card_info .preview_img {
        aspect-ratio: 386/300;
    }

    .detail_card_info .card_info {
        padding: 5.2em 1.626em 0 1.626em;
        gap: 2em;
        transform: translateX(0);
    }

    .detail_card_info .card_info > .h2 {
        width: 100%;
        font-size: 2.11em;
        line-height: 1.3;
    }

    .detail_card_info .detail_info {
        flex-direction: column;
        justify-content: flex-start;
        gap: 2em;
    }

    .detail_info .detail_info_item {
        max-width: none;
    }

    .card_info .description_obj.txt_m {
        max-width: none;
        font-size: 1.3em;
        font-weight: 300;
        line-height: 1.4;
    }

    .gallery_wrp .card_item_img {
        max-width: none;
        width: auto;
        height: 100%;
    }

    .detail_card_gallery {
        gap: 2.5em;
        margin-bottom: 4em;
    }
}