.manufacturing{

    padding:140px 0;

    background:#f8f8f8;

}

.manufacturing-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.manufacturing-item{

    background:#ffffff;

    border-radius:24px;

    overflow:hidden;

    border:1px solid var(--color-border);

    transition:.3s;

}

.manufacturing-item:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.manufacturing-item img{

    width:100%;

    height:240px;

    object-fit:cover;

}

.manufacturing-content{

    padding:28px;

}

.manufacturing-content h3{

    font-size:26px;

    margin-bottom:14px;

}

.manufacturing-content p{

    color:var(--color-secondary);

    line-height:1.8;

}