.projects-list {
  padding: 3em 0;
}

.projects-list h1 {
  text-align: center;
  margin-bottom: 2em;
  font-size: 2.2rem;
}

.project-item {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 1.5em;
  margin-bottom: 3em;
  align-items: start;
}

.project-item img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 16px var(--shadow-light);
}

.project-meta h2 {
  margin-top: 0;
  font-size: 1.6rem;
  color: var(--accent-color);
}

.project-meta p {
  margin: 0.5em 0;
  line-height: 1.6;
  color: var(--text-secondary);
}

.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  margin: 1em 0;
}

.tech-tag {
  background: var(--accent-color);
  color: #fff;
  padding: 0.3em 0.8em;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.project-meta ul {
  margin: 1em 0;
  padding-left: 1.2em;
}

.project-meta ul li {
  list-style: disc;
  margin-bottom: 0.5em;
  color: var(--text-secondary);
}

.project-meta strong {
  color: var(--accent-color);
  font-weight: 600;
}

.project-links a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
}

.project-links a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .project-item {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .project-meta {
    margin-top: 1em;
  }
}
