/* ----------------------------------------------------
   FIGURE + CAPTION
---------------------------------------------------- */
figure {
  text-align: center;
  margin: 1em auto;
}

figure img {
  max-width: 592px;
  height: auto;
  margin: 0 auto;
  border-radius: 5px;
}

figcaption {
  color: #555;
  margin-top: 8px;
  font-style: italic;
  font-size: 0.9em;
  line-height: 1.4;
}

/* Algemene hulpelementen */
.left, .right, .cent {
  margin: 9px 0;
  border: 0px solid #c0c0c0;
  box-shadow: 4px 4px 16px 0 rgba(0, 0, 0.8);
  border-radius: 5px;
}

.cent {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
}

/* Superscript */
sup {
  line-height: 80%;
}


.section-line {
    width: 96%;
    margin: 2px auto;
    border: none;
    border-top: 1px solid #000;
}

/* Dit vervangt je inline stijl */
.footer-credit {
	display: block;
    width: 100%;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 10px;
    letter-spacing: 1px;
    text-align: center;
    margin: 6px 0;   /* eventueel aanpassen */
}




.title-wrapper {
    display: flex;
    justify-content: center;
    padding: 0; /* voorkom afbreken */
    margin: 0 auto;
    width: 100%;
}

.title-wrapper h2 {
    margin: 0;
}


.citaat {
	border: 1px solid black; 
	border-radius: 5px; 
	margin: 10px; 
	padding: 10px; 
	background-color: #f0f0f0; 
	text-align: left;
}

/* ============================================
   ANTI-COPY / ANTI-SAVE (CSS DEEL)
============================================ */

/* Geen tekstselectie op de site, behalve in invoervelden */
*:not(input):not(textarea):not([contenteditable]) {
    user-select: none;
    -webkit-user-select: none; /* Safari / iPhone */
    -ms-user-select: none;
}

/* Voorkomt long-press menu op iPhone/iPad */
body {
    -webkit-touch-callout: none;
}

/* Afbeeldingen niet kunnen slepen of opslaan */
img {
    -webkit-user-drag: none;
    user-drag: none;
    pointer-events: none; /* voorkomt save/drag popup op mobiel */
}


