.appointments-list-card--wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1rem;
}

.appointments-list-card--section-header {
  width: 100%;
  z-index: 2;
  position: relative;
  margin-bottom: 1.5rem;

  span {
    font-size: var(--rem-13);
    color: var(--text-information);
    font-variation-settings: 'wght' var(--text-medium);
    background-color: var(--neutral-50);
    display: block;
    z-index: -1;
    position: absolute;
    left: 1.5rem;
    padding: .25rem .5rem;
    top: 50%;
    transform: translateY(-50%);
  }

  &::before {
    content: '';
    width: 100%;
    height: 1px;
    background-color: var(--neutral-200);
    display: block;
    z-index: -1;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}

.appointments-list-card--empty-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;

  span {
    font-size: var(--rem-13);
    color: var(--text-additional);
  }
}