/* ── Marquee Section ── */
.nst-marquee-section {
  background: #ffffff;
  border-top: 1px solid rgba(15, 76, 129, 0.08);
  border-bottom: 1px solid rgba(15, 76, 129, 0.08);
  padding: 36px 0;
  overflow: hidden;
  width: 100%;
}

.nst-marquee-wrap {
  overflow: hidden;
  width: 100%;
}

.nst-marquee-track {
  display: flex;
  white-space: nowrap;
  width: max-content;
  animation: nst-marquee-scroll 30s linear infinite;
}

.nst-marquee-wrap:hover .nst-marquee-track {
  animation-play-state: paused;
}

.nst-marquee-group {
  display: flex;
  align-items: center;
}

.nst-marquee-item {
  font-family: 'Gilroy', 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(15, 76, 129, 0.1);
  -webkit-text-stroke: 1.5px #0F4C81;
}

.nst-marquee-sep {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: rgba(15, 76, 129, 0.18);
  margin: 0 28px;
}

@keyframes nst-marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 900px) {
  .nst-marquee-section {
    padding: 28px 0;
  }

  .nst-marquee-item {
    font-size: 24px;
  }

  .nst-marquee-sep {
    font-size: 18px;
    margin: 0 20px;
  }
}

@media (max-width: 560px) {
  .nst-marquee-section {
    padding: 22px 0;
  }

  .nst-marquee-item {
    font-size: 18px;
    -webkit-text-stroke: 1.2px #0F4C81;
  }

  .nst-marquee-sep {
    font-size: 14px;
    margin: 0 14px;
  }

  .nst-marquee-track {
    animation-duration: 22s;
  }
}