.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.works-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.works-item a {
  display: block;
  padding: 20px;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.works-item img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.works-item h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #333;
}

.works-item .works-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #666;
}

.works-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}
