.post-view-product__wrap {
  width: 45%;
  max-width: 648rem;
  min-width: 1px;
}
@media (max-width: 1024px) {
  .post-view-product__wrap {
    width: 100%;
    margin: 0 auto;
  }
}
.post-view-product__slider {
  margin: 0;
}
.post-view-product__slider .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 44rem;
  background-color: var(--color-gray-50);
  aspect-ratio: 1/1;
}
@media (max-width: 1024px) {
  .post-view-product__slider .swiper-slide {
    padding: 32rem;
  }
}
@media (max-width: 640px) {
  .post-view-product__slider .swiper-slide {
    padding: 28rem;
  }
}
.post-view-product__thumb {
  margin: 32rem 0 0;
}
.post-view-product__thumb .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 4rem;
  background-color: var(--color-gray-50);
  aspect-ratio: 1/1;
}
.post-view-product__thumb .swiper-slide-thumb-active::before {
  opacity: 1 !important;
}
.post-view-product__thumb .swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  border: 1px solid var(--color-primary);
  transition: opacity 0.3s;
}