.bbc-product-feature-icons {
    margin-bottom: 1rem;
}
.bbc-product-feature-icons-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.bbc-feature-icon {
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    text-align: center;
    max-width: 67px;
}
.bbc-feature-icon-image {
    width: 67px;
    height: 67px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.bbc-feature-icon-label {
    font-size: 12px;
    line-height: 16px;
    color: var(--bbc-dark-brown);
}

@media (min-width: 768px) and (max-width: 991px) {
    .bbc-feature-icon-image {
        width: 51px;
        height: 51px;
    }
    .bbc-feature-icon-label {
        font-size: 11px;
        line-height: 15px;
    }
}

@media (max-width: 353px) {
    .bbc-feature-icon-image {
        width: 44px;
        height: 44px;
    }
    .bbc-feature-icon-label {
        font-size: 10px;
        line-height: 14px;
    }
}