/* ==========================================================================
   Card Grids — Artist / Event / Press
   Bird Promotions v2.0.0
   ========================================================================== */

/* Section header */
.bp-section-header { margin-bottom: var(--bp-space-12); }
.bp-section-header--centered { text-align: center; }
.bp-section-header__sub { color: var(--bp-text-muted); font-size: var(--bp-text-md); margin-top: var(--bp-space-3); }

/* ── FEATURED ARTIST CARD ── */
.bp-artist-featured {
  position: relative; min-height: 480px; border-radius: var(--bp-radius-lg);
  overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end;
  --artist-accent: #c9a227;
}
.bp-artist-featured__bg  { position: absolute; inset: 0; }
.bp-artist-featured__img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; transition: transform var(--bp-transition-slow); }
.bp-artist-featured:hover .bp-artist-featured__img { transform: scale(1.04); }
.bp-artist-featured__overlay  { position: absolute; inset: 0; background: rgba(9,9,11,0.35); }
.bp-artist-featured__gradient { position: absolute; inset: 0; background: linear-gradient(to right, rgba(9,9,11,0.85) 0%, rgba(9,9,11,0.4) 50%, rgba(9,9,11,0.1) 100%); }
.bp-artist-featured__content  { position: relative; z-index: 2; padding: var(--bp-space-10); max-width: 560px; }
.bp-artist-featured__meta     { display: flex; align-items: center; gap: var(--bp-space-3); margin-bottom: var(--bp-space-4); flex-wrap: wrap; }
.bp-artist-featured__name     { font-family: var(--bp-font-display); font-size: clamp(var(--bp-text-2xl), 5vw, var(--bp-text-4xl)); font-weight: 700; text-transform: uppercase; letter-spacing: var(--bp-tracking-tight); line-height: 1.0; margin-bottom: var(--bp-space-2); }
.bp-artist-featured__link     { color: var(--bp-white); text-decoration: none; transition: color var(--bp-transition-fast); }
.bp-artist-featured__link:hover { color: var(--artist-accent); }
.bp-artist-featured__tagline  { font-size: var(--bp-text-sm); color: var(--bp-text-secondary); margin-bottom: var(--bp-space-4); }
.bp-artist-featured__bio      { font-size: var(--bp-text-base); line-height: var(--bp-leading-relaxed); color: var(--bp-text-secondary); max-width: 480px; margin-bottom: var(--bp-space-5); }
.bp-artist-featured__badges   { display: flex; flex-wrap: wrap; gap: var(--bp-space-2); margin-bottom: var(--bp-space-6); }
.bp-artist-featured__actions  { display: flex; flex-wrap: wrap; gap: var(--bp-space-3); }
.bp-artist-featured__corner-accent { position: absolute; top: 0; right: 0; width: 4px; height: 60%; background: var(--artist-accent); opacity: 0.6; }

