/* =============================================
   Category Cards - Icon Redesign
   grapplestream.com
   ============================================= */

/* Styled icon container - rounded square with amber gradient */
.Card--category .Card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(
    145deg,
    rgba(245, 158, 11, 0.18) 0%,
    rgba(245, 158, 11, 0.06) 100%
  );
  border: 1.5px solid rgba(245, 158, 11, 0.28);
  box-shadow:
    0 4px 16px rgba(245, 158, 11, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  color: #f59e0b;
  margin: 0 auto var(--space-2);
  flex-shrink: 0;
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

/* Icon glow on hover */
.Card--category:hover .Card-icon {
  background: linear-gradient(
    145deg,
    rgba(245, 158, 11, 0.28) 0%,
    rgba(245, 158, 11, 0.12) 100%
  );
  box-shadow:
    0 6px 24px rgba(245, 158, 11, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(-2px) scale(1.05);
}

/* SVG drop shadow for extra depth */
.Card--category .Card-icon svg {
  filter: drop-shadow(0 2px 3px rgba(245, 158, 11, 0.25));
}
