/* resources/style.css — Resources hub page specific styles (shared styles in ../../brand.css → ../brand.css) */

.art-card {
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  background: #fff;
  overflow: hidden;
  transition: all .3s;
  display: block;
  text-decoration: none;
  color: inherit;
}
.art-card:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,.10);
  transform: translateY(-4px);
}
.art-card:hover .art-title { color: #4f46e5; }
.art-title { transition: color .2s; }
