
.brlmp-v4-wrap{
    margin:20px 0 22px;
    padding:18px;
    border:1px solid #dbe5f3;
    border-radius:14px;
    background:#f8fbff;
}
.brlmp-v4-wrap h3{
    margin:0 0 14px;
    font-size:18px;
    color:#0c1f44;
}
.brlmp-v4-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:10px;
}
.brlmp-v4-card{
    position:relative;
    display:flex;
    flex-direction:column;
    gap:4px;
    padding:14px;
    border:2px solid #dce5f2;
    border-radius:12px;
    background:#fff;
    cursor:pointer;
    transition:.18s ease;
}
.brlmp-v4-card:hover{
    border-color:#79a9ff;
    transform:translateY(-1px);
}
.brlmp-v4-card.is-selected{
    border-color:#1769ff;
    box-shadow:0 0 0 3px rgba(23,105,255,.10);
}
.brlmp-v4-card input{
    position:absolute;
    opacity:0;
    pointer-events:none;
}
.brlmp-v4-card-title{
    font-weight:800;
    color:#0e1c36;
}
.brlmp-v4-card-price{
    font-size:20px;
    font-weight:800;
    color:#1769ff;
}
.brlmp-v4-card-desc{
    color:#617087;
    font-size:13px;
}
@media(max-width:600px){
    .brlmp-v4-grid{grid-template-columns:1fr}
}
