/* ==========================================================
   QUICK LINKS
========================================================== */

.home-quick-links{
    padding:100px 0;
    background:#fff;
}

/* Grid */

.quick-links-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* Card */

.quick-card{
    background:#fff;
    border:1px solid #ececec;
    border-radius:20px;
    padding:40px 35px;
    text-decoration:none;
    color:#222;
    box-shadow:0 10px 30px rgba(0,0,0,.06);

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.quick-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.12);
}

/* Icon */

.quick-icon{
    width:70px;
    height:70px;

    display:flex;
    justify-content:center;
    align-items:center;

    margin-bottom:25px;

    border-radius:18px;

    background:#7B1113;
    color:#fff;

    font-size:2rem;
}

/* Typography */

.quick-card h3{
    margin-bottom:15px;
    font-size:1.5rem;
    color:#111;
}

.quick-card p{
    color:#666;
    line-height:1.8;
    margin-bottom:30px;
}

.quick-card span{
    color:#7B1113;
    font-weight:600;
    transition:letter-spacing .3s ease;
}

.quick-card:hover span{
    letter-spacing:.05em;
}