/* Grid Layout */

.fv-landing-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(220px,1fr));
    gap:20px;
    margin-top:20px;
}


/* Kachel */

.fv-landing-card{
    display:block;
    text-decoration:none;
    background:#ffffff;
    border-radius:14px;
    padding:22px;
    color:#1d2327;

    box-shadow:0 4px 10px rgba(0,0,0,0.06);
    transition:all .2s ease;

    border:1px solid #e5e7eb;
}


/* Hover Effekt */

.fv-landing-card:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 22px rgba(0,0,0,0.12);
}


/* Inhalt */

.fv-card-inner{
    text-align:center;
}


/* Icon */

.fv-card-icon{
    display:block;
    font-size:36px;
    line-height:1;
    margin-bottom:10px;
}

.fv-card-icon.dashicons{
    font-size:36px;
}


/* Titel */

.fv-landing-card h3{
    margin:8px 0 4px;
    font-size:17px;
    font-weight:600;
}


/* Beschreibung */

.fv-landing-card p{
    margin:0;
    font-size:13px;
    opacity:.75;
}


/* kleine Bildschirme */

@media (max-width:600px){

    .fv-landing-grid{
        grid-template-columns:repeat(auto-fill,minmax(160px,1fr));
        gap:14px;
    }

    .fv-landing-card{
        padding:16px;
    }

    .fv-card-icon{
        font-size:28px;
    }

}