/**
 * "About CXW" intro copy on the homepage.
 *
 * The vendored stylesheet drops .homepage-main-about to 17px/20px below
 * 991px -- barely larger than the footer, and well under the 28px an h3 gets
 * at that width, so the paragraph that explains what Chicago Exhibition Week
 * *is* read as fine print on a phone. It's a real h3 in the markup, so it
 * should stay h3-sized; this restores that at small widths only. Desktop is
 * already 32px/38px and is untouched.
 */

@media screen and (max-width: 991px) {
  .homepage-main-about {
    font-size: 28px;
    line-height: 34px;
  }
}

@media screen and (max-width: 479px) {
  .homepage-main-about {
    font-size: 24px;
    line-height: 29px;
  }
}
