/* 自定义样式 */
body {
  scroll-behavior: smooth;
}

/* 卡片悬停动画 */
article {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

article:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* 响应式调整 */
@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

