/* ============================================
   Bounty — Federal Funds Discovery Styles
   Extends docklabs.css with Bounty-only components.
   Shared classes (.opportunity-card, .badge-grant-type,
   .badge-watching/preparing/applied/awarded/declined)
   now live in Keel's docklabs.css.
   ============================================ */

/* -- Opportunity Status Badges (Bounty only) -- */
.badge-posted  { background-color: var(--ct-green); }
.badge-forecasted { background-color: var(--ct-pale-blue); color: var(--ct-dark-blue); }
.badge-closed  { background-color: #6C757D; }
.badge-archived { background-color: #6C757D; }

/* -- Grant Match Card -- */
.grant-card {
    transition: box-shadow 0.2s ease;
}
.grant-card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
