/* === NEWS STRIP === */
.news-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff8e1; /* Lighter yellow for news strip */
    padding:  4px;
    border-top: 2px solid #ffcc80; /* Softer orange border */
    border-bottom: 2px solid #ffcc80; /* Softer orange border */
}

.news-title {
    font-weight: bold;
    color: #d32f2f; /* Dark red for news title */
}

.news-scroll {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
}

.news-scroll marquee {
    font-size: 14px;
    color: darkblue; /* Darker blue for marquee text */
    font-weight: bold;
    width: 90%;
    display: inline-block;
    margin-left: 20px;
}

/* --- Mobile Responsiveness for News Strip --- */
@media (max-width: 768px) {
    .news-strip {
        flex-direction: column;
        text-align: center;
        padding: 10px;
    }

    .news-scroll marquee {
        margin-left: 0;
        width: 100%; /* Marquee takes full width */
    }
}
