/* FK-CSS-LOADED */ body { outline: 2px solid red !important; }

/* FK: cache-busted v3 — add a loud outline so we can see it loaded */
body { outline: 2px solid red !important; }

/* Universal: kill any inline link to internal publication pages (keep buttons) */
a[href*="/publication/"]:not(.btn) {
  pointer-events: none !important;
  cursor: default !important;
  text-decoration: none !important;
  color: inherit !important;
}

/* Card/list variants used by Current Work / Publications / Policy Work */
.section-subheading.article-title a,
.article-title a,
.view-card a:not(.btn),
.pub-list a:not(.btn),
.publication-list a:not(.btn),
.pub-title a {
  pointer-events: none !important;
  cursor: default !important;
  text-decoration: none !important;
  color: inherit !important;
}

/* Keep explicit action buttons (PDF, Working Paper, DIW, etc.) clickable */
.btn-links a,
a.btn {
  pointer-events: auto !important;
  cursor: pointer !important;
  text-decoration: none;
}




/* v11 — Publications & Policy: only titles are blue+bold; all other links inert/normal */

/* Default for ALL non-button links in these sections: inert, normal weight, inherit color */
section#publications a:not(.btn),
section#policy a:not(.btn) {
  pointer-events: none !important;
  cursor: default !important;
  text-decoration: none !important;
  color: inherit !important;
  font-weight: 400 !important;
}

/* Override for the ITEM TITLES only (they link to /publication/...) */
section#publications a[href^="/publication/"]:not(.btn),
section#policy       a[href^="/publication/"]:not(.btn) {
  color: #0d6efd !important;   /* blue title */
  font-weight: 700 !important; /* bold title */
}

/* Keep action buttons (PDF, Working Paper, etc.) clickable */
section#publications .btn-links a,
section#policy       .btn-links a,
section#publications a.btn,
section#policy       a.btn {
  pointer-events: auto !important;
  cursor: pointer !important;
}


/* Slightly softer blue (80% opacity) */
section#publications a[href^="/publication/"]:not(.btn),
section#policy       a[href^="/publication/"]:not(.btn) {
  color: rgba(21, 101, 192, 0.8) !important; /* #1565c0 at 80% */
  font-weight: 700 !important;
}

/* Optional: full-strength on hover */
section#publications a[href^="/publication/"]:not(.btn):hover,
section#policy       a[href^="/publication/"]:not(.btn):hover {
  color: rgba(21, 101, 192, 1) !important;
}