/*
Theme Name: Vijayant Bharat News
Theme URI: #
Author: AI Studio
Description: A responsive, mobile-first, Tailwind-powered local news theme based on Vijayant Bharat.
Version: 1.0
Text Domain: vijayant-bharat
*/

@import url("https://fonts.googleapis.com/css2?family=Chivo:wght@400;700;800&family=Inter:wght@400;500;600;700&family=Source+Serif+4:wght@400;600&display=swap");

.hide-scroll::-webkit-scrollbar {
  display: none;
}
.hide-scroll {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.ticker-wrap {
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.ticker {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  box-sizing: content-box;
  animation: ticker 30s linear infinite;
}

@keyframes ticker {
  0% {
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}
