
/* --- ALGEMEEN --- */
.wysiwyg {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #222;
}

.wysiwyg p {
  margin-bottom: 1.2rem;
}

/* --- KOPPEN --- */
.wysiwyg h1,
.wysiwyg h2,
.wysiwyg h3 {
  font-weight: 700;
  line-height: 1.3;
  margin: 2rem 0 1rem;
}

.wysiwyg h1 { font-size: 2rem; border-bottom: 3px solid #16243d; padding-bottom: .3rem; }
.wysiwyg h2 { font-size: 1.6rem; color: #16243d; margin-top: 2.5rem; }
.wysiwyg h3 { font-size: 1.3rem; color: #444; margin-top: 2rem; }

/* --- TABELLEN --- */
.wysiwyg table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 1.5rem 0;
  font-size: 0.95rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  border-radius: 6px;
  overflow: hidden;
}

.wysiwyg th {
  background: #16243d;
  color: #fff;
  text-align: left;
  padding: .75rem 1rem;
  font-weight: 600;
}

.wysiwyg td {
  border-top: 1px solid #eee;
  padding: .75rem 1rem;
}

.wysiwyg tr:nth-child(even) td {
  background: #f9f9f9;
}

/* --- LIJSTEN --- */
.wysiwyg ul {
  margin: 0 0 1.5rem 1.3rem;
  padding: 0;
}
.wysiwyg ul li {
  margin-bottom: .5rem;
}
.wysiwyg ul li::marker {
  color: #16243d;
  font-weight: bold;
}

/* --- CITATEN / TOELICHTING --- */
.wysiwyg blockquote,
.wysiwyg .note {
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  background: #f1f5f9;
  border-left: 5px solid #16243d;
  font-style: italic;
  color: #444;
  border-radius: 4px;
}

/* --- BADGES --- */
.wysiwyg .badge {
  display: inline-block;
  padding: .3em .6em;
  font-size: .75rem;
  font-weight: 600;
  border-radius: 4px;
  background: #16243d;
  color: #fff;
}

/* --- CTA BLOK --- */
.wysiwyg .cta-box {
  margin: 2.5rem 0;
  padding: 1.5rem;
  background: #f9f9f9;
  border: 2px solid #16243d;
  border-radius: 6px;
}

.wysiwyg .cta-box h3 {
  margin-top: 0;
}

.wysiwyg .cta-box a {
  display: inline-block;
  margin-top: .5rem;
  padding: .5rem 1rem;
  background: #16243d;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  transition: background .2s;
}

.wysiwyg .cta-box a:hover {
  background: #f97316;
}


.wysiwyg table thead th {
  position: sticky;
  top: 0;
  background: #16243d;
  color: #fff;
  z-index: 2;
}