.stream-courses-wrapper{
    display:flex;
    gap:30px;
    margin:40px 0;
}

.stream-sidebar{
    width:280px;
    background:#f8f9fb;
    padding:25px;
    border-radius:10px;
}

.stream-sidebar h3{
    margin-bottom:20px;
}

.stream-course-categories{
    list-style:none;
    padding:0;
}

.stream-course-categories li{
    margin-bottom:12px;
}

.stream-course-categories a{
    text-decoration:none;
    color:#003b95;
    font-weight:600;
}

.stream-courses-grid{
    flex:1;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.stream-course-card{
    border:1px solid #eee;
    border-radius:12px;
    overflow:hidden;
    background:#fff;
    transition:.3s;
}

.stream-course-card:hover{
    transform:translateY(-5px);
}

.stream-course-image img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.stream-course-content{
    padding:20px;
}

.stream-course-content h3{
    margin-bottom:10px;
}

.stream-meta{
    display:flex;
    justify-content:space-between;
    margin-bottom:15px;
    color:#555;
}

.stream-btn{
    display:inline-block;
    margin-top:15px;
    background:#0057ff;
    color:#fff;
    padding:10px 18px;
    border-radius:6px;
    text-decoration:none;
}