.voltech-projects-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(500px,1fr));
  gap:24px;
  align-items:stretch;
}

.voltech-project-card{
  display:flex;
  flex-direction:column;
  height:auto;
  overflow:hidden;
  background:#fff;
  border:1px solid #dbe4ee;
  border-radius:14px;
  cursor:pointer;
  transition:all .25s ease;
  color:#0e538b;
  font-family:'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
}

.voltech-project-card:hover{
  background:#fbfdff;
  transform:scale(1.01);
  box-shadow:0 8px 22px rgba(0,0,0,.08);
}

.voltech-project-card__inner{
  display:flex;
  flex-direction:column;
  flex:1 1 auto;
  min-height:0;
  padding:20px;
}

.voltech-project-card__head{
  flex:0 0 auto;
  min-height:80px; /* уменьшили высоту */
}

.voltech-project-card__meta-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  margin-bottom:14px;
}

.voltech-project-chip{
  display:inline-flex;
  align-items:center;
  padding:6px 12px;
  border-radius:999px;
  background:#e9eff5;
  color:#0e538b;
  font-size:14px;
  line-height:1;
  max-width:70%;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.voltech-project-year{
  display:inline-flex;
  align-items:center;
  gap:6px;
  white-space:nowrap;
  color:#0e538b;
  font-size:15px;
}

.voltech-project-title{
  margin:0;
  color:#0e538b;
  font-size:32px;
  line-height:1.08;
  font-weight:600;
  font-family:'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
  overflow:hidden;
  min-height:calc(1.08em * 2);
}

.voltech-project-description{
  margin:0 0 10px; /* меньше расстояние до кнопки */
  color:#1f4f7d;
  font-size:16px;
  line-height:1.45;

  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:4;
  overflow:hidden;
}

.voltech-project-link{
  margin-top:auto;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  width:100%;
  min-height:42px;
  box-sizing:border-box;
  border:1px solid #d9e2ec;
  border-radius:10px;
  background:#fff;
  color:#0e538b;
  text-decoration:none !important;
  font-weight:600;
}

.voltech-project-link:hover{
    background-color: #f1f5f9;
    color: #0e538b;
   }

@media (max-width:768px){
  .voltech-projects-grid{grid-template-columns:1fr;}
  .voltech-project-card__head{min-height:100px;}
  .voltech-project-title{font-size:28px;}
}