/*==================================================
  Featured Tutorials
==================================================*/

.sv-category-featured{
    padding:0 0 30px;
    background:#fff;
}

.sv-featured-grid{
    display:grid;
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap:18px;
}

.sv-featured-card{
    overflow:hidden;
    border:1px solid #dce3ee;
    border-radius:8px;
    background:#fff;
    box-shadow:0 12px 28px rgba(15,23,42,.045);
    transition:transform .2s ease, box-shadow .2s ease;
}

.sv-featured-card:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 34px rgba(15,23,42,.08);
}

.sv-featured-image{
    display:block;
    overflow:hidden;
    aspect-ratio:1.62;
    background:#0f172a;
}

.sv-featured-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .25s ease;
}

.sv-featured-card:hover .sv-featured-image img{
    transform:scale(1.04);
}

.sv-featured-content{
    padding:16px;
}

.sv-featured-category{
    display:inline-flex;
    margin-bottom:10px;
    padding:5px 10px;
    border-radius:6px;
    background:#fff3d9;
    color:#a15c00;
    font-size:12px;
    font-weight:800;
}

.sv-featured-title{
    margin:0 0 12px;
    color:#111827;
    font-size:17px;
    line-height:1.35;
    font-weight:800;
}

.sv-featured-title a{
    color:inherit;
    text-decoration:none;
}

.sv-featured-summary{
    margin:0 0 14px;
    color:#667085;
    font-size:13px;
    line-height:1.55;
}

.sv-featured-meta{
    display:flex;
    align-items:center;
    gap:14px;
    color:#667085;
    font-size:13px;
}

@media(max-width:1100px){
    .sv-featured-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media(max-width:560px){
    .sv-featured-grid{
        grid-template-columns:1fr;
    }
}
