/* grote afbeelding bovenaan de pagina */ 
 /* Define the custom CSS class for the image */
    .afbeelding-uitgelicht {
        border: 5px solid var(--wp--preset--color--palette-color-1);
        aspect-ratio: 16/9;
        object-fit: cover;
        width: 100%;
        height: auto;
    }

    /* Ensure the palette color is defined if used in a WordPress theme */
    :root {
        --wp--preset--color--palette-color-1: #2872fa; /* Fallback color, replace with actual theme palette color */
    }

    .wp-block-image {
        position: relative;
        max-width: 100%;
    }

    .aligncenter {
        text-align: center;
    }


/* horizontale lijn als scheiding tussen tekstfragmenten */
.fragment {
  display: flex;
  align-items: center;
  justify-content: flex-end;   /* tekst naar rechts */
  position: relative;
  color: #1e90ff;    
	font-size: 12px;    /* tekst lichtblauw (optioneel) */
}

.fragment::before {
  content: "";
  flex: 1;                     /* lijn neemt alle ruimte links */
  border-top: 1px solid #1e90ff; /* lichtblauwe lijn */
  margin-right: 10px;          /* ruimte tussen lijn en tekst */
}


/* Page Tags */
.page-tags {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px; /* ruimte tussen badges */
}

.page-tags li {
    margin: 0;
}

.page-tags a {
    display: inline-block;
    padding: 4px 10px;
    background-color: #e0e0e0;
    color: #333;
    font-size: 14px;
    border-radius: 12px; /* maakt het afgerond */
    text-decoration: none;
    transition: background-color 0.2s;
}

.page-tags a:hover {
    background-color: #0073aa; /* WordPress-blauw bij hover */
    color: #fff;
}


/* entry-title */
.entry-title {
    display: block;
    min-height: 2.8em; /* Ongeveer de hoogte van twee regels tekst, afhankelijk van de font-size */
    line-height: 1.4em; /* Lijnhoogte voor twee regels */
    overflow: hidden; /* Verbergt extra tekst als die er is */
    margin: 0;
    padding: 0;
}

.entry-title a {
    display: block;
    text-decoration: none; /* Optioneel: verwijdert onderstreping van de link */
}




/* Verschuif de afbeelding naar boven */
.afbeelding-omhoog-1cm{
    transform: translateY(-1cm);
    margin: 0;
    padding: 0;
}

/* Verschuif de afbeelding naar boven */
.afbeelding-omhoog-2cm{
    transform: translateY(-2cm);
    margin: 0;
    padding: 0;
}

/* Verschuif de afbeelding naar boven */
.afbeelding-omhoog-4cm{
    transform: translateY(-4cm);
    margin: 0;
    padding: 0;
}
/* Verschuif de afbeelding naar boven */
.afbeelding-omhoog-10cm{
    transform: translateY(-10cm);
    margin: 0;
    padding: 0;
}