/* Static-build additions: definitions the theme referenced but relied on
   WordPress/plugins to provide. */

/* Theme templates use th-font-bolder but style.css never defines it. */
.th-font-bolder {
  font-weight: 900;
}

/* Nav menu weight (WP printed menus inherit this from component rules). */
.main-navigation .menu li a,
.footer-navigation ul li a {
  font-weight: 700;
}

/* Contact form (Jetpack rendered this server-side on the original site). */
.contact-form {
  max-width: 640px;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 0.6em;
  border: 1px solid var(--th-color-secondary-lighter, #e5e5e5);
  border-radius: 1px;
  font: inherit;
  box-sizing: border-box;
}
.contact-form .required {
  color: var(--th-color-accent-base, #E91E63);
}
