.report-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--color-white);
  border-top: 3px solid var(--color-purple);
  box-shadow: 0 4px 8px rgba(164, 164, 164, 0.3);
  padding: 2rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.report-card:hover,
.report-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(164, 164, 164, 0.4);
}

.report-card:focus-visible {
  outline: 2px solid var(--color-purple);
  outline-offset: 4px;
}

.report-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.report-card-title {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-black);
  margin: 0 0 1rem 0;
  line-height: 1.3;
}

.report-card-pills {
  margin-top: auto;
  padding-top: 1.5rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.report-card-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 56, 93, 0.25);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(17, 56, 93, 0.75);
  background: rgba(255, 255, 255, 0.9);
  pointer-events: none;
}

.report-card-pill--pdf {
  border-color: rgba(17, 56, 93, 0.25);
  color: rgba(17, 56, 93, 0.75);
}

.report-card.report-card--no-link {
  cursor: default;
  text-decoration: none;
}

.report-card.report-card--no-link:hover,
.report-card.report-card--no-link:focus-visible {
  transform: none;
  box-shadow: 0 4px 8px rgba(164, 164, 164, 0.3);
}

@media (max-width: 768px) {
  .report-card {
    padding: 1.5rem;
  }

  .report-card-title {
    font-size: 1.25rem;
  }
}



