.pc-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: flex-start;
  /* Aligns cards to the left/center */
  padding: 20px 0;
  width: 100%;

  max-width: 1200px;
  /* Adjust based on your page width */
  margin: 0 auto;
  /* Centers the whole grid on the page */
}

/* 2. Fix the Card Width */
.pc-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 300px;
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
 .pc-card:hover{

    transform: translateY(15px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }
.pc-link {
  text-decoration: none;
  color: #3366cc;
  font-weight: 600;
}
    .pc-stripe {
      height: 4px;
      width: 100%;
      margin-bottom: 1rem;
      border-radius: 2px;
    }
.pc-link:hover {
  color: #0A355C;
  text-decoration: underline;
}

/* Header & Title Adjustments */
.pc-title {
  color: #333 !important;
  /* Ensure title is visible too */
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.pc-stripe {
  height: 4px;
  width: 100%;
  border-radius: 2px;
}

.pc-body {
  color: #555 !important;
  flex-grow: 1;
  padding: 15px 0;
  font-size: 0.95rem;
}

/* Responsive: On mobile, let them go 100% */
@media (max-width: 600px) {
  .pc-card {
    flex: 1 1 100%;
    width: 100%;
  }
}