/* Play page blurb - scrolling quote text */

.blurb {
  width: 285px;
  margin: 0 auto 0px;  /* Compressed vertical space - no bottom margin */
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  height: 20px;        /* Reduced by 2px for vertical compression */
  min-height: 20px;    /* Reduced by 6px total (was 26px) for vertical compression */
}

.blurb-text {
  display: inline-block;
  white-space: nowrap;
  padding-right: 285px; /* creates gap between loops - matches blurb width for seamless loop */
  font-size: 14px;     /* Decreased by 4px (was 18px) */
  font-style: italic;
  color: var(--initials-edge); /* themed dark color */
  animation: scroll-left 18s linear infinite;

  /* Smoothness */
  will-change: transform;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}

@keyframes scroll-left {
  from { transform: translateX(100%); }  /* Start from right edge (fully off-screen) */
  to   { transform: translateX(-100%); } /* Move to left edge (fully off-screen) */
}
