.projects-grid {
  display: flex;
  flex-wrap: wrap;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items:stretch;
}

.project-card {  
  border: 6px solid #3a6fd8;
  border-radius: 8px;
  text-align: center;

  /* override glass */
  background: #fff;        /* solid dark */
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  flex: 1 1 260px;
  max-width: 320px;
  font-size: 1rem;
}

.project-card h3 {
  margin-bottom: 10px;
}

.project-description {
  font-size: 0.7rem;
  margin-bottom: 16px;
  color: #165fd5;
  opacity: 1;     
}

.project-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.btn {
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}


.project-status {
  background: linear-gradient(90deg,#ffd36a,#f0e68c);
  color: #333;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-bottom: 6px;

}