/* Portfolio Layout */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 40px;
  padding-bottom: 60px;
}

/* Individual Card */
.portfolio-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

/* Title + Description */
.portfolio-card h3 {
  font-size: 1.5rem;
  color: var(--mousa-primary, #0A2A43);
  margin-bottom: 6px;
}

.portfolio-card p {
  font-size: 0.95rem;
  color: #777;
  margin-bottom: 16px;
}

/* Preview Images */
.preview-images {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.preview-images img {
  width: 80px;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.preview-images img:hover {
  transform: scale(1.05);
}

/* Learn More Button */
.btn-learn {
  display: inline-block;
  padding: 10px 22px;
  background: var(--mousa-accent, #D4AF37);
  color: #000;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.3s ease;
}

.btn-learn:hover {
  background: #c19e2c;
}
