.accordion-wrapper {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 25px;
  column-gap: 16px;
}

.accordion {
  border: 1px solid #FFFCE43B;
  overflow: hidden;
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 10px 20px;
  gap: 8px;
  @media screen and (min-width: 576px) {
    padding: 30px;
  }
}

.accordion-left {
  display: flex;
  align-items: center;
  gap: 20px;

}

.accordion-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex-shrink: 0;

}

.accordion-title {
  min-height: 62px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
  margin: 0;


}

.accordion-toggle svg {
  transition: transform 0.3s ease;
}

.accordion.open .icon-plus {
  display: none;
}

.accordion .icon-minus {
  display: none;
}

.accordion.open .icon-minus {
  display: block;
}

.accordion.open .icon-plus {
  display: none;
}

.accordion-content-wrapper {
  height: 0;
  overflow: hidden;
  transition: height 0.4s ease;
}

.accordion-content {
  padding: 0 20px 20px;
  font-size: 15px;
  line-height: 1.6;
  color: #d8e2d0;
  @media screen and (min-width: 576px) {
    padding: 0 30px 30px;
  }
}

.accordion-content::before {
  content: "";
  display: block;
  width: 100%;
  position: relative;
  height: 1px;
  background-color: #52624C87;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .accordion-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}


@media (min-width: 1024px) {
  .accordion-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}