.section--reviews-feed {
    padding: 60px 0;
    background: #fff;
    overflow: hidden;
}
.reviews-masonry-wrapper {
    column-count: 3;
    column-gap: 14px;
    width: 100%;
}
@media (max-width: 1024px) {
    .reviews-masonry-wrapper {
        column-count: 2;
        column-gap: 20px;
    }
}
@media (max-width: 767px) {
    .reviews-masonry-wrapper {
        column-count: 1;
        column-gap: 0;
    }
    .section--reviews-feed {
        padding: 40px 0;
    }
}
.review-brick {
    break-inside: avoid;
    margin-bottom: 20px;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 28px;
    display: flex;
    flex-direction: column;
}
@media (max-width: 767px) {
    .review-brick {
        padding: 20px;
    }
    .brick-product-name {
        font-size: 10px;
    }
    .brick-product-price {
        font-size: 15px;
    }
}
.brick-product {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}
.brick-product-thumb {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #f5f5f5;
}
.brick-product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.brick-product-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.brick-product-name {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #999;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.brick-product-price {
    font-size: 18px;
    font-weight: 800;
    color: #000;
}
.brick-product-price del {
    font-size: 13px;
    color: #ccc;
    font-weight: 400;
    margin-right: 12px;
    text-decoration: line-through;
}
.brick-product-price ins {
    text-decoration: none;
}
.brick-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 22px;
}
.brick-star {
    width: 20px;
    height: 20px;
    color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
}
.brick-star svg {
    width: 100%;
    height: 100%;
}
.brick-star.active {
    color: var(--color-primary);
}
.brick-content {
    margin-bottom: 25px;
}
.brick-title {
    font-size: 17px;
    font-weight: 800;
    color: #000;
    margin: 0 0 12px 0;
    line-height: 1.4;
}
.brick-text {
    font-size: 14px;
    line-height: 1.75;
    color: #444;
    margin: 0;
}
.brick-footer {
    display: flex;
    flex-direction: column;
}
.brick-author {
    font-size: 13px;
    font-weight: 700;
    color: #000;
}
.brick-role {
    font-size: 11px;
    color: #aaa;
    margin-top: 2px;
}
