#faqs {
  background: #FFF;
  padding: 200px 0 120px;
}

#faqs .container-1200 {
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
}

/* Header */
#faqs .faqs-header {
  text-align: center;
}

#faqs .faqs-eyebrow {
  color: var(--purple);
  font-family: Inter;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

#faqs h1 {
  color: var(--new-black);
  font-family: Inter;
  font-size: 32px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

#faqs .faqs-desc {
  color: rgba(var(--new-black-rgb), 0.80);
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  margin: 0 auto 32px;
  max-width: 644px;
}

/* Search */
#faqs .search-wrapper {
  position: relative;
  max-width: 680px;
  margin: auto;
  margin-bottom: 50px;
}
#faqs .faqs-search {
  position: relative;
}

#faqs .faqs-search-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

#faqs .faqs-search input {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(var(--new-black-rgb), 0.1);
  background: #FFF;
  padding: 8px 10px 8px 40px;
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: var(--new-black);
  outline: none;
  margin-bottom: 0;
}
#faqs .search-wrapper.is-open .faqs-search input {
  border-radius: 8px 8px 0 0;
  border-bottom: none;
}

#faqs .faqs-search input::placeholder {
  color: #848484;
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 171.875%;
}

{#
#faqs .faqs-search input:focus {
  border-color: rgba(var(--new-black-rgb), .4);
}
#}
#faqs .search-wrapper.is-open #faqs-search-results {
  display: block;
}

#faqs-search-results {
  display: none;
  margin: auto;
  width: 100%;
  padding: 8px;
  position: absolute;
  background: white;
  border-radius: 0 0 8px 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}


#faqs .search-result-item {
  color: var(--new-black);
  display: block;
  letter-spacing: -.02em;
  padding: 6px 14px;
  position: relative;
  text-decoration: none;
  transition: all .3s ease;
  font-size: 16px;
  font-weight: 400;
  line-height: 170%;
  border-radius: 8px;
}
#faqs .search-result-item:hover {
  background: #ECECEC;
}

#faqs .search-result-item::after {
  content: "→";
  display: block;
  font-family: Inter;
  font-weight: 400;
  font-size: 16px;
  line-height: 27.5px;

  {#
  background: url(https://7795250.fs1.hubspotusercontent-na1.net/hubfs/7795250/arrow-right-new-black.svg);
  width: 16px;
  height: 13px;
  #} 
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0;
  transition: opacity .3s ease;
}
#faqs .search-result-item:hover::after {
  opacity: 1;
}
#faqs p.no-results {
  font-size: 16px;
  margin-bottom: 0;
  padding: 8px;
}
/* Cards grid */
#faqs .faqs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 70px;
  margin-bottom: 70px;
}

#faqs .faqs-card {
  padding: 32px 30px;
  border-radius: 20px;
  border: 1px solid #F0F0F0;
  text-decoration: none;
  transition: border .3s ease;
}

#faqs .faqs-card:hover {
  border: 1px solid #dadada;
}

#faqs .faqs-card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;

}

#faqs .faqs-card-title img {
  display: block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

#faqs .faqs-card-title span {
  color: var(--new-black);
  font-family: Inter;
  font-size: 17px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: -0.02em;

}

#faqs .faqs-card-desc {
  color: rgba(var(--new-black-rgb), 0.60);
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 0;
  text-wrap: pretty;
  min-height: 3lh;
}

/* Bottom text */
#faqs .faqs-bottom-text {
  color: rgba(var(--new-black-rgb), 0.60);
  text-align: center;
  font-family: Inter;
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
  margin: 0 auto;
  max-width: 735px;
}

@media (max-width: 767px) {
  #faqs  {
    padding: 130px 0 80px;
  }
  #faqs h1 {
    font-size: 28px;
  }

  #faqs .faqs-eyebrow,
  #faqs .faqs-desc,
  #faqs .faqs-search input,
  #faqs .faqs-search input::placeholder,
  #faqs .faqs-card-desc {
    font-size: 14px;
    min-height: 0; 
  }

  #faqs .faqs-card-title span {
    font-size: 16px;
  }

  #faqs .faqs-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 80px;
    margin-bottom: 50px;
  }
  #faqs .search-result-item {
    font-size: 14px;
    padding: 6px;
    line-height: 134%;
    border-radius: 6px;
  }
  #faqs .search-result-item::after {
    display: none;
  }
}

@media (max-width: 575px) {
  #faqs .faqs-grid {
    grid-template-columns: 1fr;
  }
}