.product-featured-elements {
    margin: 22px 0;
}

.product-featured-elements__list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.product-featured-elements__item,
.product-featured-elements__item figure {
    min-width: 0;
    margin: 0;
}

.product-featured-elements__item img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}

.product-featured-elements__item figcaption {
    margin-top: 8px;
    color: inherit;
    font-size: 13px;
    line-height: 1.35;
    text-align: center;
    overflow-wrap: anywhere;
}

@media (max-width: 991px) {
    .product-featured-elements__list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 479px) {
    .product-featured-elements__list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px 10px;
    }

    .product-featured-elements__item img {
        width: 96px;
        max-width: 100%;
        margin: 0 auto;
    }

    .product-featured-elements__item figcaption {
        display: -webkit-box;
        margin-top: 6px;
        font-size: 11px;
        line-height: 1.3;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }
}