/* ── ARTIST GRID CARD ── */
.bp-artist-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: var(--bp-space-5); margin-top: var(--bp-space-5); }
.bp-artist-card { display: flex; flex-direction: column; --artist-accent: #c9a227; }
.bp-artist-card__img-wrap { height: 220px; position: relative; }
.bp-artist-card__img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(9,9,11,0.7) 0%, transparent 50%); }
.bp-artist-card__img-placeholder { width: 100%; height: 100%; background: var(--bp-black-soft); }
.bp-artist-card__body     { padding: var(--bp-space-5); flex: 1; display: flex; flex-direction: column; gap: var(--bp-space-3); }
.bp-artist-card__meta     { display: flex; align-items: center; gap: var(--bp-space-2); flex-wrap: wrap; }
.bp-artist-card__genre    { color: var(--artist-accent); }
.bp-artist-card__name     { font-size: var(--bp-text-xl); line-height: 1.1; }
.bp-artist-card__name a   { color: var(--bp-white); transition: color var(--bp-transition-fast); }
.bp-artist-card__name a:hover { color: var(--artist-accent); }
.bp-artist-card__location { font-size: var(--bp-text-xs); color: var(--bp-text-muted); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.bp-artist-card__bio      { font-size: var(--bp-text-sm); color: var(--bp-text-secondary); line-height: var(--bp-leading-relaxed); flex: 1; }
.bp-artist-card__actions  { display: flex; gap: var(--bp-space-2); flex-wrap: wrap; margin-top: auto; padding-top: var(--bp-space-3); border-top: var(--bp-border-1); }

/* ── EVENT GRID ── */
.bp-event-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: var(--bp-space-5); }
.bp-event-card { display: flex; flex-direction: column; }
.bp-event-card__poster   { height: 300px; position: relative; }
.bp-event-card__poster-placeholder { background: var(--bp-black-soft); width: 100%; height: 100%; }
.bp-event-card__date-badge {
  position: absolute; top: var(--bp-space-3); left: var(--bp-space-3);
  background: var(--bp-gold); color: var(--bp-black); border-radius: var(--bp-radius-sm);
  display: flex; flex-direction: column; align-items: center; padding: 4px 8px; min-width: 44px;
}
.bp-event-card__date-month { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; line-height: 1; }
.bp-event-card__date-day   { font-family: var(--bp-font-display); font-size: var(--bp-text-xl); font-weight: 700; line-height: 1; }
.bp-event-card__body  { padding: var(--bp-space-5); flex: 1; display: flex; flex-direction: column; gap: var(--bp-space-3); }
.bp-event-card__meta  { display: flex; align-items: center; gap: var(--bp-space-2); flex-wrap: wrap; }
.bp-event-card__price { font-size: var(--bp-text-xs); font-weight: 700; color: var(--bp-gold); letter-spacing: 0.06em; }
.bp-event-card__title a { color: var(--bp-white); transition: color var(--bp-transition-fast); }
.bp-event-card__title a:hover { color: var(--bp-gold); }
.bp-event-card__details { list-style: none; font-size: var(--bp-text-sm); color: var(--bp-text-muted); line-height: 1.8; flex: 1; }

/* ── NEWS / PRESS GRID ── */
.bp-news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: var(--bp-space-5); }
.bp-press-card { display: flex; flex-direction: column; }
.bp-press-card__img-wrap { height: 200px; }
.bp-press-card__body { padding: var(--bp-space-5); flex: 1; display: flex; flex-direction: column; gap: var(--bp-space-3); }
.bp-press-card__meta { display: flex; align-items: center; justify-content: space-between; gap: var(--bp-space-2); flex-wrap: wrap; }
.bp-press-card__cat  { font-size: var(--bp-text-xs); }
.bp-press-card__date { font-size: var(--bp-text-xs); color: var(--bp-text-muted); font-weight: 600; }
.bp-press-card__title { font-size: var(--bp-text-md); font-weight: 700; line-height: 1.3; }
.bp-press-card__title a { color: var(--bp-white); transition: color var(--bp-transition-fast); }
.bp-press-card__title a:hover { color: var(--bp-gold); }
.bp-press-card__excerpt { font-size: var(--bp-text-sm); color: var(--bp-text-secondary); line-height: var(--bp-leading-relaxed); flex: 1; }
.bp-press-card__read-more { font-size: var(--bp-text-xs); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--bp-gold); align-self: flex-start; transition: opacity var(--bp-transition-fast); }
.bp-press-card__read-more:hover { opacity: 0.7; }

