
.ucc-grid-wrapper{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(min(320px,100%),1fr));
    gap:20px;
}
.ucc-card{
    border:3px solid rgba(113,128,150,0.22);
    border-radius:15px;
    background:#fff;
    padding:0;
    box-shadow:0 8px 20px rgba(0,0,0,0.05);
    display:flex;
    flex-direction:column;
    overflow:hidden;
}
.ucc-card__image img{
    width:100%;
    height:auto;
    border-radius:15px 15px 0 0;
    display:block;
}
.ucc-card__body{
    padding:16px;
    text-align:center;
}
.ucc-card__title{
    margin:0 0 8px;
    font-size:1.1rem;
    font-weight:600;
}
.ucc-card__desc{
    margin:0 0 16px;
    font-size:.9rem;
    line-height:1.4;
    color:#4a5568;
}
.ucc-card__actions{
    display:flex;
    justify-content:center;
}
.ucc-btn{
    background:linear-gradient(#2f6bff,#0041d9);
    color:#fff;
    text-decoration:none;
    padding:12px 20px;
    border-radius:6px;
    font-weight:600;
    display:inline-block;
    width:100%;
    max-width:240px;
    text-align:center;
}
