/* =========================================================
   Programs Hero Title — line-break correction
   Keeps «برای» attached to the first line on tablet/desktop.
========================================================= */

@media (min-width: 681px) {
  .programs-hero h1 {
    width: max-content;
    max-width: none;
    white-space: nowrap;
    text-wrap: nowrap;
  }

  .programs-hero h1 span {
    display: block;
    white-space: nowrap;
  }
}

@media (max-width: 680px) {
  .programs-hero h1 {
    width: auto;
    white-space: normal;
    text-wrap: balance;
  }
}
