.sejal-news-flash {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #ffef66;
    border: 2px solid #000;
    display: flex;
    align-items: center;
    padding: 10px 14px;
    gap: 12px;
    font-family: Arial, sans-serif;
}

.flash-label {
    background: red;
    color: #fff;
    font-weight: bold;
    padding: 6px 10px;
    border-radius: 4px;
    white-space: nowrap;
}

/* 🔥 KEY FIX */
.flash-slider {
    flex: 1;
    height: 32px;              /* ONE NEWS HEIGHT */
    overflow: hidden;
    position: relative;
}

.slider-inner {
    display: block;
    transition: transform 0.6s ease-in-out;
}

/* 🔥 EACH NEWS = SAME HEIGHT */
.slide-item {
    display: block;
    height: 32px;
    line-height: 32px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #000;
    font-weight: 600;
    text-decoration: none;
}

.slide-item:hover {
    text-decoration: underline;
}

.flash-social {
    display: flex;
    gap: 8px;
    white-space: nowrap;
}

.flash-social a {
    background: #fff;
    color: #000;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    font-weight: bold;
    text-decoration: none;
    border: 1px solid #000;
}

.flash-social a:hover {
    background: #000;
    color: #fff;
}
