/* Gallery archive — match original gallery.php card visuals */
.ipa-gallery-hero .blog-card {
  border-radius: 16px;
  overflow: hidden;
  background: white;
  border: 1px solid rgba(243, 96, 114, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px -10px rgba(243, 96, 114, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.ipa-gallery-hero .blog-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 0 20px rgba(243, 96, 114, 0.2);
  border-color: rgba(243, 96, 114, 0.4);
  z-index: 10;
}
.ipa-gallery-hero .blog-card-visual {
  width: 100%;
  height: auto !important;
  max-height: none !important;
  background: #f1f5f9;
  overflow: hidden;
  position: relative;
}
.ipa-gallery-hero .blog-card-visual a { display: block; width: 100%; }
.ipa-gallery-hero .blog-card-visual a img {
  width: 100%;
  height: auto !important;
  max-height: none !important;
  display: block;
  object-fit: unset !important;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s;
  filter: brightness(0.95);
}
.ipa-gallery-hero .blog-card:hover .blog-card-visual a img {
  transform: scale(1.04);
  filter: brightness(1.05);
}
.ipa-gallery-hero .blog-card:hover .blog-card-title { color: #F36072 !important; }
.ipa-gallery-hero .filter-pill.active {
  background: linear-gradient(135deg, #F36072, #393464);
  color: white;
  border-color: transparent;
  box-shadow: 0 8px 25px rgba(243, 96, 114, 0.3);
}
