/* CATEGORY CARDS */
.faq-card {
  background: white;
  border: 1px solid #e5e7eb;
  padding: 1px;
  text-align: center;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0px 2px 6px #c2272d;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  min-height: 80px;
}

.faq-card:hover {
  border-color: #c2272d;
  /* transform: translateY(-2px); */
  transform: translateX(-2px);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.08);
  /* box-shadow: 0px 4px 12px rgba(194, 39, 45, 0.4); */
}

.faq-card.active {
  background: #c2272d;
  border-color: #c2272d;
  color: white;
  box-shadow: 0px 4px 12px rgba(194, 39, 45, 0.4);
}

.faq-card.active,
.faq-card.active * {
  color: white !important;
}

.faq-card-title {
  font-size: 1rem;
  font-weight: 600;
  display: block;
}

.faq-section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #c2272d;
  padding-top: 0px;
  width: 100%;
  text-align: center;
  display: block;
}

/* ACCORDION IMPROVED */
.accordion-button {
  background: #fff;
  border-left: 4px solid transparent;
  transition: 0.25s ease;
}

.accordion-button.active {
  border-left: 4px solid #c2272d !important;
  background: #ea8f8fec;
}

.accordion-button:hover {
  background: #f9fafb;
  border-left-color: #c2272d;
}

.accordion-button[aria-expanded="true"] {
  background: #fff5f5;
  border-left: 4px solid #c2272d;
  color: #c2272d;
}

.accordion-body {
  background: white;
  padding: 18px 22px;
  line-height: 1.6;
  color: #4b5563;
  border-left: 4px solid #ffe0e0;
}

@media (min-width: 376px) and (max-width: 480px) {
  .faq-card {
    min-height: 70px;
    padding: 14px;
    min-width: fit-content;
  }
}

@media (max-width: 375px) {
  .faq-card {
    min-height: 40px;
    padding: 5px;
    min-width: fit-content;
  }

  .faq-section-title {
    font-size: 15px;
  }
}
