/* =========================================
   Content styling
   Alleen van toepassing op elementen binnen .blog-style
========================================= */


/* Headings algemeen */
.blog-style h2,
.blog-style h3 {
  margin: 32px 0 16px;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-style: normal;
  text-decoration: none;
  letter-spacing: normal;
  word-spacing: normal;
}

/* H2 desktop */
.blog-style h2 {
  font-size: 32px;
  line-height: 40px;
}

/* H3 desktop */
.blog-style h3 {
  font-size: 20px;
  line-height: 24px;
}

/* Links */
.blog-style a,
.blog-style a:hover,
.blog-style a:focus,
.blog-style a:visited {
  color: #EE721A;
}

/* Intro
   Alle paragrafen vóór de eerste h2 worden bold.
   Paragrafen na een h2 gaan terug naar font-weight normaal.
*/
.blog-style p {
  font-weight: 700;
}

.blog-style h2 ~ p {
  font-weight: normal;
}


/* Lists */
.blog-style ul {
  list-style: none;
  margin: 0 0 24px;
  padding-top: 20px;
  padding-left: 0;
}

.blog-style ul li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 30px;
}

.blog-style ul li::before {
  content: "";
  position: absolute;
  top: 0.25em;
  left: 0;
  width: 18px;
  height: 18px;

  background-color: #f28c28;

  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;

  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}


/* Tablet */
@media (max-width: 1024px) {
  .blog-style h2,
  .blog-style h3 {
    margin: 24px 0 12px;
  }

  .blog-style h2 {
    font-size: 24px;
    line-height: 28px;
  }

  .blog-style h3 {
    font-size: 16px;
    line-height: 20px;
  }

  .blog-style ul li {
    margin-bottom: 10px;
  }
}


/* Mobile */
@media (max-width: 767px) {
  .blog-style h2,
  .blog-style h3 {
    margin: 20px 0 10px;
  }

  .blog-style h2 {
    font-size: 18px;
    line-height: 24px;
  }

  .blog-style h3 {
    font-size: 16px;
    line-height: 20px;
  }

  .blog-style ul li {
    margin-bottom: 8px;
  }
}


/* Blog image */
/* Desktop */
img.uitgelichte-afbeelding {
  width: 100%;
  height: 400px !important;
  max-height: none !important;
  object-fit: cover;
  display: block;
  margin: 32px 0;
}


/* Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
  img.uitgelichte-afbeelding {
    height: 340px !important;
    min-height: 340px !important;
    max-height: 340px !important;
    object-fit: cover;
    margin: 28px 0;
  }
}


/* Mobiel */
@media (max-width: 767px) {
  img.uitgelichte-afbeelding {
    height: 160px !important;
    min-height: 160px !important;
    max-height: 160px !important;
    object-fit: cover;
    margin: 24px 0;
  }
}

/* FAQ styling */
.faq-vraag {
    font-family: var(--e-global-typography-5219108-font-family), Sans-serif;
    font-size: var(--e-global-typography-5219108-font-size);
    font-weight: var(--e-global-typography-5219108-font-weight);
    line-height: var(--e-global-typography-5219108-line-height);
    color: #FFFFFF;
	text-transform: uppercase !important;
}

.faq-antwoord {
    margin-bottom: 16px;
}

.faq-footer p {
    margin-top: 24px;
}