.ff-grid-d27eb48e {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    align-items: center;
}
.ff-card-d27eb48e {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ff-card-d27eb48e:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.ff-icon-d27eb48e {
    font-size: 32px;
    color: #0b2d6a;
    margin-bottom: 15px;
}
.ff-icon-d27eb48e svg {
    width: 32px;
    height: 32px;
    fill: #0b2d6a;
}
.ff-title-d27eb48e {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #111;
}