.slider-container {
    width: 100%;
    max-width: 400px;
    overflow: hidden;
    margin: 50px auto;
    position: relative;
  }
  
  .slider {
    display: flex;
    padding: 0 40px; /* allow peeking */
    transition: transform 0.3s ease;
    touch-action: pan-y;
    user-select: none;
    cursor: grab;
  }
  
  .slide {
    flex: 0 0 70%;
    height: 200px;
    /* background-color: #eee;
    border: 1px solid #ccc;
    border-radius: 12px; */
    display: flex;                    /* ⬅️ key line */
    justify-content: center;         /* ⬅️ horizontal centering */
    align-items: center;             /* ⬅️ vertical centering */
    font-size: 20px;
    text-align: center;
    /* box-shadow: 0 4px 10px rgba(0,0,0,0.1); */
  }