.faq_hero {
  padding-top: 180px;
  padding-bottom: 180px;
  margin-bottom: 80px;
}
.faq_hero h1 {
  font-size: 52px;
  line-height: 1.1;
}
.faq_hero p {
  font-size: 16px;
}
.cat_heading h2 {
  font-size: 22px;
  margin-bottom: -2px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--oh-primary);
}
.cat_heading {
  border-bottom: 2px solid rgba(0, 0, 0, 0.105);
  display: flex;
  align-items: flex-start;
}
.faq_by_cat {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 80px;
}
.faq_row {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.faq_title h3 {
  margin-bottom: 20px;
  font-size: 16px;
}
.faq_detail {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq_row > div {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq_by_cat:last-child {
  margin-bottom: 0px;
}

@media only screen and (max-width: 767px) {
  .faq_hero {
    padding: 60px 0px;
    margin-bottom: 0px;
  }
  .faq_row {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .faq_by_cat {
    margin-bottom: 40px;
  }
}
