/* news-style.css */
.blogger-news-bar {
    display: flex;
    align-items: center;
    background: #9AA199;
    color: #ffffff;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    height: 50px;
    border-bottom: 3px solid #007bff;
    overflow: hidden;
    position: relative;
}

.news-label {
    background: #007bff;
    color: white;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 13px;
    white-space: nowrap;
    letter-spacing: 1px;
}

.news-content-link {
    text-decoration: none;
    color: #fff;
    padding-left: 15px;
    font-size: 16px;
    transition: color 0.3s;
}

.news-content-link:hover {
    color: #007bff;
}

.cursor {
    color: #007bff;
    font-weight: bold;
    margin-left: 5px;
    animation: blink 0.8s infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

@media (max-width: 600px) {
    .news-label { padding: 0 10px; font-size: 11px; }
    .news-content-link { font-size: 14px; }
}
