/* Dynamic Portfolio — pluggable card grid */
.syxty-portfolio { padding: 4rem 1.5rem; max-width: 1200px; margin: 0 auto; }
.syxty-portfolio__heading {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  margin: 0 0 .5rem;
  text-align: center;
  color: var(--syxty-fg, #1E3A5F);
}
.syxty-portfolio__sub {
  text-align: center;
  color: var(--syxty-muted, #64748b);
  margin: 0 0 2.5rem;
  font-size: 1rem;
}
.syxty-portfolio__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.syxty-portfolio__card {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 18px rgba(0,0,0,.08);
  text-decoration: none;
  color: inherit;
  transition: transform .25s ease, box-shadow .25s ease;
}
.syxty-portfolio__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.14);
}
.syxty-portfolio__thumb {
  aspect-ratio: 16/9;
  background: #1a1d23 center / cover no-repeat;
  position: relative;
}
.syxty-portfolio__badge {
  position: absolute;
  top: 12px; left: 12px;
  background: linear-gradient(135deg, #ff3366, #ff6a3d);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.syxty-portfolio__body { padding: 1.25rem 1.5rem 1.5rem; }
.syxty-portfolio__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 .35rem;
  color: var(--syxty-fg, #1E3A5F);
}
.syxty-portfolio__venue {
  font-size: .85rem;
  color: var(--syxty-muted, #64748b);
  margin: 0 0 .85rem;
}
.syxty-portfolio__cta {
  font-size: .85rem;
  font-weight: 700;
  color: #ff3366;
  letter-spacing: .02em;
}
.syxty-portfolio__loading {
  height: 240px;
  background: linear-gradient(90deg, #f0f4f8, #e2e8f0, #f0f4f8);
  background-size: 200% 100%;
  border-radius: 14px;
  animation: syxty-portfolio-shimmer 1.4s linear infinite;
}
@keyframes syxty-portfolio-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.syxty-portfolio__empty {
  text-align: center;
  padding: 2.5rem;
  color: var(--syxty-muted, #64748b);
  background: #f8fafc;
  border-radius: 14px;
}
.syxty-portfolio__empty a { color: #ff3366; font-weight: 600; }
