body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #1e293b;
    -webkit-font-smoothing: antialiased;
}

.font-odia {
    font-family: 'Anek Odia', sans-serif;
    line-height: 1.6;
}

.news-card-v2 {
    @apply relative overflow-hidden bg-white border border-slate-200 transition-all duration-200;
}

.news-card-v2:hover {
    @apply border-slate-300 shadow-sm;
}

@keyframes ticker-swipe {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.ticker-wrapper {
    display: flex;
    width: fit-content;
    animation: ticker-swipe 40s linear infinite;
}

.ticker-wrapper:hover {
    animation-play-state: paused;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}