.scrolling-posts-container {
    width: 100%; /* Full-width scrolling */
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    background: #f9f9f9;
    padding: 10px;
    border: 1px solid #ddd;
}

.scrolling-posts-list {
    display: flex; /* Ensure horizontal scrolling */
    gap: 20px; /* Space between items */
}

.scrolling-post-item {
    display: inline-block;
    white-space: nowrap; /* Prevent text wrapping */
    padding: 10px 20px;
    font-size: 16px;
    background: #fff;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.cloned {
    display: none; /* Hide cloned list initially */
}
