.projects-index {
  max-width: 860px;
}

.projects-index__intro {
  margin: 0 0 2rem 0;
}

.projects-index__intro p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #374151;
}

.projects-section {
  margin: 0 0 3rem 0;
}

.projects-section__header {
  margin: 0 0 1rem 0;
}

.projects-section__header h2 {
  margin: 0;
}

.projects-list {
  display: grid;
  gap: 1rem;
}

.project-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.project-card__logo {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(180deg, #f9fafb 0%, #f3f4f6 100%);
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.project-card__logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.project-card__body {
  min-width: 0;
}

.project-card__body h3 {
  margin: 0 0 0.35rem 0;
  line-height: 1.2;
}

.project-card__summary {
  margin: 0;
  line-height: 1.55;
  color: #111827;
}

.project-card__meta {
  margin: 0.45rem 0 0 0;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #6b7280;
}

@media (max-width: 640px) {
  .project-card {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 0.875rem;
    padding: 0.875rem;
    align-items: start;
  }

  .project-card__logo {
    width: 56px;
    height: 56px;
    border-radius: 12px;
  }

  .projects-section {
    margin-bottom: 2.25rem;
  }
}
