.pc-carousel-wrapper {
  position: relative;
  width: 50%;
  margin: 0 auto;
  overflow: hidden;
}

.pc-carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.pc-item {
  min-width: 33.33%;
  box-sizing: border-box;
  padding: 5px;
  flex-shrink: 0;
}

/* Cover style */
.pc-cover {
  position: relative;
  width: 100%;
  aspect-ratio: 210 / 297; /* A4 ratio */
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.pc-cover-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
  position: relative;
}

/* Overlay for readability */
.pc-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}

.pc-cover-title {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  text-shadow: 0 2px 6px rgba(0,0,0,0.7);
  width: 90%;
  line-height: 1.2;
  z-index: 2;
}

/* Navigation buttons */
.pc-prev, .pc-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  z-index: 10;
  font-size: 18px;
  border-radius: 50%;
}

.pc-prev { left: -40px; }
.pc-next { right: -40px; }