.localseo-reviews-full {
    --localseo-full-background: #ffffff;
    --localseo-full-border: #e5e7eb;
    background: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 26px 28px;
    display: block;
}

.localseo-reviews-full__grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.localseo-reviews-card {
    position: relative;
    background: var(--localseo-full-background);
    border: 1px solid var(--localseo-full-border);
    border-radius: 14px;
    padding: 28px 26px 22px 26px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.04);
}

.localseo-reviews-card__date {
    position: absolute;
    top: 14px;
    right: 16px;
    font-size: 13px;
    color: #6b7280;
    white-space: nowrap;
    background: #66666617;
    border-radius: 10px;
    padding: 2px 10px;
}

.localseo-reviews-card__header {
    display: flex;
    gap: 16px;
    align-items: center;
}

.localseo-reviews-card__avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 22px;
}

.localseo-reviews-full__meta {
    display: flex;
    flex-direction: column;
    min-width: 0;
    width: 100%;
    gap: 4px;
}

.localseo-reviews-card__stars {
    font-size: 16px;
    color: #f59e0b;
    white-space: nowrap;
}

.localseo-reviews-full__author {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 90%;
}

.localseo-reviews-card__text {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #1f2937;
}

.localseo-reviews-full .localseo-star {
    color: rgba(17, 24, 39, 0.2);
}

.localseo-reviews-full .localseo-star.is-filled {
    color: var(--localseo-minimal-accent, #f59e0b);
}

@media (max-width: 640px) {
    .localseo-reviews-full {
        padding: 20px;
    }

    .localseo-reviews-full__grid {
        grid-template-columns: 1fr;
    }

    .localseo-reviews-card {
        padding: 28px 18px 18px 18px;
    }

    .localseo-reviews-full__author {
        font-size: 16px;
        max-width: 100%;
    }

    .localseo-reviews-card__date {
        font-size: 12px;
    }
}
