 /* Simple styling for the feed display */
 .rss-feed {
    font-family: Arial, sans-serif;
    padding: 20px;
}

.sli-container {
    position: fixed;
    left: 0;
    bottom: -20px;
    width: 100%;
    overflow: hidden;
    background-color: #FF5A00;
    z-index: 2000;
    /* height: 50px; */
}

.slider {
    display: flex;
    text-align: center;
    transition: transform 1s ease;
}

.rss-item {
    flex: 0 0 33.33%; /* Show 3 items at a time (1/3 width) */
    /* padding: 10px; */
    box-sizing: border-box;
    line-height: normal;
}

.rss-title {
    font-size: 12px;
    font-weight: bold;
    color: #fff;
}

@media only screen and (max-width: 1200px) {
    .rss-item {
        flex: 0 0 100%; /* Show 3 items at a time (1/3 width) */
        /* padding: 10px; */
        box-sizing: border-box;
        line-height: normal;
    }
  }