/* Fair & expo — infinite marquee strip */
.voc-fair-strip-section {
  padding: 4rem 0;
  background: linear-gradient(180deg, #f0f9ff 0%, #fff 100%);
  overflow: hidden;
}

.voc-fair-strip-section .voc-heading span {
  background: linear-gradient(135deg, #0ea5e9, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.voc-fair-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.voc-fair-marquee::before,
.voc-fair-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}

.voc-fair-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #f0f9ff, transparent);
}

.voc-fair-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #fff, transparent);
}

.voc-fair-marquee__track {
  display: flex;
  width: max-content;
  gap: 1rem;
  padding: 0.5rem 0;
  animation: vocFairMarquee 45s linear infinite;
}

.voc-fair-marquee:hover .voc-fair-marquee__track {
  animation-play-state: paused;
}

.voc-fair-marquee__track--reverse {
  animation-direction: reverse;
  animation-duration: 52s;
  margin-top: 0.75rem;
}

@keyframes vocFairMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.voc-fair-chip {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.35rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 50px;
  text-decoration: none !important;
  color: #0f172a;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 16px rgba(14, 165, 233, 0.08);
  transition: transform 0.25s ease, border-color 0.25s, box-shadow 0.25s;
  white-space: nowrap;
}

.voc-fair-chip:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: #0ea5e9;
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.2);
  color: #0369a1;
}

.voc-fair-chip__date {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0ea5e9;
  background: rgba(14, 165, 233, 0.1);
  padding: 0.2rem 0.55rem;
  border-radius: 50px;
}

.voc-fair-chip i {
  color: #94a3b8;
  font-size: 0.75rem;
}

@media (prefers-reduced-motion: reduce) {
  .voc-fair-marquee__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
  }
  .voc-fair-marquee {
    mask-image: none;
  }
}

@media (max-width: 767px) {
  .voc-fair-chip {
    font-size: 0.82rem;
    padding: 0.7rem 1rem;
  }
}
