/* WS-DO-9 (2026-09-25): mobile overflow fixes for bt-itg. Loaded after main.min.css. */

/* Blog/category hero H1 had a fixed 80px size on every viewport: long words
   ("маркетинг-стратегій") were wider than a 390px screen -> horizontal scroll. */
.blog-home__hero-wrapper h1 { max-width: 100%; overflow-wrap: break-word; }
@media (max-width: 1024px) {
  .blog-home__hero-wrapper h1 { font-size: 56px; }
}
@media (max-width: 768px) {
  .blog-home__hero-wrapper h1 { font-size: 36px; }
  .blog-home__hero-wrapper h1 span { font-size: 24px; }
}

/* BUG-DO-06: share block must never widen the page (long URLs / share widgets). */
.post-share { max-width: 100%; min-width: 0; overflow-wrap: anywhere; }
