.son-dakika {
    display: flex;
    align-items: center;
    padding: 8px 10px;

    overflow: hidden;
}

.label {
    background: #c8102e;

    font-weight: bold;
    padding: 8px 12px;
    margin-right: 10px;
    white-space: nowrap;
    flex-shrink: 0;
}

.news-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.news-liste {
    display: flex;
    white-space: nowrap;
    gap: 50px;
    animation: scroll-left linear infinite;
    animation-duration: 15s;
}

.news-wrapper:hover .news-liste {
    animation-play-state: paused;
}

.news-nesne {
    display: inline-flex;
    white-space: nowrap;
    align-items: center;
    padding-right: 30px;
    flex-shrink: 0;
}

.time {
    color: #c8102e;
    font-weight: bold;
    margin-right: 5px;
}

.all-news {
    margin-left: auto;
    color: #c8102e;
    font-weight: bold;
    text-decoration: none;
    padding-left: 10px;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}