.projects-section {
  background-color: #f9f7f1;
  padding: 4rem 1rem;
  font-family: "Lato", sans-serif;
  color: #111;
}

.projects-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
  margin: 0 auto;
}

.projects-intro {
  max-width: 480px;
  margin-bottom: 4rem;
}

.projects-intro h2 {
  font-family: "Alice", serif;
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 1rem;
}

.projects-intro p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.projects-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 65rem;
}

.project-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 2rem;
}

.project-item img {
  width: 420px;
  max-width: 100%;
  height: auto;
  border: 1px solid #ddd;
}

.project-info {
  flex: 1;
}

.project-info h3 {
  font-family: "Alice", serif;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.project-info p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

hr {
  border: none;
  border-top: 1px solid #ccc;
}

@media screen and (max-width: 768px) {
  .projects-container {
    padding: 0 1rem;
  }

  .project-item {
    flex-direction: column;
  }

  .projects-intro {
    max-width: 100%;
    text-align: left;
  }
}
