div.block-question {
  padding: var(--wp--preset--spacing--l);
  border-radius: 20px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  background-color: white;
  color: black;
  margin-bottom: var(--wp--preset--spacing--l);
}
div.block-question:last-child {
  margin-bottom: var(--wp--preset--spacing--2-xl);
}
div.block-question .title {
  min-height: 40px;
  display: flex;
  align-items: center;
  font-family: var(--wp--preset--font-family--title);
  max-width: calc(100% - 40px);
}
div.block-question::after {
  content: "";
  font-size: 20px;
  color: white;
  width: 40px;
  height: 40px;
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M16.59%2015.7051L12%2011.1251L7.41%2015.7051L6%2014.2951L12%208.29508L18%2014.2951L16.59%2015.7051Z%22%20fill%3D%22black%22%2F%3E%3C%2Fsvg%3E");
  top: var(--wp--preset--spacing--l);
  right: var(--wp--preset--spacing--l);
  transition: all 0.3s;
  transform: rotate(180deg);
}
div.block-question .text {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  overflow: hidden;
  height: 0px;
  transition: height 0.3s;
}
div.block-question .text p {
  padding-top: var(--wp--preset--spacing--s);
  margin: 0;
  color: #52525B;
}
div.block-question.open .text {
  height: auto;
  height: calc-size(auto);
}
div.block-question.open::after {
  transform: rotate(0deg);
}