/* ── COLLABORATIONS MARQUEE ── */
.bp-collabs { background: var(--bp-black-mid); border-top: var(--bp-border-1); border-bottom: var(--bp-border-1); padding-block: var(--bp-space-20); }
.bp-collabs__marquee { overflow: hidden; margin-block: var(--bp-space-10); }
.bp-collabs__track   { display: flex; gap: 0; white-space: nowrap; will-change: transform; animation: bp-collab-scroll 40s linear infinite; }
.bp-collabs__track:hover { animation-play-state: paused; }
.bp-collabs__item    { display: inline-flex; align-items: center; padding-inline: var(--bp-space-8); border-right: var(--bp-border-1); }
.bp-collabs__name    { font-family: var(--bp-font-display); font-size: var(--bp-text-md); font-weight: 600; text-transform: uppercase; letter-spacing: var(--bp-tracking-tight); color: var(--bp-text-muted); transition: color var(--bp-transition-fast); white-space: nowrap; }
.bp-collabs__logo    { height: 48px; width: auto; filter: brightness(0.5); transition: filter var(--bp-transition-fast); }
.bp-collabs__item:hover .bp-collabs__name,
.bp-collabs__item:hover .bp-collabs__logo { color: var(--bp-white); filter: brightness(1); }
@keyframes bp-collab-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── PAST EVENTS GALLERY ── */
.bp-past-events-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: var(--bp-space-4); }
.bp-past-event-item  { position: relative; aspect-ratio: 3/4; overflow: hidden; border-radius: var(--bp-radius-md); }
.bp-past-event-item__link { display: block; width: 100%; height: 100%; }
.bp-past-event-item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--bp-transition-slow); }
.bp-past-event-item:hover img { transform: scale(1.06); }
.bp-past-event-item__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(9,9,11,0.92) 0%, rgba(9,9,11,0.3) 50%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: var(--bp-space-4); opacity: 1; }
/* Text always visible; image scales on hover for depth */
.bp-past-event-item__title { font-family: var(--bp-font-display); font-size: var(--bp-text-base); font-weight: 700; text-transform: uppercase; color: var(--bp-white); }
.bp-past-event-item__date,
.bp-past-event-item__city { font-size: var(--bp-text-xs); color: var(--bp-gold); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }

@media (max-width: 640px) {
  .bp-artist-grid { grid-template-columns: 1fr; }
  .bp-event-grid  { grid-template-columns: 1fr; }
  .bp-news-grid   { grid-template-columns: 1fr; }
  .bp-artist-featured__content { padding: var(--bp-space-6); }
}

/* ── COLLABORATIONS LIST (archive-bp_collab.php) ── */
.bp-collab-intro {
  color: var(--bp-text-secondary);
  font-size: var(--bp-text-base);
  line-height: var(--bp-leading-relaxed);
  max-width: 820px;
  margin-top: var(--bp-space-4);
  margin-bottom: var(--bp-space-4);
}

.bp-collab-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: var(--bp-border-1);
  border-radius: var(--bp-radius-md);
  overflow: hidden;
  margin-top: var(--bp-space-10);
}

.bp-collab-list__item {
  display: flex;
  align-items: center;
  gap: var(--bp-space-5);
  padding: var(--bp-space-5) var(--bp-space-6);
  border-bottom: var(--bp-border-1);
  background: var(--bp-bg-card);
  transition: background-color var(--bp-transition-fast);
}
.bp-collab-list__item:last-child { border-bottom: none; }
.bp-collab-list__item:hover { background: var(--bp-bg-elevated); }

.bp-collab-list__left { flex-shrink: 0; }

.bp-collab-list__thumb {
  width: 56px;
  height: 56px;
  border-radius: var(--bp-radius-sm);
  overflow: hidden;
  background: var(--bp-black-soft);
  border: var(--bp-border-1);
}
.bp-collab-list__thumb img { width: 100%; height: 100%; object-fit: cover; }
.bp-collab-list__thumb--placeholder {
  background: var(--bp-black-soft);
  /* Subtle music note icon via CSS */
  display: flex; align-items: center; justify-content: center;
}
.bp-collab-list__thumb--placeholder::after {
  content: '♪';
  font-size: 22px;
  color: var(--bp-white-ghost);
}

.bp-collab-list__body { flex: 1; display: flex; flex-direction: column; gap: var(--bp-space-1); }

.bp-collab-list__name {
  font-family: var(--bp-font-display);
  font-size: var(--bp-text-lg);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--bp-white);
  line-height: 1.1;
}

.bp-collab-list__desc {
  font-size: var(--bp-text-sm);
  color: var(--bp-text-secondary);
  line-height: var(--bp-leading-relaxed);
}

.bp-collab-list__year {
  font-size: var(--bp-text-xs);
  font-weight: 700;
  letter-spacing: var(--bp-tracking-wider);
  text-transform: uppercase;
  color: var(--bp-gold);
  margin-top: var(--bp-space-1);
}

@media (max-width: 640px) {
  .bp-collab-list__item { padding: var(--bp-space-4); gap: var(--bp-space-3); }
  .bp-collab-list__thumb { width: 44px; height: 44px; }
  .bp-collab-list__name { font-size: var(--bp-text-md); }
}
