.faqs-block{
  max-width: 980px;
  margin: 0 auto;
  padding: 18px 14px 34px;
}

.faqs-block__search{
  display: flex;
  justify-content: center;
  margin: 8px 0 26px;
}

.faqs-block__search-label{
  position: absolute;
  left: -9999px;
}

.faqs-block__search-wrap{
  position: relative;
  width: min(560px, 100%);
}

.faqs-block__search-input{
  width: 100%;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.10);
  padding: 0 52px 0 18px;
  outline: none;
  font-size: 15px;
}

.faqs-block__search-icon{
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.faqs-block__list{
  display: grid;
  gap: 18px;
}

.faqs-block__item{
  border: 1px solid #1c9c8c; /* teal border */
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.faqs-block__question{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 18px;
  background: #fff;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  background-color: unset !important;
  color: inherit;
}

.faqs-block__plus{
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #1c9c8c;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  flex: 0 0 auto;
}

.faqs-block__answer{
  border-top: 1px solid rgba(28,156,140,0.18);
}

.faqs-block__answer-inner{
  padding: 18px 18px 18px;
  color: rgba(0,0,0,0.72);
  line-height: 1.55;
}

.faqs-block__empty{
  text-align: center;
  color: rgba(0,0,0,0.60);
  padding: 14px 0 0;
}