
/* ✅ Fonts */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;600&family=Poppins:wght@600;700&display=swap');

/* ✅ Achtergrond */
body {
  background-color: #f8f3ef;
}

/* ✅ Typography voor artikelen */
#fullArticle > p,
#fullArticle > ul,
#fullArticle > ol,
#fullArticle > blockquote {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  color: #000321;
  line-height: 1.2;
}

/* ✅ Lists */
#fullArticle ul,
#fullArticle ol {
  padding-left: 1.5em;
  margin-bottom: 1em;
}

#fullArticle li {
  margin-bottom: 0.5em;
  font-size: 16px;
  font-family: 'Manrope', sans-serif;
  color: #000321;
}

/* ✅ Quotes */
#fullArticle blockquote {
  border-left: 4px solid #4a787d;
  background-color: #f0f7f7;
  padding: 1em 1.2em;
  margin: 1.5em 0;
  border-radius: 6px;
  font-style: italic;
}

/* ✅ Headers */
h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  color: #000321;
  font-weight: 600;
}

/* ✅ Alleen h1 op de voorpagina (#docsSearch) kleiner maken */
#docsSearch h1 {
  font-size: 2rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #000321;
  margin-bottom: 1rem;
}

/* ✅ Collection titels op de homepage */
.collection-category h2 a {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #000321;
  text-decoration: none;
}

.collection-category h2 a:hover {
  color: #704c13;
  text-decoration: underline;
}

/* ✅ Links */
a {
  color: #4a787d;
  text-decoration: underline;
}

a:hover {
  color: #704c13;
}

/* ✅ Callout boxes in jouw stijl */
.callout, .callout-yellow, .callout-blue, .callout-gray, .callout-red, .callout-green {
  padding: 1em 1.2em;
  margin: 1.5em 0;
  border-radius: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 1.2;
  color: #000321;
}

/* Yellow */
.callout-yellow {
  border-left: 5px solid #704c13;
  background-color: #ede0d0;
}

/* Blue */
.callout-blue {
  border-left: 5px solid #4a787d;
  background-color: #f0f7f7;
}

/* Gray */
.callout-gray {
  border-left: 5px solid #cccccc;
  background-color: #f7f7f7;
}

/* Red */
.callout-red {
  border-left: 5px solid #8b2d2d;
  background-color: #faeaea;
}

/* Green */
.callout-green {
  border-left: 5px solid #4a787d;
  background-color: #f1fdf1;
}

/* ✅ Headings in callouts */
.callout h1, .callout h2, .callout h3, .callout h4,
.callout-yellow h1, .callout-yellow h2, .callout-yellow h3, .callout-yellow h4,
.callout-blue h1, .callout-blue h2, .callout-blue h3, .callout-blue h4,
.callout-gray h1, .callout-gray h2, .callout-gray h3, .callout-gray h4,
.callout-red h1, .callout-red h2, .callout-red h3, .callout-red h4,
.callout-green h1, .callout-green h2, .callout-green h3, .callout-green h4 {
  font-family: 'Poppins', sans-serif;
  color: #000321;
}

/* ✅ Article layout tweaks */
.article-header {
  border-bottom: 2px solid #eee;
  padding-bottom: 1em;
  margin-bottom: 2em;
}
