/* Dunne blauwe balk (banner) */
.app-banner {
  background: linear-gradient(180deg, #0B3A66 0%, #0A335A 100%);
  color: #fff;
  padding: 14px 0;           /* <-- dunner */
  font-weight: 600;
}

.app-banner .container {
  opacity: 0.95;
}

/* Nav: rechts uitlijnen op desktop, wrap op mobiel */
.app-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.app-navlinks {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Maak navlinks subtiel als pill buttons */
.app-navlinks a {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(11, 58, 102, 0.08);
  color: inherit;
}

.app-navlinks a:hover {
  text-decoration: none;
  background: rgba(11, 58, 102, 0.14);
}

/* Midden layout: cards niet over de hele breedte */
.app-home-main {
  padding-top: 26px;
}

.app-center-grid {
  max-width: 980px;
  margin: 0 auto;
}

/* 2 kolommen modules op desktop */
.app-grid-2 {
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .app-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Hele card klikbaar, zonder underlines */
.app-card-link {
  display: block;
  color: inherit;
}
.app-card-link:hover {
  text-decoration: none;
}

/* Card header layout */
.app-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 6px;
}

/* CTA onderin card */
.app-card-cta {
  margin-top: 14px;
}
