.intro-subtitle-content {
    max-width: 56rem;
}

.accordion-fold__index {
  width: 3rem;
  height: 3rem;
}

.accordion-fold__body {
  min-width: 0;
}

.accordion-fold__panel {
  max-height: 0;
  transition: max-height 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  .accordion-fold__panel {
    transition: none;
  }
}

.tips-cards__card {
    max-width: 24rem;
}

/* glossary wire — row nudge on hover */
.glossary-wire__row {
    transition: transform 0.18s ease;
}

.glossary-wire__row:hover {
    transform: translateX(3px);
}

.content-column__body {
    column-gap: 2.5rem;
}

.content-column__body p {
    break-inside: avoid;
}

@media (min-width: 768px) {
    .content-column__body {
        column-count: 2;
    }
}

@media (min-width: 1200px) {
    .content-column__body {
        column-count: 3;
    }
}

