.template-preview{

    width:100%;

    max-width:clamp(
        180px,
        28vw,
        280px
    );

    margin:0 auto;

}

.template-preview img{

    width:100%;
    height:auto;

    display:block;

    border-radius:18px;

    object-fit:cover;

    transition:.3s ease;

}

.template-preview img:hover{

    transform:translateY(-3px);

}