/**
 * Groef Theme - Main Stylesheet
 * 
 * Table of Contents:
 * 1. Base
 * 2. Utilities
 * 3. Layouts
 * 4. Components
 */
/**
 * Design Tokens / SCSS Variables
 * Gebaseerd op Groef branding
 */
/**
 * Groef Theme - Main Stylesheet
 * 
 * Table of Contents:
 * 1. Base
 * 2. Utilities
 * 3. Layouts
 * 4. Components
 */
/**
 * Modern CSS Reset
 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

html {
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.6;
  font-family: "DIN 2014", "Arial", "Helvetica", sans-serif;
  color: #333333;
  background-color: #ffffff;
}

ul[role=list],
ol[role=list] {
  list-style: none;
  padding: 0;
  margin: 0;
}

img,
picture,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
*:focus-visible {
  outline: 2px solid #78582b;
  outline-offset: 2px;
}

*:focus:not(:focus-visible) {
  outline: none;
}

/**
 * Groef Theme - Main Stylesheet
 * 
 * Table of Contents:
 * 1. Base
 * 2. Utilities
 * 3. Layouts
 * 4. Components
 */
/**
 * Typography
 */
@font-face {
  font-family: "Inria Serif";
  src: url("../fonts/Inria Serif/InriaSerif-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inria Serif";
  src: url("../fonts/Inria Serif/InriaSerif-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inria Serif";
  src: url("../fonts/Inria Serif/InriaSerif-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Inria Serif";
  src: url("../fonts/Inria Serif/InriaSerif-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "DIN 2014";
  src: url("../fonts/din-2014-font-family/DIN-2014_Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DIN 2014";
  src: url("../fonts/din-2014-font-family/DIN-2014_Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inria Serif", serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 16px;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

s h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 16px;
  font-size: 0.85rem;
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: #78582b;
  text-decoration: underline;
  transition: color 0.3s;
}
a:hover, a:focus {
  color: #5a4221;
}

ul,
ol {
  margin-bottom: 16px;
  padding-left: 32px;
}

blockquote {
  border-left: 4px solid #78582b;
  padding-left: 16px;
  margin: 32px 0;
  font-style: italic;
  color: rgb(114.75, 114.75, 114.75);
}

code,
pre {
  font-family: "Courier New", monospace;
  background-color: #f5f5f5;
  padding: 2px 6px;
  border-radius: 4px;
}

pre {
  padding: 16px;
  overflow-x: auto;
}

strong,
b {
  font-weight: 700;
}

em,
i {
  font-style: italic;
}

small {
  font-size: 0.85rem;
}

.lead {
  font-size: 1.4rem;
  color: rgb(114.75, 114.75, 114.75);
  line-height: 1.7;
}

/**
 * Groef Theme - Main Stylesheet
 * 
 * Table of Contents:
 * 1. Base
 * 2. Utilities
 * 3. Layouts
 * 4. Components
 */
/**
 * Base styles
 */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  padding: 8px 16px;
  background: #78582b;
  color: #ffffff;
  text-decoration: none;
  z-index: 700;
}
.skip-link:focus {
  top: 0;
}

.view-services {
  display: flex;
  gap: 3rem;
  margin: 5rem auto;
  flex-direction: column;
  justify-content: center;
  width: 90%;
}
.view-services .views-view-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
}
.view-services .view-col {
  display: flex;
  justify-content: center;
}
.view-services .contextual-region {
  width: 90%;
  margin: 0 auto;
}

/**
 * Groef Theme - Main Stylesheet
 * 
 * Table of Contents:
 * 1. Base
 * 2. Utilities
 * 3. Layouts
 * 4. Components
 */
/**
 * SCSS Mixins
 */
/**
 * Groef Theme - Main Stylesheet
 * 
 * Table of Contents:
 * 1. Base
 * 2. Utilities
 * 3. Layouts
 * 4. Components
 */
/**
 * Grid System
 */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.container--narrow {
  max-width: 800px;
}

.container--wide {
  max-width: 1400px;
}

.grid {
  display: grid;
  gap: 32px;
}

.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 767px) {
  .grid--2 {
    grid-template-columns: 1fr;
  }
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (min-width: 768px) {
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .grid--3 {
    grid-template-columns: 1fr;
  }
}

.section {
  padding-top: 64px;
  padding-bottom: 64px;
}
@media (max-width: 767px) {
  .section {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}

/**
 * Groef Theme - Main Stylesheet
 * 
 * Table of Contents:
 * 1. Base
 * 2. Utilities
 * 3. Layouts
 * 4. Components
 */
.site-header {
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 200;
  transition: transform 0.3s;
}
.site-header.is-hidden {
  transform: translateY(-100%);
}
.site-header.is-scrolled {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/**
 * Groef Theme - Main Stylesheet
 * 
 * Table of Contents:
 * 1. Base
 * 2. Utilities
 * 3. Layouts
 * 4. Components
 */
.footer {
  background: #333333;
  color: #ffffff;
  padding: 64px 0;
  margin-top: 64px;
}
.footer a {
  color: #ffffff;
}
.footer a:hover {
  color: #c5aa7a;
}

/**
 * Groef Theme - Main Stylesheet
 * 
 * Table of Contents:
 * 1. Base
 * 2. Utilities
 * 3. Layouts
 * 4. Components
 */
.section--grey {
  background: #f5f5f5;
}

.section--primary {
  background: #78582b;
  color: #ffffff;
}

#block-groef-theme-views-block-getuigenissen-block-1 {
  padding: 5rem 0;
}

.testimonial-card__title {
  text-align: center;
  font-size: 3rem;
}

.testimonial-card__line {
  width: 80px;
  border: solid 2px brown;
}

/**
 * Groef Theme - Main Stylesheet
 * 
 * Table of Contents:
 * 1. Base
 * 2. Utilities
 * 3. Layouts
 * 4. Components
 */
.button {
  display: inline-block;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  font-family: "DIN 2014", "Arial", "Helvetica", sans-serif;
}

.button--primary {
  background-color: #78582b;
  border-color: #78582b;
  color: #ffffff;
}
.button--primary:hover, .button--primary:focus {
  background-color: #5a4221;
  border-color: #5a4221;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

.button--secondary {
  background-color: transparent;
  border-color: #78582b;
  color: #78582b;
}
.button--secondary:hover, .button--secondary:focus {
  background-color: #78582b;
  border-color: #78582b;
  color: #78582b;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}
.button--secondary:hover, .button--secondary:focus {
  color: #ffffff;
}

.button--small {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.button--large {
  padding: 16px 32px;
  font-size: 1.4rem;
}

.button--full {
  display: block;
  width: 100%;
}

.button:disabled,
.button--disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/**
 * Groef Theme - Main Stylesheet
 * 
 * Table of Contents:
 * 1. Base
 * 2. Utilities
 * 3. Layouts
 * 4. Components
 */
.form-item {
  margin-bottom: 16px;
}

label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
}

input[type=text],
input[type=email],
input[type=tel],
textarea,
select {
  padding: 12px 16px;
  border: 1px solid #cccccc;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.3s;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #78582b;
}

/**
 * Groef Theme - Main Stylesheet
 * 
 * Table of Contents:
 * 1. Base
 * 2. Utilities
 * 3. Layouts
 * 4. Components
 */
/**
 * Groef Theme - Main Stylesheet
 * 
 * Table of Contents:
 * 1. Base
 * 2. Utilities
 * 3. Layouts
 * 4. Components
 */
.service-card__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.service-card__link span[aria-hidden=true] {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-left: 0.25em;
}
.service-card__link:hover span[aria-hidden=true], .service-card__link:focus span[aria-hidden=true] {
  transform: translateX(6px);
}

.service-card {
  background: #ffffff;
  justify-content: center;
  min-height: 340px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 2px solid #1a1a1a;
}
.service-card .service-card__image {
  width: 100%;
  height: 15rem;
  overflow: hidden;
}
.service-card .service-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.service-card .service-card__content {
  padding: 32px 8px 8px 8px;
  display: flex;
  min-height: 15rem;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 auto;
  padding: 1rem;
}
.service-card .service-card__content .service-card__title {
  font-size: 1.25rem;
  color: #1a1a1a;
  font-family: "DIN 2014", "Arial", "Helvetica", sans-serif;
  margin-bottom: 4px;
}
.service-card .service-card__content .service-card__description {
  color: #666666;
  font-size: 0.85rem;
  margin-bottom: 8px;
}
.service-card .service-card__content .service-card__link {
  color: #1a1a1a;
  font-size: 1.4rem;
  text-decoration: none;
  font-family: "DIN 2014", "Arial", "Helvetica", sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.3s;
}
.service-card .service-card__content .service-card__link:hover {
  color: #78582b;
}

.service-card__icon {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 64px;
  height: 64px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.service-card__icon img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
  object-fit: contain;
}

.service-card__content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card__category {
  margin-bottom: 8px;
}

.service-card__category-link,
.service-card__category-text {
  display: inline-block;
  padding: 4px 8px;
  background: #8f6c3f;
  color: #78582b;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.service-card__category-link:hover {
  background: #78582b;
  color: #ffffff;
}

.service-card__title {
  margin: 0 0 16px;
  font-size: 1.25rem;
  line-height: 1.3;
}

.service-card__title-link {
  color: #333333;
  text-decoration: none;
  transition: color 0.3s;
}
.service-card__title-link:hover {
  color: #78582b;
}

.service-card__description {
  color: rgb(114.75, 114.75, 114.75);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.service-card__footer {
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid #cccccc;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #78582b;
  font-weight: 500;
  text-decoration: none;
  transition: gap 0.3s;
}
.service-card__link:hover {
  gap: 8px;
}

.service-card__link-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}
.service-card__link:hover .service-card__link-icon {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .service-card__image {
    min-height: 15rem;
  }
  .service-card__content {
    padding: 16px;
  }
  .service-card__icon {
    width: 56px;
    height: 56px;
  }
  .service-card__icon img {
    width: 32px;
    height: 32px;
  }
}
.card {
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

/**
 * Groef Theme - Main Stylesheet
 * 
 * Table of Contents:
 * 1. Base
 * 2. Utilities
 * 3. Layouts
 * 4. Components
 */
.header {
  background: #1a1a1a;
  width: 100%;
  min-height: 87px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
}
.header .header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 160px;
  height: 87px;
}
.header .header__logo img {
  height: 61px;
  width: auto;
  display: block;
}
.header .header__nav {
  display: flex;
  align-items: center;
  height: 87px;
  margin-left: 56px;
}
.header .header__nav-list {
  display: flex;
  gap: 18px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.header .header__nav-item {
  position: relative;
}
.header .header__nav-link {
  display: block;
  padding: 7px 14px;
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.04em;
}
.header .header__nav-link:hover,
.header .header__nav-link.is-active {
  background: #fff;
  color: #000;
}
.header .header__nav-sublist {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-radius: 3px;
  min-width: 160px;
  z-index: 100;
}
.header .header__nav-item:hover > .header__nav-sublist {
  display: block;
}
.header .header__nav-sublist .header__nav-link {
  color: #000;
  background: none;
  padding: 8px 16px;
  border-radius: 0;
}
.header .header__nav-sublist .header__nav-link:hover {
  background: #f0f0f0;
}

.main-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 16px;
}
.main-navigation a {
  text-decoration: none;
  color: #333333;
  padding: 8px 16px;
  transition: color 0.3s;
}
.main-navigation a:hover {
  color: #78582b;
}
@media (max-width: 767px) {
  .main-navigation ul {
    flex-direction: column;
  }
}

.project-backlink-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 32px auto 0 auto;
  padding: 0 16px;
}

.project-backlink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #463621;
  font-family: "DIN 2014", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 24px;
  padding: 8px 20px 8px 16px;
  box-shadow: 0 2px 8px rgba(70, 54, 33, 0.08);
  transition: background 0.2s, color 0.2s;
}

.project-backlink:hover,
.project-backlink:focus {
  background: #ffd190;
  color: #463621;
  text-decoration: none;
}

.project-backlink__icon {
  font-size: 20px;
  line-height: 1;
  margin-right: 2px;
}

.home-page-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  justify-content: center;
  padding: 4rem 0;
  max-width: 1200px;
  margin: 0 auto;
}

.home-page-cards .Services-card-row {
  width: 100% !important;
}

@media (max-width: 900px) {
  .home-page-cards {
    grid-template-columns: repeat(2, 1fr);
    padding: 10rem 0rem;
  }
}
@media (max-width: 600px) {
  .home-page-cards {
    grid-template-columns: 1fr;
    padding: 10rem 0rem;
  }
}
.user-login-form {
  display: flex;
  margin: 0 auto;
  width: 100%;
  max-width: 30rem;
  flex-direction: column;
  height: 80vh;
  justify-content: center;
  padding: 2rem 1rem;
}
.user-login-form .button {
  border: solid black 1px;
}
.user-login-form .button:hover {
  background-color: black;
  color: white;
  transition: 0.2s;
}
.user-login-form input {
  width: 100%;
  max-width: 30rem;
  box-sizing: border-box;
}

@media (max-width: 600px) {
  .user-login-form {
    max-width: 100%;
    padding: 1rem 0.5rem;
  }
}
/**
 * Groef Theme - Main Stylesheet
 * 
 * Table of Contents:
 * 1. Base
 * 2. Utilities
 * 3. Layouts
 * 4. Components
 */
#views-exposed-form-projects-overview-page-1 {
  width: 95%;
  margin: 0 auto;
  padding-top: 2rem;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
}
#views-exposed-form-projects-overview-page-1 label {
  display: none;
}
#views-exposed-form-projects-overview-page-1 .js-form-item,
#views-exposed-form-projects-overview-page-1 .form-actions {
  margin: 0;
}
#views-exposed-form-projects-overview-page-1 .button, #views-exposed-form-projects-overview-page-1 input[type=submit] {
  border: 1px solid #1a1a1a;
  background: #ffffff;
  color: #1a1a1a;
  border-radius: 6px;
  padding: 0.7rem 2.2rem;
  font-family: "DIN 2014", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  transition: background 0.2s, color 0.2s;
}
#views-exposed-form-projects-overview-page-1 .button:hover, #views-exposed-form-projects-overview-page-1 input[type=submit]:hover {
  background: #1a1a1a;
  color: #ffffff;
}
#views-exposed-form-projects-overview-page-1 select,
#views-exposed-form-projects-overview-page-1 .form-select {
  font-family: inherit;
  font-size: 1.1rem;
  padding: 0.7rem 2.5rem 0.7rem 1rem;
  border: 1.5px solid #1a1a1a;
  border-radius: 8px;
  background: #ffffff;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  min-width: 220px;
  color: #463621;
  transition: border 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(70, 54, 33, 0.04);
  cursor: pointer;
}
#views-exposed-form-projects-overview-page-1 select:focus,
#views-exposed-form-projects-overview-page-1 .form-select:focus {
  outline: none;
  border-color: #ffd190;
  box-shadow: 0 0 0 2px rgba(255, 209, 144, 0.2666666667);
}
#views-exposed-form-projects-overview-page-1 select:hover,
#views-exposed-form-projects-overview-page-1 .form-select:hover {
  border-color: #ffd190;
}

