/* #### Post Items #### */

.post-item.layout-faq {
  --indicator-width: 4.3rem;

  margin-bottom: var(--df-margin-unit);
}

.post-item.layout-faq .sub-holder {
  position: relative;
  padding: var(--df-padding-unit) var(--df-padding-unit);
  padding-left: calc(var(--indicator-width) + var(--df-padding-unit) + 2rem);
  background: rgb(var(--box-bg-color, 255, 255, 255));
  border-radius: var(--df-border-radius);
  box-shadow: var(--box-box-shadow);
  border: var(--box-border);
}

.post-item.layout-faq:is(:hover, :focus, :active) .sub-holder {
  border-color: var(--dark-bg-color);
}

.post-item.layout-faq .sub-holder::before,
.faqsys-html-list.faqs-list li::before {
  position: absolute;
  left: var(--df-padding-unit);
  content: "Q";
  display: block;
  width: var(--indicator-width);
  height: var(--indicator-width);
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  background: var(--dark-bg-color);
  color: #fff;
  border-radius: 50%;
  margin-top: 0.2rem;
  padding: 1rem;
  transform: scale(0.9);
}

.post-item.layout-faq .item-title {
  margin-bottom: 0;
}

.post-item.layout-faq .excerpt-holder {
  display: none;
}

@media (width <= 992px) {
  .post-item.layout-faq {
    --indicator-width: 2.5rem;
    --df-padding-unit: 2rem;
  }

  .post-item.layout-faq .sub-holder::before {
    font-size: 1.5rem;
    padding: 0.4rem 0 0;
  }

  .post-item.layout-faq .sub-holder::before,
  .post-item.layout-faq .sub-holder::after {
    scale: 1.3;
  }
}
