/* =========================================================
   Testimoni Pasien
========================================================= */

.pku-testimoni-wrapper {
    width: 100%;
}

.pku-testimoni-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.pku-testimoni-card {
    min-width: 0;
    box-sizing: border-box;
    padding: 27px 24px 28px;
    background: #f4f5f6;
    color: #102a50;
}

.pku-testimoni-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pku-testimoni-photo {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    overflow: hidden;
    border-radius: 50%;
    background: #d9d9d9;
}

.pku-testimoni-photo img,
.pku-testimoni-photo-placeholder {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pku-testimoni-photo-placeholder {
    background: #d9d9d9;
}

.pku-testimoni-person {
    min-width: 0;
}

.pku-testimoni-name {
    margin: 0;
    color: #061C3D;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25;
}

.pku-testimoni-occupation {
    margin-top: 3px;
    color: #42526B;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.35;
}

.pku-testimoni-rating {
    display: flex;
    align-items: center;
    gap: 1px;
    margin-top: 18px;
    color: #a9bf00;
    font-size: 22px;
    line-height: 1;
    letter-spacing: 0;
}

.pku-testimoni-rating .is-empty {
    color: #d5d9de;
}

.pku-testimoni-review {
    margin-top: 16px;
    color: #061C3D;
    font-size: 15px;
    font-weight: 450;
    line-height: 1.5;
}

.pku-testimoni-empty {
    margin: 20px 0;
    color: #777b90;
}

/* =========================================================
   Admin Rating Picker
========================================================= */

.pku-testimoni-rating-picker {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.pku-testimoni-rating-picker label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    cursor: pointer;
}

.pku-testimoni-rating-picker input {
    margin: 0;
}

.pku-testimoni-rating-picker span {
    color: #a9bf00;
    font-size: 20px;
    line-height: 1;
}

.pku-testimoni-rating-picker small {
    color: #777;
    font-size: 12px;
}

@media (max-width: 991px) {
    .pku-testimoni-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .pku-testimoni-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .pku-testimoni-card {
        padding: 23px 20px 24px;
    }
}
