.wp-block-zone56plugin-faq {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 80%;
  margin-inline: 10%;
  margin-bottom: 4em;
}

@media (pointer: fine) {
  .faq-questions-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5em;
    justify-items: center;
    align-items: start;
  }

  @media (max-width: 800px) {
    .faq-questions-container {
      grid-template-columns: 1fr;
    }
  }
}

.faq-title {
  font-family: 'rama-gothic-c';
  font-weight: bold;
  font-size: min(10vw, 10em);
  text-transform: uppercase;
  width: 100%;
  margin-bottom: min(0.4em, 0.4vw);
  text-align: center;
}

.faq-item-wrapper {
  position: relative;
  width: 100%;
  border-radius: 16px;
  background-color: #262626;
  border: 2px solid #4b4b4b;
  color: white;
  font-family: 'Helvetica Now Display';
  font-weight: 400;
  font-size: 1.6em;
  margin-block: 0.24em;
  cursor: pointer;
  overflow: hidden;
}

.question-container {
  display: flex;
  justify-content: space-between;
  padding: 0.8em 1.2em;
}

.question-label {
  font-weight: bold;
}

.answer-container {
  overflow: hidden;
  box-sizing: border-box;
  border-top: 1px solid #3e3e3e;
  transition: height 200ms ease, padding-block 200ms ease;
  padding: 1.2em;
  height: var(--answer-height);
  box-sizing: border-box;
  background-color: white;
  color: black;
  text-align: justify;
}

.faq-item-wrapper[data-open="false"] .answer-container {
  height: 0px;
  padding-block: 0px;
}

.toggle-arrow {
  --_size: 1em;
  height: var(--_size);
  width: var(--_size);
  transition: transform 200ms ease;
  transform: rotate(0deg);
}

.faq-item-wrapper[data-open="true"] .toggle-arrow {
  transform: rotate(180deg);
}

.toggle-arrow-line {
  fill: none;
  stroke: white;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4px;
}