/* ═══════════════════════════════════════════════════════════
   Kanzlei Kämpf – Google Bewertungen Widget
   Stil: Professionell, vertrauenswürdig, dezent elegant
   ═══════════════════════════════════════════════════════════ */

/* Wrapper */
.kaempf-reviews-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-family: 'Georgia', 'Times New Roman', serif;
}

/* Einzelne Bewertungskarte */
.kaempf-review {
    background: #ffffff;
    border: 1px solid #e8e0d5;
    border-left: 3px solid #9a7c4f;  /* Goldakzent – Kanzlei-Ton */
    border-radius: 4px;
    padding: 14px 16px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    transition: box-shadow 0.2s ease;
}

.kaempf-review:hover {
    box-shadow: 0 3px 10px rgba(0,0,0,0.10);
}

/* Header: Avatar + Name */
.kaempf-review-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.kaempf-review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid #ddd;
}

/* Platzhalter-Avatar (wenn kein Foto vorhanden) */
.kaempf-avatar-placeholder {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #9a7c4f;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: bold;
    flex-shrink: 0;
    text-transform: uppercase;
}

.kaempf-review-meta {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.kaempf-review-author {
    font-size: 13px;
    font-weight: bold;
    color: #1a1a1a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: 'Arial', sans-serif;
}

.kaempf-review-time {
    font-size: 11px;
    color: #888;
    font-family: 'Arial', sans-serif;
}

/* Sterne */
.kaempf-review-stars {
    display: flex;
    gap: 1px;
    margin-bottom: 8px;
}

.kaempf-star {
    color: #f5a623;
    font-size: 15px;
    line-height: 1;
}

/* Bewertungstext */
.kaempf-review-text {
    font-size: 13px;
    line-height: 1.6;
    color: #333;
    margin: 0 0 10px 0;
    font-style: italic;
    word-break: break-word;
}

/* Google-Link */
.kaempf-review-link {
    display: inline-block;
    font-size: 11px;
    color: #9a7c4f;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    border-bottom: 1px dotted #9a7c4f;
    transition: color 0.2s;
}

.kaempf-review-link:hover {
    color: #6d5635;
    border-bottom-color: #6d5635;
}

/* CTA-Block */
.kaempf-reviews-cta {
    text-align: center;
    margin-top: 4px;
}

.kaempf-cta-btn {
    display: inline-block;
    background: #9a7c4f;
    color: #ffffff !important;
    text-decoration: none;
    font-size: 12px;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    padding: 9px 16px;
    border-radius: 3px;
    letter-spacing: 0.3px;
    transition: background 0.2s ease;
}

.kaempf-cta-btn:hover {
    background: #7a6240;
    color: #ffffff !important;
}

/* Responsiv */
@media (max-width: 480px) {
    .kaempf-review {
        padding: 12px 13px;
    }
    .kaempf-review-text {
        font-size: 12.5px;
    }
}
