/*
 * Site-wide tweaks that are NOT part of Webflow's generated stylesheet.
 *
 * site.css is regenerated by tools/rebuild-from-webflow.py and anything
 * added to it would be lost. Put hand-written site-wide CSS here instead;
 * this file is loaded after site.css on every page and is never
 * regenerated.
 */

/* The announcement bar is now a link to the Free Pattern Check. Gold on
   brown, matching the "Let's Work Together" button in the nav, so it
   reads as a call to action rather than a caption. */
a.topbarprize {
  display: block;
  color: var(--color);          /* site gold, #dba800 */
  font-weight: 600;
  letter-spacing: 1.5px;
  text-decoration: none;
  transition: background-color .25s, color .25s;
}
a.topbarprize:hover {
  background-color: #5c3f2b;
  color: #f0c22e;
}
