.sdmlib-grid{

    display:grid;
    
    grid-template-columns:repeat(auto-fill,minmax(320px,1fr));
    
    gap:30px;
    
    }
    
    .sdmlib-card{
    
    padding:25px;
    
    border:1px solid #ddd;
    
    border-radius:10px;
    
    background:#FFF;
    
    }
    .sdmlib-card{

        display:flex;
        
        flex-direction:column;
        
        padding:25px;
        
        border-radius:14px;
        
        border:1px solid #E5E5E5;
        
        background:#FFF;
        
        transition:.25s;
        
        }
        
        .sdmlib-card:hover{
        
        transform:translateY(-4px);
        
        box-shadow:0 10px 25px rgba(0,0,0,.10);
        
        }
        
        .sdmlib-icon{
        
        width:64px;
        
        height:64px;
        
        border-radius:10px;
        
        display:flex;
        
        align-items:center;
        
        justify-content:center;
        
        font-weight:bold;
        
        font-size:18px;
        
        color:#FFF;
        
        margin-bottom:20px;
        
        }
        
        .sdmlib-card h3{
        
        font-size:20px;
        
        margin-bottom:15px;
        
        }
        
        .sdmlib-description{
        
        flex:1;
        
        color:#666;
        
        line-height:1.6;
        
        margin-bottom:20px;
        
        }
        
        .sdmlib-meta{
        
        display:flex;
        
        justify-content:space-between;
        
        font-size:14px;
        
        color:#666;
        
        margin-bottom:20px;
        
        }
        
        .sdmlib-download{
        
        display:block;
        
        text-align:center;
        
        padding:14px;
        
        border-radius:8px;
        
        background:#0057D9;
        
        color:#FFF;
        
        text-decoration:none;
        
        font-weight:bold;
        
        }
        
        .sdmlib-download:hover{
        
        background:#0046AE;
        
        }
        .sdmlib-header{

            display:flex;
            
            align-items:center;
            
            justify-content:space-between;
            
            margin-bottom:20px;
            
            }
            
            .sdmlib-icon{
            
            width:70px;
            
            height:70px;
            
            border-radius:12px;
            
            display:flex;
            
            align-items:center;
            
            justify-content:center;
            
            }
            
            .sdmlib-icon img{
            
            width:42px;
            
            height:42px;
            
            }
            
            .sdmlib-badge{
            
            padding:6px 14px;
            
            border-radius:30px;
            
            color:#FFF;
            
            font-weight:600;
            
            font-size:12px;
            
            letter-spacing:.05em;
            
            text-transform:uppercase;
            
            }