.sc3-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:24px;
width:100%;
}

.sc3-card{
position:relative;
height:260px;
border-radius:20px;
overflow:hidden;
background-size:cover;
background-position:center;
display:flex;
align-items:flex-end;
text-decoration:none;
}

.sc3-overlay{
position:absolute;
top:0;
left:0;
right:0;
bottom:0;
background:rgba(0,0,0,0.45);
transition:0.3s;
}

.sc3-card:hover .sc3-overlay{
background:rgba(0,0,0,0.65);
}

.sc3-content{
position:relative;
padding:24px;
color:#fff;
}

.sc3-content h3{
font-size:22px;
margin:0;
font-weight:600;
}

.sc3-content p{
margin-top:6px;
font-size:14px;
line-height:1.4;
opacity:.95;
}

/* Tablet */
@media (max-width:1024px){
.sc3-grid{
grid-template-columns:repeat(2,1fr);
}
}

/* Mobile */
@media (max-width:767px){
.sc3-grid{
grid-template-columns:1fr;
}
}
