.productions {
    padding: 80px 15% 80px 15%;
    text-align: center;
}

.productions h2 {
    font-size: 40px;
    margin-bottom: 50px;
    letter-spacing: 2px;
    font-weight: 800;
    text-align : left;
    text-transform : uppercase;
}

.productions-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, auto));
    gap: 25px;
    justify-content: start; /* colle la grille à gauche */
}

.productions-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    /*box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);*/
    max-width: 300px;
}

    .productions-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
        /*filter: invert(1);*/
    }

.productions-item:hover img {
    transform: scale(1.08);
}

@media (max-width: 768px) {
    .productions h2 {
        font-size: 24px;
    }

    .productions-item {
        max-width:350px;
    }