.gdl-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:25px;

    margin:30px 0;

}

.gdl-card{

    background:#fff;

    border:1px solid #E5E7EB;

    border-radius:14px;

    padding:25px;

    box-shadow:0 4px 15px rgba(0,0,0,.08);

    transition:.3s;

}

.gdl-card:hover{

    transform:translateY(-5px);

    box-shadow:0 12px 25px rgba(0,0,0,.15);

}

.gdl-icon{

    width:60px;

    height:60px;

    border-radius:12px;

    background:#EEF4FF;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    margin-bottom:15px;

}

.gdl-card h3{

    margin:0 0 15px;

    color:#1E3A8A;

}

.gdl-card p{

    color:#666;

    line-height:1.6;

}

.gdl-button{

    display:inline-block;

    margin-top:20px;

    padding:12px 18px;

    background:#2563EB;

    color:#FFF !important;

    text-decoration:none;

    border-radius:8px;

    font-weight:bold;

}

.gdl-button:hover{

    background:#1D4ED8;

}


.gdl-toolbar{
    margin:25px 0;
}

.gdl-search{
    width:100%;
    padding:14px 18px;
    font-size:16px;
    border:1px solid #ddd;
    border-radius:10px;
    outline:none;
}

.gdl-search:focus{
    border-color:#2563EB;
    box-shadow:0 0 0 4px rgba(37,99,235,.15);
}

.gdl-toolbar{
    display:flex;
    gap:15px;
    align-items:center;
    margin:25px 0;
    flex-wrap:wrap;
}

.gdl-search{
    flex:1;
    min-width:260px;
    padding:14px 18px;
    font-size:16px;
    border:1px solid #ddd;
    border-radius:10px;
    outline:none;
}

.gdl-select{
    width:220px;
    padding:14px;
    font-size:16px;
    border:1px solid #ddd;
    border-radius:10px;
    background:#fff;
}

.gdl-search:focus,
.gdl-select:focus{
    border-color:#2563EB;
    box-shadow:0 0 0 4px rgba(37,99,235,.15);
}

.gdl-no-results{

    display:none;

    text-align:center;

    padding:40px;

    margin:30px 0;

    border:2px dashed #CBD5E1;

    border-radius:12px;

    background:#F8FAFC;

    color:#64748B;

    font-size:18px;

}

.gdl-title{
    margin-bottom:8px;
}

.gdl-subtitle{
    margin-bottom:30px;
    color:#666;
    font-size:16px;
}

.gdl-card{
    position:relative;
}

.gdl-card-highlighted{
    border:2px solid #F59E0B;
    background:#FFFBEB;
}

.gdl-highlight-badge{
    position:absolute;
    top:15px;
    right:15px;
    padding:6px 10px;
    border-radius:999px;
    background:#F59E0B;
    color:#fff;
    font-size:12px;
    font-weight:700;
}