.js-section{
    margin:35px 0;
}

.section-header{
    margin-bottom:20px;
}

.section-header h3{
    font-size:26px;
    font-weight:700;
    margin:0;
}

.js-quick-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
}

.js-action-card{
    background:#fff;
    border-radius:18px;
    padding:25px;
    text-decoration:none;
    color:#333;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.25s;
    border:1px solid #eee;
}

.js-action-card:hover{
    transform:translateY(-5px);
    border-color:#d71920;
}

.js-action-card i{
    font-size:34px;
    color:#d71920;
    margin-bottom:15px;
    display:block;
}

.js-action-card h4{
    margin:0 0 10px;
    font-size:18px;
}

.js-action-card p{
    margin:0;
    color:#777;
    font-size:14px;
}