/**
 * 梦匠 - 卡片悬停交互（图片缩放）
 * 任务ID: JJC-20260520-001 Step 1.4
 *
 * 注意：卡片浮起 + 辉光已迁移到 css/pages/works-style.css（使用主题 token）
 * 本文件仅保留图片悬停放大效果
 */

.box > div:first-child {
  overflow: hidden;
}

.box > div:first-child > a {
  display: block;
  overflow: hidden;
}

.card-img-top {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow, 300ms) var(--ease-out, cubic-bezier(0, 0, 0.2, 1));
}

.box:hover .card-img-top {
  transform: scale(1.06);
}
