﻿
.news-container {
    height: auto;            /* Adjust height */
    overflow: hidden;
    position: relative;
}

.news-list {
    list-style-type: disc;        /* show bullets */
    padding-left: 20px;  
    margin: 0;
    animation: scroll-up 6s linear infinite;
}
.news-list li::marker {
    color: red;       /* your bullet color */
    font-size: 18px;  /* optional: make bullets bigger */
}
.news-list li {
    padding: 6px 0;
}

.news-list a {
    text-decoration: none;
    color: #f70707;          /* Match your card theme */
    font-weight: 600;
}

.news-container:hover .news-list {
    animation-play-state: paused;   /* Stop on hover */
}

@keyframes scroll-up {
    0%   { transform: translateY(100%); }
    100% { transform: translateY(-100%); }
}

