.all_program_slots h2{
  font-size: 1.68rem;
}

.description_parent {
  position: relative;
  cursor: pointer;
  display: inline-block; /* or block, depending on your layout */
  width: 100%;
}

.description {
  margin: 0 0 2px 0;
}

.description.collapsed {
  display: none;
  -webkit-line-clamp: 3;      /* how many lines to show when collapsed */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.description_toggle {
  text-transform: uppercase;
  font-size: 0.85em;
  color: var(--purple-text);
  font-weight: bold;
  position: relative;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 1rem 0 0 0;
}

.description.collapsed + .description_toggle svg {
  transform: rotate(180deg);
}

/* the hint sits absolutely below the block so it never pushes other content */
.hover-hint {
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: 4px;
  font-size: 0.75em;
  color: #888;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

/* only show on real mouse devices, so touch users don't get a stuck tooltip */
@media (hover: hover) and (pointer: fine) {
  .description_parent:hover .hover-hint {
    opacity: 1;
  }
}
