.marquee-posts-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    background-color: #f5f5f5;
    padding: 10px 0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.marquee-posts-track {
    display: inline-flex;
    align-items: center;
    will-change: transform;
    padding: 5px 0;
}

.marquee-post-item {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    flex-shrink: 0;
    background-color: white;
    padding: 8px 15px;
    border-radius: 6px;
    margin-right: 15px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.marquee-post-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

.marquee-post-thumbnail {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 10px;
    flex-shrink: 0;
    border: 1px solid #eee;
}

.marquee-post-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
}