body {
  background-color: #F2F6FF;
}

.main-container {
  background-color: #fff;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.project-card {
  position: relative;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, scale 0.3s ease;
  display: flex;
  align-items: center;
  max-width: 900px; /* 🔹 card iets smaller maken */
  margin: 0 auto; /* center in container */
}

.project-card:hover {
  scale: 1.01;
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 123, 255, 0.3)
}


.project-thumb {
  flex: 0 0 350px; /* 🔹 breder gemaakt */
  height: 250px;   /* 🔹 minder hoog */
  overflow: hidden;
}

.project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.project-body {
  flex: 1;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* duwt boven en onder uit elkaar */
  padding: 1rem 1.5rem;
}

.project-title {
  font-weight: 600;
  color: #00224F;
  margin-bottom: 0.5rem;
}

.project-excerpt {
  color: #444;
  font-size: 0.95rem;
  margin-bottom: 0; /* voorkomt extra ruimte */
}

.project-date {
  font-size: 0.85rem;
  color: #777;
  margin-top: 1rem; /* beetje lucht boven de datum */
}

.project-card .stretched-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
