/* Help boxes: scope isolé, n'impacte pas le reste */
.ppp-help-wide{
  width: 100%;
  margin: 0 0 14px;
  padding: 0;
  overflow: hidden;
}

details.ppp-help-wide{
  padding: 0;
  overflow: hidden;
}

details.ppp-help-wide summary{
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
details.ppp-help-wide summary::-webkit-details-marker{ display:none; }

.ppp-help-title{
  margin: 0;
  font-size: 15px;
  font-weight: 950;
  letter-spacing: .2px;
  color: #ff8a00;
}

.ppp-help-teaser{
  margin: 4px 0 0;
  opacity: .88;
  font-size: 13px;
  line-height: 1.45;
  max-width: 860px;
}

.ppp-help-cta{
  font-size: 12.5px;
  opacity: .85;
  white-space: nowrap;
  border-bottom: 1px dotted rgba(255,255,255,.28);
  padding-bottom: 2px;
}

.ppp-help-body{
  padding: 0 18px 16px 18px;
  font-size: 13px;
  line-height: 1.55;
  opacity: .92;
  max-width: 980px;
}
.ppp-help-body p{ margin: 10px 0 0; }

.ppp-help-body .ppp-help-block-title{
  margin: 12px 0 6px;
  font-size: 13px;
  font-weight: 900;
  opacity: .96;
  letter-spacing: .2px;
}

.ppp-help-body ul{
  margin: 8px 0 0 18px;
  padding: 0;
}
.ppp-help-body li{ margin: 6px 0; }

details[open] .ppp-help-cta{
  border-bottom-color: transparent;
  opacity: .65;
}

.ppp-help-anchor{
  scroll-margin-top: 110px;
}

@media (max-width: 767px){
  details.ppp-help-wide summary{
    padding: 14px 14px;
  }
  .ppp-help-body{
    padding: 0 14px 14px 14px;
  }
  .ppp-help-cta{
    display:none;
  }
}

/* HOTFIX: empêche toute règle globale de masquer la box */
details.ppp-help-wide{
  display: block !important;
  visibility: visible !important;
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
  opacity: 1 !important;
}

details.ppp-help-wide summary{
  display:flex !important;
  visibility: visible !important;
}

details.ppp-help-wide .ppp-help-body{
  display:block !important;
}

