/* =========================
   RESOURCE GROUPING
========================= */

.vl-resource-wrapper{
max-width:1200px;
margin:40px auto;
}

.vl-resource-group{
margin-bottom:50px;
}

.vl-resource-heading{
font-size:20px;
font-weight:600;
margin-bottom:18px;
padding-bottom:6px;
border-bottom:1px solid #eee;
}

/* optional: make resource cards tighter */
.vl-resource-group .vl-card{
padding:16px;
}

.vl-grid{
display:grid;
grid-template-columns:repeat(auto-fill,minmax(320px,1fr));
gap:22px;
max-width:1200px;
margin:40px auto;
font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
}

.vl-card{
display:block;
padding:20px;
border:1px solid #e6e6e6;
border-radius:8px;
background:#fff;
text-decoration:none;
color:#111;
transition:.15s ease;
}

.vl-card:hover{
box-shadow:0 8px 18px rgba(0,0,0,.08);
transform:translateY(-2px);
}

.vl-type{
font-size:11px;
font-weight:700;
text-transform:uppercase;
letter-spacing:.05em;
color:#a229ce;
margin-bottom:6px;
}

.vl-title{
font-size:17px;
font-weight:600;
line-height:1.35;
margin-bottom:8px;
}

.vl-excerpt{
font-size:14px;
color:#555;
line-height:1.45;
}

.vl-load{
display:block;
margin:40px auto 0;
padding:10px 18px;
background:#a229ce;
color:#fff;
border:none;
border-radius:6px;
font-size:14px;
cursor:pointer;
}

.vl-load:hover{
background:#a229ce;
}