.pcv-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.pcv-child-grid {
  display: grid;
  gap: 2rem;
}
.pcv-child-grid.pcv-columns-1 { grid-template-columns: repeat(1, 1fr); }
.pcv-child-grid.pcv-columns-2 { grid-template-columns: repeat(2, 1fr); }
.pcv-child-grid.pcv-columns-3 { grid-template-columns: repeat(3, 1fr); }
.pcv-child-grid.pcv-columns-4 { grid-template-columns: repeat(4, 1fr); }
.pcv-child-grid.pcv-columns-5 { grid-template-columns: repeat(5, 1fr); }
.pcv-child-grid.pcv-columns-6 { grid-template-columns: repeat(6, 1fr); }

.pcv-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease-in-out;
  position: relative;
  transform: scale(1);
}

.pcv-card:hover {
  transition: all 0.2s ease-in-out;
  transform: scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.pcv-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.pcv-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  padding: 0.8rem 1rem 0.6rem;
  margin: 0;
  line-height: 1.4;
  z-index: 2;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
}

.pcv-card p {
  font-size: 0.9rem;
  color: #444;
  margin: 0.8rem 1rem 1.2rem;
}


.pcv-card {
  transform: scale(1.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.pcv-card:hover {
  transform: scale(1.12);
  box-shadow: 0 35px 65px rgba(0, 0, 0, 0.35);
}

.pcv-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  transform: scale(1);
}

.pcv-card:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.pcv-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.pcv-content {
  padding: 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  color: white;
  font-weight: 600;
  position: absolute;
  bottom: 0;
  width: 100%;
}
