/* ─── Project Cards ───
   Each card is a .project-card div containing:
     .project-media  — left column (35%): <img> or <video>
     .project-content — right column (65%): title, description, bullets, links

   To add a project, copy the template comment from index.html into the
   #projects section and fill in your content.
*/

.project-card {
  display: flex;
  flex-direction: row;
  gap: 28px;
  margin-bottom: 40px;
  align-items: flex-start;
}

.project-media {
  flex: 0 0 35%;
  max-width: 35%;
}

.project-media img,
.project-media video {
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
}

.project-content h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  margin-bottom: 8px;
  color: #000;
}

.project-content p {
  font-size: 0.93rem;
  color: #333;
  margin-bottom: 8px;
  line-height: 1.6;
}

.project-content ul {
  padding-left: 18px;
  font-size: 0.91rem;
  color: #444;
  margin-bottom: 10px;
}

.project-content ul li {
  margin-bottom: 4px;
}

.project-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.project-links a {
  font-size: 0.85rem;
  color: #1a6fb5;
}

@media (max-width: 810px) {
  .project-card {
    flex-direction: column;
  }
  .project-media {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
