/* =======================================================
   🚆 TEKSTBLOKKEN – NS
   Herstelde versie (gebaseerd op oude live styling)
   Geschikt voor NIEUWE structuur (meervoud)
======================================================= */

.tekstblokken.ns {
  background-color: #00264d;
  color: #f2f2f2;

  border-radius: 12px;
  position: relative;

  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* Gele bovenbalk */
.tekstblokken.ns::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;

  background-color: #ffcc00;

  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

/* Titel */
.tekstblokken.ns h5 {
  color: #ffcc00;
  font-weight: 600;
}

/* Lijst */
.tekstblokken.ns li strong {
  color: #ffffff;
  font-weight: 600;
}

/* Hover (oude glow behouden) */
.tekstblokken.ns:hover {
  box-shadow: 0 0 10px rgba(255, 204, 0, 0.4);
}

/* tijdelijke compatibiliteit */
.tekstblok-ns {
  background-color: #00264d;
  color: #f2f2f2;
  border-radius: 12px;
  padding: 16px 20px;
  margin: 20px auto;
  max-width: 760px;
  position: relative;
}

.tekstblok-ns::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #ffcc00;
}