.post-slider {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

.post-slider::-webkit-scrollbar {
    height: 8px;
}

.post-slider::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.post {
    flex: 0 0 auto;
    width: 300px; /* or whatever width you prefer */
    scroll-snap-align: start;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 15px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
}

.post img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}
