/* kennisbank_default.css - Styling Kennisbank gelijk aan FAQ style Socranext (nu plus/min: zwart/grijs, geen kleur) */

.socranext-kennisbank-blok {
  max-width: 1170px;
  margin: 0 auto;
  padding: 2rem 1rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.socranext-kennisbank-cat {
  margin-bottom: 2.5rem;  
}
.socranext-kennisbank-cat h2 {
  font-size: 2rem;
  margin-bottom: 0;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  padding-right: 1.2rem;
  position: relative;
}
.socranext-cat-toggle {
  display: inline-block;
  font-size: 1.5rem;
  width: 1.2em;
  height: 1.2em;
  margin-left: .7em;
  margin-right: .2em;
  color: #333;
  font-weight: 700;
  line-height: 1em;
  transition: color .2s;
}
.socranext-kennisbank-cat.open .socranext-cat-toggle {
  color: #000;
  /* geen rotatie/minnetje blijft recht */
}
.socranext-kennisbank-qa-list {
  list-style: none;
  padding: 0;
  margin: .8em 0 0 0;
}
.socranext-kennisbank-qa {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 1.5rem;
}
.socranext-kennisbank-qa:first-child {
  border-top: 1px solid #eee;
  padding-top: 30px;
  margin-top: 30px;
}
.socranext-q {
  font-size: 1.125rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  padding-right: 1.5rem;
  position: relative;
}
.socranext-q strong {
  font-weight: 600;
  flex: 1;
}
.socranext-qa-toggle {
  display: inline-block;
  font-size: 1.15rem;
  width: 1.3em;
  height: 1.3em;
  margin-left: .8em;
  color: #666;
  font-weight: 700;
  line-height: 1em;
  position: relative;
  top: 1px;
  transition: color 0.2s;
}
.socranext-kennisbank-qa.open .socranext-qa-toggle {
  color: #111;
}
.socranext-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 0.5rem;
  color: #222;
}
.socranext-kennisbank-qa.open .socranext-a {
  max-height: 500px;
}
@media (max-width: 600px) {
  .socranext-kennisbank-blok {
    padding: 1rem;
  }
  .socranext-kennisbank-cat h2 {
    font-size: 1.5rem;
  }
  .socranext-q {
    font-size: 1rem;
  }
}
