/* ───── VAPOR logo bar ─────
   Press / partner logos as a marquee strip OR a static row. Logos render
   in a muted ink tone with hover bringing them to full color. */

.vp-logo-bar {
  background: var(--color-bg);
  color: var(--color-text);
  padding-block: clamp(2.5rem, 5vw, 4rem);
  border-block: 1px solid var(--color-border);
  position: relative;
}

.vp-logo-bar__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: var(--tracking-mono);
  text-transform: uppercase;
  color: var(--color-text-muted);
  text-align: center;
  margin: 0 0 var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  justify-content: center;
}
.vp-logo-bar__eyebrow::before,
.vp-logo-bar__eyebrow::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--color-border);
}

/* ── Items (shared) ── */
.vp-logo-bar__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding-inline: var(--space-4);
  color: var(--color-text);
  opacity: 0.55;
  text-decoration: none;
  flex-shrink: 0;
  transition: color 200ms var(--ease), opacity 200ms var(--ease), filter 200ms var(--ease), transform 200ms var(--ease);
}
.vp-logo-bar__item img {
  height: 28px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: grayscale(1) brightness(1.6) opacity(0.7);
  transition: filter 240ms var(--ease);
}
.vp-logo-bar__item:hover {
  color: var(--color-accent);
  opacity: 1;
  transform: translateY(-1px);
}
.vp-logo-bar__item:hover img {
  filter: grayscale(0) brightness(1) opacity(1);
}
.vp-logo-bar__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  letter-spacing: var(--tracking-display);
  text-transform: uppercase;
  line-height: 1;
  color: inherit;
}

/* ── Marquee layout ── */
.vp-logo-bar--marquee .marquee {
  margin-inline: calc(-1 * var(--container-px));
}
.vp-logo-bar--marquee .marquee__track { gap: var(--space-7); padding-inline-end: var(--space-7); }

/* ── Static row layout ── */
.vp-logo-bar__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  gap: var(--space-5) var(--space-7);
}
@media (max-width: 640px) {
  .vp-logo-bar__row { gap: var(--space-4); }
  .vp-logo-bar__item { padding-inline: var(--space-2); height: 40px; }
  .vp-logo-bar__item img { height: 22px; }
}

/* Pause on hover */
.vp-logo-bar--marquee:hover .marquee__track { animation-play-state: paused; }