/**
 * Groef Theme - Main Stylesheet
 * 
 * Table of Contents:
 * 1. Base
 * 2. Utilities
 * 3. Layouts
 * 4. Components
 */
/**
 * Informatieve Pagina Styling
 * Privacy Beleid, Disclaimer, Cookies, etc.
 */
.informatieve-pagina {
  background: #ffffff;
  padding: 4rem 0;
  color: red;
}
@media (max-width: 767px) {
  .informatieve-pagina {
    padding: 2rem 0;
  }
}

.informatieve-pagina__wrapper {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  max-width: 900px;
}

.informatieve-pagina__header {
  margin-bottom: 4rem;
  padding-bottom: 2rem;
  border-bottom: 3px solid #78582b;
}
@media (max-width: 767px) {
  .informatieve-pagina__header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
  }
}

.informatieve-pagina__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #78582b;
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

.informatieve-pagina__meta {
  font-size: 0.875rem;
  color: #666666;
}
.informatieve-pagina__meta time {
  white-space: nowrap;
}
.informatieve-pagina__meta a {
  color: #78582b;
  text-decoration: none;
  transition: color 0.3s;
}
.informatieve-pagina__meta a:hover {
  color: rgb(82.4539877301, 60.4662576687, 29.5460122699);
  text-decoration: underline;
}

