/* ==========================================
   Featured Cards
   ========================================== */

.featured {

    padding: 80px 20px;

    background: #f6f9fb;

}

.featured .container{

    max-width:1200px;

    margin:auto;

}

.section-title{

    text-align:center;

    margin-bottom:50px;

}

.section-title h2{

    font-size:2.4rem;

    color:#0b2436;

    margin-bottom:15px;

}

.section-title p{

    color:#666;

    max-width:700px;

    margin:auto;

}

.card-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:30px;

}

.feature-card{

    background:white;

    border-radius:16px;

    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.3s;

    display:flex;

    flex-direction:column;

}

.feature-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(0,0,0,.15);

}

.feature-card img{

    width:100%;

    height:220px;

    object-fit:cover;

}

.feature-card-content{

    padding:25px;

}

.feature-card-content h3{

    margin-top:0;

    color:#0d5c8f;

}

.feature-card-content p{

    line-height:1.7;

    color:#555;

}

.feature-card a{

    margin-top:auto;

    text-decoration:none;

    color:#0d5c8f;

    font-weight:bold;

}