/* Project logos styling */
.project-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  gap: 0.75rem;
}

.project-logo {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 0.1rem; /* Slight adjustment to align with text baseline */
  border-radius: 3px;
}

.project-content {
  flex: 1;
  line-height: 1.5;
}

/* Ensure the project list maintains clean styling */
.project-list {
  list-style: none;
  padding: 0;
}

.project-list .project-item {
  border: none;
  padding: 0;
}

/* Dark mode support for logos */
@media (prefers-color-scheme: dark) {
  .project-logo {
    opacity: 0.9;
  }
}

/* Light theme specific adjustments */
.theme-light .project-logo {
  opacity: 1;
}

/* Dark theme specific adjustments */
.theme-dark .project-logo {
  opacity: 0.9;
}

