.indra-product-promoted-features {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8rem;
    text-align: center;
    margin: 1rem 0;
}

.promoted-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 80px;
    padding: 0.75rem 0.25rem;
}

.promoted-feature img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    object-position: center center;
}

@media (max-width: 767px) {
    .indra-product-promoted-features {
        justify-content: stretch;
    }

    .promoted-feature {
        width: calc(50% - 0.5rem);
        height: 120px;
        background: #f2f5f6;
        border-radius: 12px;
    }
}