.gallery-detail {
    position: relative;
    background: var(--color-white);
    border: 1px solid var(--color-grey-thin4);
    border-radius: var(--radius-md);
    margin-bottom: 30px;
}
.gallery-detail__labels {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 20px;
    left: -10px;
    width: 65%;
    gap: 10px;
    z-index: 2;
}
.gallery-detail__badges {
    position: absolute;
    width: 35%;
    top: 20px;
    right: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
    z-index: 2;
}
.gallery-detail__container {
    overflow: hidden;
}
.gallery-detail__slide {
    width: 100%;
    height: 0;
    padding-bottom: 80%;
    position: relative;
}
.gallery-detail__img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: calc(100% - 112px);
    height: calc(100% - 48px);
    object-position: center center;
    object-fit: contain;
}
.gallery-detail__prev {
    left: 20px;
    right: auto;
}
.gallery-detail__next {
    left: auto;
    right: 20px;
}
.gallery-detail__pagination {
    bottom: -28px !important;
}
@media screen and (min-width: 768px) {
    .gallery-detail {
        margin-bottom: 55px;
    }
    .gallery-detail__slide {
        padding-bottom: 100%;
    }
}