    .galerie{
        display:grid;
        grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
        gap:30px;
    }

    .action{
        background:white;
        border-radius:6px;
        overflow:hidden;
        box-shadow:0 4px 10px rgba(0,0,0,0.1);
        transition:0.3s;
    }

    .action:hover{
        transform:translateY(-5px);
        box-shadow:0 8px 20px rgba(0,0,0,0.15);
    }

    .action img{
        width:100%;
        height:220px;
        object-fit:cover;
    }

    .action-content{
        padding:15px;
    }

    .action h3{
        margin:0;
        font-size:18px;
    }

    .meta{
        font-size:13px;
        color:#777;
        margin-top:4px;
    }

    .prix{
        font-weight:bold;
        margin-top:8px;
        color:#000;
    }

    .description{
        margin-top:10px;
        font-size:14px;
    }
          .thumb-img {
            max-width: 100px;
            max-height: 100px;
            object-fit: contain;
        }
