/* Scope: nur im FAQ-Tab + nur innerhalb des FAQPage-Blocks */
#tab-FAQ [itemscope][itemtype="https://schema.org/FAQPage"] { 
  max-width: 70%;
  margin: 20px auto;
  padding: 20px;
}

/* Jede Frage (mainEntity) als Card */
#tab-FAQ [itemscope][itemtype="https://schema.org/FAQPage"] [itemprop="mainEntity"]{
  border: 1px solid #ddd;
  margin-bottom: 12px;
  padding: 12px 16px;
  border-radius: 6px;
  background-color: #f9f9f9;
  box-shadow: 0 2px 5px rgba(0,0,0,.08);
}

/* Frage-Überschrift */
#tab-FAQ [itemscope][itemtype="https://schema.org/FAQPage"] h2[itemprop="name"]{
  font-weight: 700;
  margin: 0 0 .5rem 0;
  font-size: 1.05rem;
}

/* Akzeptierte Antwort-Container */
#tab-FAQ [itemscope][itemtype="https://schema.org/FAQPage"] [itemprop="acceptedAnswer"]{
  margin-top: 6px;
}

/* Antwort-Text als Inhalt-Box (nur bei DIV, damit H3 nicht „eingekastelt“ wird) */
#tab-FAQ [itemscope][itemtype="https://schema.org/FAQPage"] div[itemprop="text"]{
  padding: 10px;
  border-left: 3px solid #de4815;
  border-radius: 5px;
  background: #fff;                 /* bewusst weiß, damit nix „grau zieht“ */
  box-shadow: inset 0 2px 5px rgba(0,0,0,.04);
}

/* Abschnittsüberschriften, die mit itemprop="text" als H3 kommen */
#tab-FAQ [itemscope][itemtype="https://schema.org/FAQPage"] h3[itemprop="text"]{
  margin: .75rem 0 .25rem;
  font-size: 1rem;
  font-weight: 700;
  color: #333;
}

/* Tabellen innerhalb einer Antwort */
#tab-FAQ [itemscope][itemtype="https://schema.org/FAQPage"] div[itemprop="text"] table{
  width: 100%;
  border-collapse: collapse;
  margin: .5rem 0;
  font-size: .95rem;
}
#tab-FAQ [itemscope][itemtype="https://schema.org/FAQPage"] div[itemprop="text"] td{
  border: 1px solid #ddd;
  padding: .5rem .6rem;
}

/* Bilder innerhalb der Antwort */
#tab-FAQ [itemscope][itemtype="https://schema.org/FAQPage"] div[itemprop="text"] img{
  max-width: 48%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,.06);
  margin: .4rem .6rem .6rem 0;
}

/* Responsiv */
@media (max-width: 768px){
  #tab-FAQ [itemscope][itemtype="https://schema.org/FAQPage"]{
    max-width: 100%;
    padding: 16px;
  }
  #tab-FAQ [itemscope][itemtype="https://schema.org/FAQPage"] img{
    max-width: 100%;
    margin: .5rem 0;
  }
  #tab-FAQ [itemscope][itemtype="https://schema.org/FAQPage"] h2[itemprop="name"]{
    font-size: 1rem;
  }
}
