/* FAQ Showcase Section */
#showcase-faq {
  min-height: 75vh;
  display: flex;
  align-items: center;
  position: relative;
  color: #fff;
  border-top: var(--bs-primary) 5px solid;
  border-bottom: var(--bs-warning) 5px solid;
}

#showcase-faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-size: cover;
  background-position: center center;
  background-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0) 100%
    ),
    url("../../assets/img/hero-patient-faqs.jpg");
}

.showcase-content {
  position: relative;
  z-index: 2;
}

/* FAQ Accordion Styles */
.accordion-item {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.125);
}

.accordion-button {
  font-weight: 500;
  padding: 1rem 1.25rem;
  background-color: #f8f9fa;
}

.accordion-button:not(.collapsed) {
  color: var(--bs-primary);
  background-color: rgba(0, 45, 86, 0.05);
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 45, 86, 0.25);
}

.accordion-body {
  padding: 1.5rem;
  background-color: #fff;
}

/*────────────────────────────
     Responsive Breakpoints
  ────────────────────────────*/

/* XXL: Extra‑extra‑large screens (≥1400px) */
@media (min-width: 1400px) {
  #showcase-faq {
    min-height: 65vh;
  }
}

/* XL: Extra‑large screens (1200px–1399.98px) */
@media (max-width: 1399.98px) and (min-width: 1200px) {
  #showcase-faq {
    min-height: 50vh;
  }
}

/* LG: Large screens (992px–1199.98px) */
@media (max-width: 1199.98px) and (min-width: 992px) {
  #showcase-faq {
    min-height: 40vh;
  }
}

/* MD: Medium screens (768px–991.98px) */
@media (max-width: 991.98px) and (min-width: 768px) {
  #showcase-faq {
    min-height: 40vh;
  }
}

/* SM: Small screens (576px–767.98px) */
@media (max-width: 767.98px) and (min-width: 576px) {
  #showcase-faq {
    min-height: 50vh;
  }
}

/* XS: Extra small screens (<576px) */
@media (max-width: 575.98px) {
  #showcase-faq {
    min-height: 25vh;
  }
}
