/* ============================================================
   Doelgroep page — innofication.com/innovatiedoelgroep
============================================================ */

/* Fix Bootstrap .row negative-margin overflow (showwideheader=1, no container wrapper) */
.flex-row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.flex-row > [class*="col-"] {
  padding-left: 12px;
  padding-right: 12px;
}

/* ---- Custom row for doelgroep cards (no negative margins) ---- */
.doelgroep-row {
  display: flex;
  flex-wrap: wrap;
  margin-left: 0;
  margin-right: 0;
}
.doelgroep-row > [class*="col-"] {
  display: flex;
  flex-direction: column;
  padding-left: 12px;
  padding-right: 12px;
  margin-bottom: 24px;
}

/* ---- Card shell ---- */
.doelgroep-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #dde3ec;
  box-shadow: 0 4px 18px rgba(0,0,0,0.07);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.doelgroep-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 50px rgba(13,166,224,0.16);
}

/* ---- Image area ---- */
.doelgroep-img-wrap {
  overflow: hidden;
  height: 210px;
  flex-shrink: 0;
  background: #e8edf3;
}
.doelgroep-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  display: block;
}
.doelgroep-card:hover .doelgroep-img {
  transform: scale(1.06);
}

/* ---- Card body ---- */
.doelgroep-body {
  padding: 28px 24px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: #fff;
}

/* ---- Icon badge ---- */
.doelgroep-icon {
  width: 46px;
  height: 46px;
  background: rgba(13,166,224,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0da6e0;
  font-size: 20px;
  margin-bottom: 16px;
  transition: background 0.28s ease, color 0.28s ease, box-shadow 0.28s ease;
  flex-shrink: 0;
}
.doelgroep-card:hover .doelgroep-icon {
  background: linear-gradient(135deg, #0da6e0, #0b8ec0);
  color: #fff;
  box-shadow: 0 5px 16px rgba(13,166,224,0.32);
}

/* ---- Typography ---- */
.doelgroep-title {
  font-size: 18px;
  font-weight: 800;
  color: #12253a;
  margin: 0 0 12px;
  font-family: 'Lato', sans-serif;
  line-height: 1.35;
}
.doelgroep-text {
  font-size: 14px;
  color: #666;
  line-height: 1.78;
  margin: 0 0 10px;
}
.doelgroep-text:last-child { margin-bottom: 0; }
.doelgroep-accent {
  color: #0da6e0;
  font-weight: 700;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .doelgroep-img-wrap { height: 180px; }
  .doelgroep-body     { padding: 22px 20px 24px; }
  .doelgroep-row > [class*="col-"],
  .flex-row > [class*="col-"] {
    padding-left: 8px;
    padding-right: 8px;
  }
}
