/* /buy — Where to trade $ARROW: four venue cards in a hairline grid.
   Local palette mirrors production's standalone buy page (#fafafa/#000);
   only fonts and --accent map cleanly to base tokens. */

.s-buy-venues {
  --b-bg: #fafafa;
  --b-panel: #ffffff;
  --b-line: #e6e6e6;
  --b-line2: #d0d0d0;
  --b-ink: #0a0b04;
  --b-muted: #4d4d4d;
  --b-faint: #6b6b6b;
}
html.dark .s-buy-venues {
  --b-bg: #000000;
  --b-panel: rgba(244, 247, 236, 0.03);
  --b-line: rgba(244, 247, 236, 0.1);
  --b-line2: rgba(244, 247, 236, 0.17);
  --b-ink: #f5f6ef;
  --b-muted: rgba(245, 246, 239, 0.64);
  --b-faint: rgba(245, 246, 239, 0.42);
}

.s-buy-venues .bv-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

.s-buy-venues .bv-sec {
  margin-top: 72px;
  border-top: 1px solid var(--b-line);
  padding-top: 30px;
}

.s-buy-venues .bv-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.s-buy-venues .bv-h2 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(24px, 3vw, 31px);
  letter-spacing: 0.004em;
  line-height: 1.2;
  color: var(--b-ink);
}

.s-buy-venues .bv-lbl {
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--b-faint);
}

.s-buy-venues .bv-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--b-line);
  border: 1px solid var(--b-line);
  border-radius: 6px;
  overflow: hidden;
}

.s-buy-venues .bv-venue {
  background: var(--b-bg);
  padding: 24px 22px 22px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  transition: background 0.18s ease;
}
.s-buy-venues .bv-venue:hover {
  background: var(--b-panel);
}

.s-buy-venues .bv-venue img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  border-radius: 6px;
}
html.dark .s-buy-venues .bv-venue img {
  background: #fff;
}

.s-buy-venues .bv-nm {
  font-size: 16px;
  font-weight: 600;
  margin-top: 16px;
  letter-spacing: -0.01em;
  color: var(--b-ink);
}

.s-buy-venues .bv-ds {
  font-size: 13.5px;
  color: var(--b-muted);
  line-height: 1.55;
  margin-top: 7px;
  flex: 1;
}

.s-buy-venues .bv-go {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--b-ink);
}
.s-buy-venues .bv-go svg {
  width: 11px;
  height: 11px;
  transition: transform 0.18s ease;
}
.s-buy-venues .bv-venue:hover .bv-go svg {
  transform: translate(2px, -2px);
}

@media (max-width: 980px) {
  .s-buy-venues .bv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .s-buy-venues .bv-wrap {
    padding: 0 20px;
  }
  .s-buy-venues .bv-sec {
    margin-top: 56px;
  }
  .s-buy-venues .bv-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  .s-buy-venues .bv-venue,
  .s-buy-venues .bv-go svg {
    transition: none;
  }
}

/* venue cards that have nothing to point at yet read as plain text */
.bk-soon {
  opacity: 0.55;
  cursor: default;
}