.informatieve-pagina__content {
  font-size: 1rem;
  line-height: 1.6;
  color: #333333;
}
.informatieve-pagina__content [data-drupal-ajax-container],
.informatieve-pagina__content .field,
.informatieve-pagina__content .field__item {
  display: block;
}
.informatieve-pagina__content .field__label {
  display: none;
}
.informatieve-pagina__content p {
  margin-bottom: 1.5rem;
}
.informatieve-pagina__content p:last-child {
  margin-bottom: 0;
}
.informatieve-pagina__content h2,
.informatieve-pagina__content h3,
.informatieve-pagina__content h4,
.informatieve-pagina__content h5,
.informatieve-pagina__content h6 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #8b6f47;
  line-height: 1.2;
}
.informatieve-pagina__content h2:first-child,
.informatieve-pagina__content h3:first-child,
.informatieve-pagina__content h4:first-child,
.informatieve-pagina__content h5:first-child,
.informatieve-pagina__content h6:first-child {
  margin-top: 0;
}
.informatieve-pagina__content h2 {
  font-size: 1.75rem;
  color: #8b6f47;
  border-bottom: 2px solid #8b6f47;
  padding-bottom: 0.5rem;
}
.informatieve-pagina__content h3 {
  font-size: 1.5rem;
  color: #8b6f47;
}
.informatieve-pagina__content h4 {
  font-size: 1.25rem;
  color: #8b6f47;
}
.informatieve-pagina__content ul,
.informatieve-pagina__content ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}
.informatieve-pagina__content ul li,
.informatieve-pagina__content ol li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}
.informatieve-pagina__content ul li {
  list-style-type: disc;
}
.informatieve-pagina__content ol li {
  list-style-type: decimal;
}
.informatieve-pagina__content ul ul,
.informatieve-pagina__content ol ol,
.informatieve-pagina__content ul ol,
.informatieve-pagina__content ol ul {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}
.informatieve-pagina__content a {
  color: #78582b;
  text-decoration: underline;
  transition: color 0.3s;
}
.informatieve-pagina__content a:hover {
  color: rgb(82.4539877301, 60.4662576687, 29.5460122699);
}
.informatieve-pagina__content strong,
.informatieve-pagina__content b {
  font-weight: 700;
  color: rgb(38.25, 38.25, 38.25);
}
.informatieve-pagina__content em,
.informatieve-pagina__content i {
  font-style: italic;
}
.informatieve-pagina__content code {
  background: #f5f5f5;
  padding: 0.25rem 0.5rem;
  border-radius: 3px;
  font-family: monospace;
  font-size: 0.9em;
}
.informatieve-pagina__content blockquote {
  margin: 2rem 0;
  padding: 1.5rem 1.5rem 1.5rem 0.5rem;
  border-left: 4px solid #78582b;
  background: #f5f5f5;
  font-style: italic;
  color: #666666;
}
.informatieve-pagina__content blockquote p {
  margin-bottom: 0;
}
.informatieve-pagina__content hr {
  margin: 3rem 0;
  border: none;
  border-top: 2px solid #cccccc;
}
.informatieve-pagina__content table {
  width: 100%;
  margin: 2rem 0;
  border-collapse: collapse;
  border: 1px solid #cccccc;
}
.informatieve-pagina__content table th,
.informatieve-pagina__content table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #cccccc;
}
.informatieve-pagina__content table th {
  background: #f5f5f5;
  font-weight: 700;
  color: #78582b;
}
.informatieve-pagina__content table tr:hover {
  background: #f5f5f5;
}

.informatieve-pagina__contextual {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #cccccc;
}
.informatieve-pagina__contextual button.trigger {
  padding: 0.5rem 1rem;
  background: #f5f5f5;
  border: 1px solid #cccccc;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.875rem;
  color: #333333;
  transition: all 0.3s;
}
.informatieve-pagina__contextual button.trigger:hover {
  background: rgb(232.25, 232.25, 232.25);
  border-color: #78582b;
  color: #78582b;
}
.informatieve-pagina__contextual .contextual-links {
  margin-top: 1rem;
  padding-left: 1.5rem;
}
.informatieve-pagina__contextual .contextual-links li {
  margin-bottom: 0.5rem;
}
.informatieve-pagina__contextual .contextual-links li a {
  color: #78582b;
  text-decoration: none;
  transition: color 0.3s;
}
.informatieve-pagina__contextual .contextual-links li a:hover {
  text-decoration: underline;
}

strong,
b {
  font-weight: 700;
  color: rgb(38.25, 38.25, 38.25);
}

em,
i {
  font-style: italic;
}
/*# sourceMappingURL=style.css.map */
