.quiz-card{
background:#fff;
border-radius:12px;
overflow:hidden;
box-shadow:0 6px 18px rgba(0,0,0,0.08);
transition:0.3s;
height:100%;
display:flex;
flex-direction:column;
}

.quiz-card:hover{
transform:translateY(-6px);
box-shadow:0 10px 28px rgba(0,0,0,0.15);
}

.quiz-image{
position:relative;
height:180px;
overflow:hidden;
}

.quiz-image img{
width:100%;
height:100%;
object-fit:cover;
}

.quiz-time-badge{
position:absolute;
top:10px;
left:10px;
background:#000;
color:#fff;
font-size:12px;
padding:4px 10px;
border-radius:20px;
}

.quiz-title{
font-weight:600;
margin-bottom:6px;
}

.quiz-description{
font-size:14px;
min-height:40px;
}

.quiz-meta{
font-size:13px;
color:#666;
margin-top:10px;
}