/* Temporary fix for project cards */
.project-card {
  /* Ensure the card maintains its size */
  min-height: 1px;
  contain: content;
  transform: translateZ(0);
  will-change: transform;
  /* Prevent content from overflowing */
  overflow: hidden !important;
}

/* Ensure the ripple effect doesn't affect layout */
.ripple {
  position: absolute !important;
  pointer-events: none;
  z-index: 1;
  transform: scale(0);
  opacity: 0.5;
  background: rgba(0, 243, 255, 0.3);
  border-radius: 50%;
  animation: ripple 0.6s linear;
  transform-origin: center;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}
