/* Accordion Styling */
.wpspoiler {
  border-bottom: 1px solid #ddd;
  overflow: hidden;
}

.wpspoiler-title {
  padding: 48px 20px;
  cursor: pointer;
  font-weight: 700;
  position: relative;
  font-size: var(--st1-size);
  line-height: var(--st1-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wpspoiler-title::after {
  content: '';
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 0.3s ease;
}

.wpspoiler.active .wpspoiler-title::after {
  transform: rotate(90deg);
}

.wpspoiler.active .wpspoiler-title {
  border-bottom: none;
}

.wpspoiler.active .wpspoiler-content {
  margin-top: -20px;
}

.wpspoiler-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #fff;
  font-size: var(--b1-size);
  line-height: var(--b1-height);
}

.wpspoiler.active .wpspoiler-content {
  max-height: 2000px;
  transition: max-height 0.5s ease;
}

.wpspoiler-content-inner {
  padding: 20px;
}

/* Multiple accordions container */
.accordion-group {
  margin: 20px 0;
}

.accordion-group .wpspoiler {
  margin-bottom: 10px;
}

@media (max-width: 1024px) {
  .wpspoiler-title {
    padding: 20px 15px;
    font-size: var(--st1-size-tablet);
    line-height: var(--st1-height-tablet);
  }

  .wpspoiler-title::after {
    right: 15px;
    font-size: 22px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .wpspoiler-title {
    padding: 12px 15px;
    font-size: var(--b1-size-mobile);
    line-height: var(--b1-height-mobile);
  }

  .wpspoiler-title::after {
    right: 15px;
    font-size: 20px;
  }
}
