.sp-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.sp-rating {
    display: flex;
    align-items: center;
    gap: 14px;
}

.sp-score {
    font-family: var(--font-family-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--ink);
    line-height: 1;
}

.sp-stars {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sp-stars-row {
    position: relative;
    display: block;
    font-size: 20px;
    letter-spacing: 3px;
    line-height: 1;
    height: 20px;
}

.sp-stars-empty,
.sp-stars-filled {
    position: absolute;
    top: 0;
    left: 0;
}

.sp-stars-empty {
    color: #c4bdb0;
}

.sp-stars-filled {
    color: var(--gold);
    white-space: nowrap;
}

.sp-stars-label {
    display: block;
    font-family: var(--font-family-body);
    font-size: .75rem;
    line-height: 1.25;
    color: var(--text-soft);
    font-weight: 500;
}

.sp-stat {
    text-align: center;
}

.sp-stat-num {
    font-family: var(--font-family-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--ink);
}

.sp-stat-label {
    display: block;
    font-family: var(--font-family-body);
    font-size: .75rem;
    line-height: 1.25;
    color: var(--text-soft);
    margin-top: 2px;
}

.sp-divider {
    width: 1px;
    height: 40px;
    background: var(--sand);
}

@media (max-width: 991px) {
    .sp-top {
        gap: 24px;
        justify-content: center;
        text-align: center;
    }

    .sp-divider {
        display: none;
    }
}
