.nps-meter {
    display: flex;
    width: fit-content;
    margin-inline: auto;
    align-items: flex-start;
    gap: 20px;
    padding: 10px 30px;
    border: 1.5px solid #e0e0e0;
    border-radius: 999px;
    background: #fff;
    margin-bottom: 40px;
}

.nps-meter__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nps-meter__label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #888;
}

.nps-meter__body {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nps-meter__dot {
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.nps-meter__description {
    font-size: 16px;
    color: #222;
}

.nps-meter__score {
    font-size: 32px;
    font-weight: 700;
    color: #111;
    line-height: 1;
    align-self: flex-end;
}

@media (max-width: 576px) {
    .nps-meter {
        margin-bottom: 30px;
    }
}
