/* =========================================
   HOME PAGE REVIEWS TEASER
   Shows the 3 most recent reviews (see getRecentReviews() in
   js/data/reviews.js, rendered by js/app.js) with a link through to the
   full reviews.html. Deliberately restrained — smaller and quieter than
   the review-card style on reviews.html itself (no product tag, no
   read-more, tighter clamp) so it doesn't compete with the rest of the
   home page for attention.
   ========================================= */
.reviews-teaser-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.reviews-teaser-card {
    background: transparent; border: 1px solid var(--border-light); border-radius: 12px;
    padding: 28px; transition: 0.3s;
}
.reviews-teaser-card:hover { border-color: var(--accent-gold); transform: translateY(-4px); }

.rtc-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.rtc-avatar {
    width: 38px; height: 38px; flex-shrink: 0; background: #151515; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 500;
    color: var(--accent-gold); border: 1px solid var(--border-light); overflow: hidden;
}
.rtc-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }
.rtc-name-col { display: flex; flex-direction: column; min-width: 0; }
.rtc-name { color: #fff; font-weight: 500; font-size: 14px; }
.rtc-stars { color: var(--accent-gold); font-size: 11px; margin-top: 2px; letter-spacing: 1px; }

.rtc-text {
    color: #999; font-size: 14px; line-height: 1.65;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}

.reviews-teaser-cta { text-align: right; margin-top: 40px; }
.reviews-teaser-link {
    display: inline-flex; align-items: center; gap: 10px; color: var(--accent-gold);
    font-size: 13px; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; transition: 0.3s;
}
.reviews-teaser-link i { transition: transform 0.3s; }
.reviews-teaser-link:hover { color: #fff; }
.reviews-teaser-link:hover i { transform: translateX(4px); }

@media (max-width: 1024px) {
    .reviews-teaser-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .reviews-teaser-grid { grid-template-columns: 1fr; gap: 16px; }
    .reviews-teaser-card { padding: 22px; }
}
