#review-of-parking {
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(212, 215, 222, .7);
}

.rating-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.rating-score-block {
    display: flex;
    align-items: baseline;
}

.rating-score-number {
    font-weight: 700;
    line-height: 1;
    font-size: 2.2rem;
    color: #333;
}

.rating-score-total {
    color: #6b7280;
    font-weight: 500;
}

.rating-label-badge {
    background-color: #333333;
    color: #fff;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 8px 8px 8px 0px;
}

.rating-count-link {
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.section-title {
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 14px 0;
}

.review-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.review-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 14px 16px;
}

.review-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.reviewer-name {
    font-weight: 700;
    color: #1a1a2e;
}

.reviewer-score {
    font-weight: 700;
    color: #1a1a2e;
}

.reviewer-score span {
    color: #6b7280;
    font-weight: 400;
}

.review-stars {
    display: flex;
    gap: 3px;
}

.review-stars .fa-star {
    color: #ed8323;
}

.review-stars .fa-star-o {
    color: #ed8323;
}

.review-title {
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 4px 0;
}

.review-body {
    color: #4b5563;
    line-height: 1.55;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-date {
    font-size: 0.8em;
    color: #9ca3af;
    line-height: normal;
}

.btn-show-all-reviews {
    display: block;
    width: 100%;
    margin-top: 8px;
    padding: 8px;
    background: #fff;
    border: 1.5px solid #ed8323;
    border-radius: 8px;
    color: #ed8323;
    font-size: 0.9em;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.btn-show-all-reviews:hover {
    background: #ed8323;
    color: #fff;
}

.modal-review-header {
    color: #fff;
    padding: 16px 20px;
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-review-title {
    font-weight: 700;
    margin: 0;
}

.modal-review-body {
    padding: 16px;
    max-height: 84dvh;
    overflow-y: auto;
}

.modal-review-body .review-list {
    gap: 10px;
}

@media (max-width: 470px){
    .modal-review-body {
        max-height: 64dvh;
    }
}