body {
  font-family: 'Inter', sans-serif;
}
.font-serif-report {
  font-family: 'Libre Baskerville', serif;
}
.article-body-p {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.125rem;
  line-height: 1.8;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}
@keyframes pulse-red {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(217, 48, 37, 0.7); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(217, 48, 37, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(217, 48, 37, 0); }
}
.animate-pulse-red {
  animation: pulse-red 2s infinite;
}
.highlight-yellow {
  background: linear-gradient(120deg, #fff9c4 0%, #fff9c4 100%);
  background-repeat: no-repeat;
  background-size: 100% 40%;
  background-position: 0 88%;
}