/**
 * Module CSS: 04-ticker-bar.css
 * Trích nguyên văn dòng 259-288 của pctech-homepage.css gốc.
 * Không đổi nội dung — chỉ tách file theo đúng marker sẵn có trong code gốc.
 */
    /* ── Ticker bar ── */
    .ticker-bar {
      background: linear-gradient(90deg, var(--blue-dark), var(--blue));
      color: var(--white);
      overflow: hidden;
      padding: 10px 0;
      margin-top: var(--header-h);
      position: relative;
      z-index: 10;
    }
    .ticker-track {
      display: flex;
      gap: 48px;
      animation: ticker 40s linear infinite;
      white-space: nowrap;
      width: max-content;
    }
    .ticker-item {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.85rem;
      font-weight: 500;
    }
    .ticker-item strong { color: var(--orange); }
    @keyframes ticker {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

