/* ==========================================
   SUCCESS STORIES
========================================== */

.stories-section{
    background:#EEF0F8;
    padding:100px 0;
}

.stories-section *{
    box-sizing:border-box;
}

.stories-section .container{
    max-width:1400px;
    margin:auto;
    padding:0 60px;
}

/* Header */

.stories-head{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:30px;
    margin-bottom:60px;
}

.stories-head h2{
    color:#002B6B;
    font-size:44px;
    margin:0 0 15px;
}

.stories-head p{
    color:#5B6E91;
    font-size:17px;
    line-height:1.8;
    margin:0;
    max-width:650px;
}

.stories-btn{
    border:2px solid #B9D5F1;
    color:#002B6B;
    text-decoration:none;
    padding:14px 24px;
    border-radius:999px;
    font-weight:600;
    transition:.3s;
}

.stories-btn:hover{
    background:#002B6B;
    color:#ffffff;
    border-color:#002B6B;
}

/* Grid */

.stories-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

/* Card */

.story-card{
    background:#ffffff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,43,107,.08);
    transition:.3s;
}

.story-card:hover{
    transform:translateY(-8px);
    box-shadow:0 22px 45px rgba(0,43,107,.15);
}

.story-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}

.story-body{
    padding:24px;
}

.tag{
    display:inline-block;
    background:#EAF4FF;
    color:#005AAA;
    padding:6px 14px;
    border-radius:999px;
    font-size:13px;
    font-weight:700;
    margin-bottom:16px;
}

.story-body h3{
    color:#002B6B;
    font-size:24px;
    margin:0 0 14px;
}

.story-body p{
    color:#5B6E91;
    font-size:15px;
    line-height:1.8;
    margin:0;
}

.sample-note{
    margin-top:40px;
    text-align:center;
    color:#6B7280;
    font-style:italic;
    font-size:15px;
}

/* Responsive */

@media(max-width:1200px){

    .stories-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .stories-section{
        padding:70px 0;
    }

    .stories-section .container{
        padding:0 24px;
    }

    .stories-head{
        flex-direction:column;
        align-items:flex-start;
    }

    .stories-head h2{
        font-size:34px;
    }

    .stories-grid{
        grid-template-columns:1fr;
    }

}