.project-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin: 0 auto;
  border: 5px solid rgba(var(--primary-color-rgb), 0.2);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background-color: var(--card-bg);
}
.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.voice-search-project .project-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.voice-search-project .project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.drum-kit-project .project-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.drum-kit-project .project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-img img {
  background-color: var(--card-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--box-shadow-sm);
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .project-card {
    width: 100%;
    margin-bottom: 30px;
  }
  .project-img {
    height: auto;
    max-height: 220px;
    overflow: hidden;
  }
  .project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .project-content {
    padding: 20px;
  }
  .project-links {
    flex-direction: row;
    justify-content: space-between;
  }
  .project-links .btn {
    padding: 8px 15px;
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 480px) {
  .project-links {
    flex-direction: column;
    gap: 10px;
  }
  .project-links .btn {
    width: 100%;
    text-align: center;
  }
}
.project-highlights li::marker {
  color: var(--text-color);
}
.project-highlights li:only-child {
  margin-bottom: 0;
}
