/* ==========================================================
   SIGNATURE MENU
========================================================== */

.crusto-signature-menu{

    background:var(--secondary);

}

.crusto-menu-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:32px;

}

.crusto-menu-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    transition:.3s;

    box-shadow:0 8px 25px rgba(0,0,0,.05);

}

.crusto-menu-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.crusto-menu-image{

    width:100%;

    aspect-ratio:4/3;

    background:#ddd center center/cover no-repeat;

}

.crusto-menu-content{

    padding:28px;

}

.crusto-menu-content h3{

    font-size:1.8rem;

    margin-bottom:14px;

}

.crusto-menu-content p{

    margin-bottom:22px;

    font-size:.95rem;

    line-height:1.8;

}

.crusto-menu-link{

    display:inline-flex;

    align-items:center;

    gap:8px;

    color:var(--primary);

    font-weight:600;

    transition:.3s;

}

.crusto-menu-link:hover{

    color:var(--primary-dark);

    transform:translateX(6px);

}