/* Home module: promo cards (new arrival / collector / U.S. stocked). */

.bjs-promo {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 80px clamp(24px, 7vw, 112px);
  border-bottom: 1px solid var(--home-line);
  background: #0b0e12;
}

.bjs-promo__card {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  border: 1px solid var(--home-line);
  border-top: 3px solid var(--home-red);
  background: var(--home-panel);
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease;
}

.bjs-promo__card:hover { transform: translateY(-3px); border-color: var(--home-red); }

.bjs-promo__index { color: var(--home-red); font: 700 10px/1 Inter, sans-serif; }
.bjs-promo__title { margin-top: 12px; color: var(--home-copy); font: 600 clamp(28px, 2.8vw, 40px)/.95 'Barlow Condensed', sans-serif; text-transform: uppercase; }
.bjs-promo__note { margin-top: 10px; color: var(--home-muted); font: 400 12px/1.5 Inter, sans-serif; }

@media (max-width: 900px) {
  .bjs-promo { grid-template-columns: 1fr; }
  .bjs-promo__card { min-height: 150px; }
}

@media (max-width: 620px) {
  .bjs-promo { padding: 56px 18px; }
}
