/* Black & yellow showcase — modern, matches sidebar */

:root {
  --by-black: #0a0a0a;
  --by-charcoal: #141414;
  --by-card: #1a1a1a;
  --by-card-hover: #222;
  --by-yellow: #ffc107;
  --by-yellow-bright: #ffda47;
  --by-yellow-dim: rgba(255, 193, 7, 0.15);
  --by-text: #f5f5f5;
  --by-muted: #a3a3a3;
  --by-radius: 14px;
}

.showcase {
  /* flows naturally with scrollable project list */
}

.showcase-section {
  margin-bottom: 2.5rem;
  animation: showcaseFadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.showcase-hint {
  margin: 0.75rem 0 0;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #737373;
  text-align: center;
}

.bio-lead {
  margin: 0 0 1rem;
}

.showcase-heading {
  position: relative;
  margin: 0 0 1.25rem;
  padding-bottom: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--by-black);
}

.showcase-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2.5rem;
  height: 3px;
  background: var(--by-yellow);
  border-radius: 2px;
}

.showcase-projects {
  margin-bottom: 0;
}

.showcase-projects .blog-list {
  padding: 0;
}

.showcase-projects .blog-list .item {
  padding-bottom: 0.5rem;
}

.showcase-projects .blog-list .intro h6 {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  margin: 0.5rem 0;
  background-color: #ffc107;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: bold;
}

.showcase-projects .blog-list .intro img {
  margin-top: 0.75rem;
}

.showcase-projects .video-wrap {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin-top: 0.75rem;
  padding-bottom: 56.25%;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #c2c2c2;
}

.showcase-projects .video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@keyframes showcaseFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .showcase-section,
  .showcase-hint {
    animation: none;
  }
}
