/* therapist-expertise-section-neuro.css */
.therapist-expertise-section {
  padding: 6rem 2rem; /* Consistent with other sections */
  background: linear-gradient(135deg, var(--warm-cream) 0%, var(--soft-peach) 100%); /* Using a theme variable for background */
  text-align: center;
}

.therapist-expertise-section .container {
  max-width: 1100px; /* Consistent with other sections' inner containers */
  margin: 0 auto 0px;
    grid-template-columns: 1fr;
}

.therapist-expertise-section .section-header {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  align-items: center;
  text-align: center;
  margin-left: auto; /* Ensure explicit horizontal centering for the block */
  margin-right: auto; /* Ensure explicit horizontal centering for the block */
  margin-bottom: 0px;
}

.therapist-expertise-section .section-title {
  color: var(--dark-blue);
  margin-bottom: 0.5rem;
}

.therapist-expertise-section .highlight-teal {
  position: relative;
}

.therapist-expertise-section .highlight-teal::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(135deg, var(--teal-lighter) 0%, var(--blue-lighter) 100%); /* Consistent gradient for underline */
  border-radius: 5px;
  z-index: -1;
}

.therapist-expertise-section .section-lead {
  color: var(--text-gray); /* Consistent with other section leads */
  margin: 0 auto;
  max-width: 760px;
  font-size: 1.15em; /* Consistent font size */
}

.techniques .patient-item.empty-placeholder {
  display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .therapist-expertise-section {
    padding: 4rem 2rem;
  }

  .therapist-expertise-section .section-lead {
    font-size: 1em;
  }

  .therapist-expertise-section .container {
    padding: 0px 0px;
  }
}

@media (max-width: 640px) {
  .therapist-expertise-section {
    padding: 3rem 1.5rem;
  }
}
