/* Programs (Escuelas) – minimal overrides to avoid side effects */

/* Fix title clipping without altering external spacing rules */
#escuelas h2 { line-height: 1.2; }

/* Mobile tweaks: avoid clipping and keep compact spacing */
@media (max-width: 767px) {
  #escuelas h2 {
    font-size: 36px !important;
    line-height: 1.25 !important;
    margin: 24px 0 8px !important; /* top and bottom tuned */
    padding-bottom: 0 !important;  /* neutralize extra spacing from global CSS */
  }
  /* Make school titles clearly smaller than the main title */
  #escuelas h3 {
    font-size: 26px !important;
    line-height: 1.3 !important;
    margin: 16px 0 18px !important; /* top tuned to balance with h2 */
  }

  /* Show full images without cropping */
  #escuelas .inner { overflow: hidden; margin-bottom: 0; height: auto; }
  #escuelas .inner img { position: static; width: 100%; height: auto; object-fit: contain; }
}
