.gra-reviews {
    max-width: 750px;
    margin: 40px auto;
    font-family: "Arial", sans-serif;
}

.cgr-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    padding: 20px 20px 20px 120px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 70%;
}

.cgr-profile-pic {
    position: absolute;
    top: -20px;
    left: -60px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 8px solid #f26522;
    background-color: #fff;
    overflow: hidden;
    box-shadow: 0 0 0 6px #f26522;
    z-index: 2;
}

.cgr-profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cgr-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-left: 40px;
}

.cgr-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.cgr-header strong {
    font-weight: 600;
    font-size: 15px;
    margin-right: 5px;
}

.cgr-date {
    font-size: 15px;
    color: #777;
}

.cgr-text {
    font-size: 15px;
    color: #333;
}

.cgr-stars {
    display: flex;
    justify-content: flex-end;
    font-size: 20px;
    color: #FFC107;
    margin-top: 10px;
}

.cgr-meta {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #888;
    gap: 5px;
    margin-top: 5px;
}

.cgr-meta svg {
    width: 16px;
    height: 16px;
    fill: #ccc;
}

.cgr-username {
    margin-right: 5px;
}