.bv-card-shell {
  background: var(--bv-gradient-surface);
  border: 1px solid var(--bv-border-soft);
  box-shadow: var(--bv-shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.bv-card-shell:hover {
  transform: translateY(-5px);
  border-color: #cde2d6;
  box-shadow: var(--bv-shadow-md);
}