.student-story-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
    border: 1px solid #30a55b;
    margin: 30px 30px;
    height: 350px;
    overflow: auto;
}
@media (max-width:768px) {
    .student-story-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
    border: 1px solid #30a55b;
    margin: 14px 10px;
    height: 400px;
    overflow: auto;
}
}
.story-author{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:10px;
}

.story-author img{
    width:60px;
    height:60px;
    border-radius:50%;
    object-fit:cover;
}
.story-author h4 {
    margin: 0;
    font-weight: 600;
    font-size: 22px;
}
.story-author span {
    color: #19b945;
    font-size: 13px;
    font-weight: 600;
}

.story-tag{
    background:#22c55e;
    color:#fff;
    padding:6px 15px;
    border-radius:30px;
    font-size:13px;
    display:inline-block;
    margin-bottom:15px;
}

.student-story-card h2{
    font-size: 22px;
    margin-bottom: 9px;
    font-weight: 500;
}
@media (max-width:576px) {
    .student-story-card h2{
    font-size: 17px;
  
}
}
.story-content p{
    font-size: 15px;
    line-height: 1.5;
    color: #282e37;
}
@media (max-width:576px) {
    .student-story-card h2{
    font-size: 17px;
}
.story-content p{
    font-size: 15px;
    margin-bottom: 6px;
}
}
.story-quote {
    margin: 8px 0;
    padding: 6px 5px;
    background: linear-gradient(135deg,#f0fff8,#eef8ff);
    /* border-left: 5px solid #22c55e; */
    border-radius: 15px;
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.6;
}
.story-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #3ebf6d, #16a34a);
    color: #fff;
    padding: 7px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .5px;
    text-transform: uppercase;
    /* box-shadow: 0 5px 15px rgba(34,197,94,.25); */
    margin-bottom: 6px;
}

.story-badge::before{
    content:"✦";
    font-size:12px;
}