/* Patient Information / FAQ — mobile-first */
.patient-faq-section {
  padding: 40px 0 48px;
  overflow: hidden;
}

@media (min-width: 992px) {
  .patient-faq-section {
    padding: 56px 0 72px;
  }
}

.patient-faq-grid {
  display: grid;
  gap: 28px;
  align-items: start;
}

@media (min-width: 992px) {
  .patient-faq-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }
}

.patient-faq-intro .title-wrap {
  margin-bottom: 20px;
}

.patient-faq-intro .double-title {
  margin-bottom: 0;
}

.patient-faq-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.1);
}

.patient-faq-panel {
  min-width: 0;
}

.patient-faq-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px 18px 20px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

@media (min-width: 768px) {
  .patient-faq-card {
    padding: 32px 28px 28px;
  }
}

.patient-faq-label {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #e54282;
  font-family: "Poppins", sans-serif;
}

.patient-faq-accordion {
  margin: 0;
}

.patient-faq-section .faq-item {
  margin-bottom: 12px;
  border-radius: 10px;
  overflow: hidden;
}

.patient-faq-section .faq-item:last-child {
  margin-bottom: 0;
}

.patient-faq-section .faq-item [data-toggle="collapse"] {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 52px;
  padding: 14px 44px 14px 16px;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 600;
  background: #f9f9f9;
  box-shadow: none;
  border: 1px solid #eee;
  border-radius: 10px;
}

.patient-faq-section .faq-item [data-toggle="collapse"] span:first-child {
  flex-shrink: 0;
  min-width: 22px;
  font-size: 15px;
  font-weight: 700;
  color: #e54282;
}

.patient-faq-section .faq-item [data-toggle="collapse"] span:last-child {
  flex: 1;
  min-width: 0;
}

.patient-faq-section .faq-item [data-toggle="collapse"]:after {
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.patient-faq-section .faq-item [data-toggle="collapse"][aria-expanded="true"] {
  background: #fff5f9;
  border-color: #e54282;
  border-radius: 10px 10px 0 0;
}

.patient-faq-section .faq-item .faq-item-content > * {
  padding: 0 16px 16px 48px;
  border: 1px solid #eee;
  border-top: 0;
  border-radius: 0 0 10px 10px;
  background: #fff;
}

.patient-faq-section .faq-item .faq-item-content p {
  margin: 12px 0 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #555;
}

.patient-faq-section .faq-item .faq-item-content a {
  color: #e54282;
}

@media (max-width: 575px) {
  .patient-faq-section {
    padding: 32px 0 40px;
  }

  .patient-faq-section .faq-item [data-toggle="collapse"] {
    font-size: 14px;
    padding: 12px 40px 12px 14px;
  }

  .patient-faq-section .faq-item .faq-item-content > * {
    padding: 0 14px 14px 14px;
  }
}
