.projects-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.project {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.project-image {
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
}

.project-image a {
  display: block;
  text-decoration: none;
}

.project-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.2s ease;
}

.project-image:hover img {
  transform: scale(1.02);
}

.project-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.project-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.project-title-text {
  color: var(--primary-text);
}

.project-icons {
  display: flex;
  align-items: center;
  gap: 8px;
  transform: translateY(-2px);
}

.project-icon-link {
  color: var(--light-text);
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
}

.project-icon-link:hover {
  color: var(--secondary-text);
}

.project-icon-link svg {
  width: 18px;
  height: 18px;
}

.project-description {
  color: var(--secondary-text);
  font-size: 14px;
  margin-bottom: 0;
  line-height: 1.5;
}

.project-tech {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tech-tag {
  background: var(--tag-background);
  color: var(--secondary-text);
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
}