.container--narrow {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 20px;
}

.reviews-hero {
    padding: 60px 0 20px;
    background: radial-gradient(100% 100% at 50% 0%, #ffffff 0%, #f3f4f6 100%);
}

.reviews-hero__actions {
    margin-top: 24px;
}

.reviews-list {
    padding: 40px 0 80px;
}

.feed {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feed-card {
    background-color: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.feed-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.feed-card__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.feed-card__avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    background-color: var(--color-bg-light);
    border: 1px solid var(--color-border);
}

.feed-card__meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.feed-card__name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-primary);
}

.feed-card__rating {
    color: #F59E0B;
    font-size: 0.875rem;
    letter-spacing: 2px;
    line-height: 1;
}

.feed-card__date {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.feed-card__attachments {
    margin: 16px 0;
    max-width: 280px;
    aspect-ratio: 3/4;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
}

.feed-card__attachment-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.feed-card__attachments:hover .feed-card__attachment-img {
    transform: scale(1.03);
}

.feed-card__text {
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.6;
    white-space: pre-wrap;
}

.feed-card__reply {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
    padding-left: 20px;
    border-left: 3px solid var(--color-border);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feed-card__reply-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feed-card__reply-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.feed-card__reply-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feed-card__reply-name {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--color-primary);
    line-height: 1.3;
}

.feed-card__reply-date {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.feed-card__reply-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--color-text);
    padding-left: 48px;
}

.reviews-cta__container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reviews-cta__title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.reviews-cta__text {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: 32px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .reviews-list {
        padding: 20px 0 60px;
    }

    .feed {
        gap: 24px;
    }

    .feed-card {
        padding: 20px;
    }
    
    .feed-card__reply {
        padding-left: 12px;
        margin-top: 16px;
        padding-top: 16px;
    }
    
    .feed-card__reply-text {
        padding-left: 0;
    }

    .feed-card__attachments {
        max-width: 100%;
        aspect-ratio: 4/5;
    }
}