/* LNTA Typography Style — reduces two theme heading classes used
   sitewide that were rendering far larger than the offline reference:
     .hero-title  (banner/slider headline) was 80px  -> now ~32-52px
     .sec-title   (every section heading)  was 48px  -> now ~24-32px
   Only font-size/line-height are touched — color, weight, text-shadow
   etc. all stay exactly as the theme already set them. clamp() is used
   so this scales smoothly between mobile and desktop instead of
   jumping at a hard breakpoint, the same technique the offline theme
   uses for its own hero heading. */

.hero-title {
	font-size: clamp(2rem, 4vw, 3.25rem) !important;
	line-height: 1.2 !important;
}

.sec-title {
	font-size: clamp(1.5rem, 3vw, 2rem) !important;
	line-height: 1.25 !important;
}
