/* Desert Bloom Reviews — Styles */

.dbr-reviews {
    margin: 48px 0;
    font-family: inherit;
}

.dbr-reviews__title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-align: center;
    color: inherit;
}

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

.dbr-reviews__card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.2s ease;
}

.dbr-reviews__card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
}

.dbr-reviews__header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.dbr-reviews__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.dbr-reviews__avatar--placeholder {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #c8a882;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    flex-shrink: 0;
}

.dbr-reviews__author-info {
    flex: 1;
    min-width: 0;
}

.dbr-reviews__author {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #222;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dbr-reviews__stars {
    margin-top: 3px;
    font-size: 1rem;
    letter-spacing: 1px;
}

.dbr-reviews__star {
    color: #ddd;
}

.dbr-reviews__star--filled {
    color: #f5a623;
}

.dbr-reviews__time {
    font-size: 0.78rem;
    color: #999;
    margin-left: auto;
    white-space: nowrap;
    padding-top: 2px;
}

.dbr-reviews__text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #444;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dbr-reviews__footer {
    text-align: center;
    margin-top: 24px;
}

.dbr-reviews__link {
    display: inline-flex;
    align-items: center;
    color: #4285F4;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.dbr-reviews__link:hover {
    color: #1a73e8;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
    .dbr-reviews__grid {
        grid-template-columns: 1fr;
    }
}
