/* ============================================
   SHAPE-FEATURE-GRID.CSS
   ============================================ */

.comp-sfg-wrap {
    display: flex;
    flex-direction: row;
    gap: 14px;
    width: 100%;
}

.comp-sfg-cell {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding: 18px 10px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(8px);
    text-align: center;
    min-height: 100px;
}

.comp-sfg-icon {
    font-size: 26px;
    line-height: 1;
    filter: drop-shadow(0 0 6px currentColor);
}

.comp-sfg-title {
    font-family: 'Inter', 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.3;
    letter-spacing: 0.2px;
}

.comp-sfg-sub {
    font-family: 'Inter', 'Roboto', sans-serif;
    font-size: 10px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.4;
}