/* CTA */
.cta {
  text-align: center;
  padding: 4rem 2rem;
}

/* Team grid */
.team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
  gap: 4rem;
  margin: 4rem 0;
}

.team-member {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.team-photo img {
  width: 70%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 600px) {
  .team-member {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
/* =========================
   Uitgelichte projecten – layout
========================= */

.projecten-highlight {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;

  margin: 4rem auto;
}

/* =========================
   Uitgelichte projecten – layout
========================= */

.projecten-highlight {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;

  margin: 4rem auto;
}

/* =========================
   Uitgelichte projecten – layout
========================= */

.projecten-highlight {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin: 4rem auto;
}

/* =========================
   Project card – juiste look
========================= */

.project-card {
  background-color: #fff;
  width: 300px;

  box-shadow:
    0 2px 5px rgba(0, 0, 0, 0.16),
    0 2px 10px rgba(0, 0, 0, 0.12);
}

/* Klikbare kaart */
.project-card a {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* Binnenstructuur */
.project-content {
  padding: 1.5rem;
}

/* Afbeelding los in kaart */
.project-image {
  margin-bottom: 1.25rem;
}

.project-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Titel */
.project-card h4 {
  margin: 0;
  text-align: center;

}