.sg-f881d661-wrapper {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .sg-f881d661-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .sg-f881d661-wrapper {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sg-f881d661-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
}

.sg-f881d661-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.sg-f881d661-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    margin-bottom: 20px;
    background-color: #f0f4f8;
}

.sg-f881d661-icon-wrap svg {
    width: 24px;
    height: 24px;
    fill: #333;
}

.sg-f881d661-icon-wrap i {
    font-size: 24px;
    color: #333;
}

.sg-f881d661-title {
    margin: 0 0 10px 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #111;
}

.sg-f881d661-subtitle {
    margin: 0;
    font-size: 0.95rem;
    color: #555;
}