.container{
    padding:120px 20px;
}

h1{
    text-align:center;
    margin-bottom:30px;
}

/* GRID */
.model-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill, minmax(220px, 1fr));
    gap:20px;
}

/* CARD */
.model-card{
    display:block;
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    text-decoration:none;
    color:#000;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
    transition:0.2s;
}

.model-card:hover{
    transform:translateY(-5px);
}

/* IMAGE */
.model-img img{
    width:100%;
    height:250px;
    object-fit:cover;
}

/* INFO */
.model-info{
    padding:10px;
}

.model-info h3{
    margin:0;
}

.model-info p{
    font-size:13px;
    color:#666;
}

/* BADGES */
.badges{
    margin-top:8px;
    display:flex;
    flex-wrap:wrap;
    gap:5px;
}

.badge{
    background:#3da1ff;
    color:white;
    font-size:11px;
    padding:4px 8px;
    border-radius:20px;
}