.jprs-alerts-list{
    display:flex;
    flex-direction:column;
    gap:18px;
    margin-top:35px;
}

.jprs-alert-card{
    display:flex;
    align-items:flex-start;
    gap:20px;
    padding:24px;
    border-radius:20px;
    background:#fff;
    box-shadow:0 10px 28px rgba(0,0,0,.08);
    border-left:6px solid #1E6F9F;
    transition:.25s;
}

.jprs-alert-card:hover{
    transform:translateY(-3px);
    box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.jprs-alert-icon{
    width:56px;
    height:56px;
    min-width:56px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:16px;

    background:#EEF6FC;
    color:#1E6F9F;

    font-size:24px;
}

.jprs-alert-icon i{
    display:block;
    line-height:1;
}

.jprs-alert-content{
    flex:1;
}

.jprs-alert-content h3{
    margin:0 0 8px;
    color:#123B5D;
    font-size:23px;
    font-weight:900;
}

.jprs-alert-content p{
    margin:0 0 12px;
    color:#5E6B76;
    line-height:1.6;
}

.jprs-alert-content a{
    color:#1E6F9F;
    font-weight:800;
    text-decoration:none;
}

.jprs-alert-content a:hover{
    text-decoration:underline;
}

/* Information */

.jprs-alert-info{
    border-left-color:#1E6F9F;
}

.jprs-alert-info .jprs-alert-icon{
    background:#EEF6FC;
    color:#1E6F9F;
}

/* Attention */

.jprs-alert-warning{
    border-left-color:#F9A825;
}

.jprs-alert-warning .jprs-alert-icon{
    background:#FFF8E1;
    color:#F9A825;
}

/* Urgent */

.jprs-alert-danger{
    border-left-color:#C62828;
}

.jprs-alert-danger .jprs-alert-icon{
    background:#FDECEC;
    color:#C62828;
}

@media(max-width:768px){

    .jprs-alert-card{
        flex-direction:column;
    }

}
.jprs-alert-icon span{
    font-size:24px;
    line-height:1;
}