/* AQS Reputation Manager - Frontend Styles */

.aqsrep-frontend-wrapper {
    width: 100%;
    margin: 30px 0;
    font-family: inherit;
}

.aqsrep-frontend-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.aqsrep-fe-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 22px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: box-shadow 0.25s, transform 0.25s;
}
.aqsrep-fe-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.aqsrep-fe-source-badge {
    display: inline-block;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.aqsrep-fe-stars {
    margin-bottom: 12px;
}
.aqsrep-fe-stars .star.full  { color: #f59e0b; font-size: 18px; }
.aqsrep-fe-stars .star.half  { color: #f59e0b; font-size: 18px; opacity: 0.6; }
.aqsrep-fe-stars .star.empty { color: #d1d5db; font-size: 18px; }

.aqsrep-fe-text {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.65;
    font-style: italic;
    margin: 0 0 16px 0;
}

.aqsrep-fe-author {
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid #f3f4f6;
    padding-top: 12px;
    font-size: 13px;
    font-weight: 600;
    color: #111827;
}

.aqsrep-fe-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #2563eb;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .aqsrep-frontend-grid {
        grid-template-columns: 1fr;
    }
}
