/* ===============================
   PORTFOLIO SPÉCIFIQUE
================================= */
.port-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  justify-items: center;
  margin-top: 2rem;
}

.port-gallery .model-card {
  background: var(--paper);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
  transition: transform .25s ease;
}

.port-gallery .model-card:hover {
  transform: translateY(-6px);
}

.port-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid rgba(0,0,0,.05);
}

/* Tarifs spécifiques au portfolio */
.pricing-portfolio .card {
  background: #fffaf7;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,.1);
  padding: 24px;
  text-align: left;
  max-width: 280px;
}
.port-gallery {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.port-gallery .model-card {
  max-width: 100%;
}
