.mgr-review-image {
    float: right;
    max-width: 300px;
    width: 35%;
    margin: 0 0 1em 1.5em;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.mgr-review-image img {
    display: block;
    width: 100%;
    height: auto;
}

.mgr-review-card::after {
    content: '';
    display: table;
    clear: both;
}

.mgr-reviews {
    max-width: 960px;
    margin: 2em auto;
}

.mgr-review-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 1.5em;
    margin-bottom: 1.5em;
}

.mgr-reviews--single .mgr-review-card {
    background: #fffbeb;
    border-color: #fcd34d;
}

.mgr-review-stars {
    color: #f59e0b;
    font-size: 1.3em;
    margin-bottom: 0.5em;
    letter-spacing: 0.1em;
}

.mgr-review-content {
    font-size: 1em;
    line-height: 1.6;
    color: #334155;
    margin-bottom: 0.75em;
    font-style: italic;
}

.mgr-review-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5em;
    align-items: baseline;
    font-size: 0.9em;
}

.mgr-review-name {
    font-weight: 700;
    color: #1e293b;
}

.mgr-review-detail {
    color: #64748b;
}

/* Horizontal strip (multiple random reviews) */
.mgr-reviews--strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.2em;
}

.mgr-reviews--strip .mgr-review-card {
    margin-bottom: 0;
}

.mgr-reviews--strip .mgr-review-image {
    float: none;
    width: 100%;
    max-width: 100%;
    margin: 0 0 1em 0;
}

@media (max-width: 600px) {
    .mgr-review-card {
        padding: 1em;
    }

    .mgr-review-image {
        float: none;
        width: 100%;
        max-width: 100%;
        margin: 0 0 1em 0;
    }

    .mgr-review-meta {
        flex-direction: column;
        gap: 0.2em;
    }
}
