.rssi-feed-scroller-title {
    text-align: center;
    margin-bottom: 0.25em;
}
.rssi-feed-scroller-byline {
    text-align: center;
    font-size: 0.95em;
    color: #666;
    margin-bottom: 1em;
}
.rssi-feed-scroller-wrapper {
    margin-bottom: 2em;
    overflow-x: auto;
}
.rssi-feed-scroller {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 1em;
    scroll-snap-type: x mandatory;
}

.rssi-feed-item {
    flex: 0 0 auto;
    scroll-snap-align: start;
    background: #f8f8f8;
    border-radius: 8px;
    padding: 0.5em;
    width: 250px;
    transition: all 0.3s ease;
}

/* Responsive: Hide items 4 and beyond when screen is <=768px */
@media (max-width: 768px) {
    .rssi-feed-scroller .rssi-feed-item:nth-child(n+4) {
        display: none;
    }
}
.rssi-feed-item:hover {
    background-color: #f3f4f6;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}
.rssi-feed-item-inner {
    display: flex;
    align-items: flex-start;
    gap: 0.5em;
}
.rssi-feed-thumb img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 4px;
}
.rssi-feed-title {
    font-weight: bold;
    margin-bottom: 0.25em;
}
.rssi-feed-desc {
    font-size: 0.9em;
    color: #333;
}
@media screen and (max-width: 768px) {
    .rssi-feed-scroller {
        flex-direction: column;
    }
    .rssi-feed-item {
        width: 100%;
    }
}
