.pc-related-slider {
  margin: 30px 0;
  position: relative;
}

.pc-related-swiper {
  position: relative;
  overflow: hidden;
}

.pc-related-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.pc-related-title {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}

.pc-related-nav {
  position: absolute;
  inset: 0;
  z-index: 20;
  pointer-events: none;
}

.pc-related-prev,
.pc-related-next {
  position: absolute;
  top: 37%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 64px;
  z-index: 3;
  line-height: 1;
  padding: 0;
  pointer-events: auto;
  color: white;
}

.pc-related-prev {
  left: 8px;
}

.pc-related-next {
  right: 8px;
}

.pc-related-prev:disabled,
.pc-related-next:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Ensure your card fills slide nicely */
.pc-related-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.pc-related-swiper .swiper-slide > * {
  width: 100%;
}

/* Optional: pagination spacing */
.pc-related-pagination {
  margin-top: 14px;
}

/* Mobile spacing */
@media (max-width: 767px) {
  .pc-related-head {
    align-items: flex-start;
  }
  .pc-related-title {
    font-size: 18px;
  }

  .pc-related-prev,
  .pc-related-next {
    width: 46px;
    height: 46px;
    font-size: 30px;
  }
}
