/* Feature icons single line fix */
.hero-features {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: space-evenly !important;
    width: 100% !important;
    max-width: 600px !important;
    margin: 20px auto !important;
    padding: 0 !important;
    gap: 5px !important;
}

.feature-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 25% !important;
    max-width: 25% !important;
    flex: 1 !important;
    padding: 0 5px !important;
}

.feature-icon {
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 6px !important;
}

.feature-label {
    font-size: 0.9rem !important;
    text-align: center !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    width: 100% !important;
}

/* Mobile optimizations */
@media (max-width: 767px) {
    .feature-icon {
        width: 36px !important;
        height: 36px !important;
    }
    
    .feature-icon svg {
        width: 18px !important;
        height: 18px !important;
    }
    
    .feature-label {
        font-size: 0.75rem !important;
    }
}

/* Extra small screens */
@media (max-width: 359px) {
    .feature-icon {
        width: 32px !important;
        height: 32px !important;
    }
    
    .feature-icon svg {
        width: 16px !important;
        height: 16px !important;
    }
    
    .feature-label {
        font-size: 0.7rem !important;
    }
}
