/*
 * Public notice-list hero flow sizing.
 *
 * The legacy bundle repeated these height constraints across several design
 * passes and forced the final values with !important. Loading this focused
 * module last keeps the verified flow while the normal cascade is sufficient.
 */

body.notice-page:not(.notice-detail-page) .hero-copy {
  min-height: 150px;
}

body.notice-page:not(.notice-detail-page) .popular-searches {
  height: auto;
  min-height: 32px;
}

@media (max-width: 720px) {
  body.notice-page:not(.notice-detail-page) .hero-copy {
    height: auto;
    min-height: 0;
  }
}

@media (min-width: 1400px) {
  body.notice-page:not(.notice-detail-page) .hero-copy {
    min-height: 0;
  }

  body.notice-page:not(.notice-detail-page) .popular-searches {
    height: 32px;
  }
}
