.artist-geo-box{
    margin-top:14px;
    padding:14px;
    border-radius:16px;
    background:#f3f3f375;
    color:#111;
}

.artist-geo-box__title{
    font-family:GothamProBold, Arial, sans-serif;
    font-size:15px;
    line-height:1.1;
    margin-bottom:10px;
    color:#111;
}

.artist-geo-box__list{
    display:block;
}

.artist-geo-box__item{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    padding:16px 0;
    border-bottom:1px solid rgba(0,0,0,.08);
}

.artist-geo-box__item:last-child{
    border-bottom:none;
}

.artist-geo-box__left{
    display:flex;
    align-items:center;
    gap:14px;
    min-width:0;
}

.artist-geo-box__rank{
    font-family:GothamProBold, Arial, sans-serif;
    font-size:15px;
    line-height:1;
    color:#111;
    min-width:18px;
}

.artist-geo-box__country{
    font-size:15px;
    line-height:1.2;
    color:#111;
    word-break:break-word;
}

.artist-geo-box__right{
    display:flex;
    align-items:center;
    gap:10px;
    flex-shrink:0;
}

.artist-geo-box__count{
    font-size:15px;
    line-height:1;
    color:#8e8e93;
    font-family:GothamProRegular, Arial, sans-serif;
}

.artist-geo-box__change{
    font-size:15px;
    line-height:1;
    font-family:GothamProBold, Arial, sans-serif;
}

.artist-geo-box__change--up{
    color:#1e9e57;
}

.artist-geo-box__change--down{
    color:#d14b4b;
}

.artist-geo-box__change--same{
    color:#888;
}

.artist-geo-box__note{
    margin-top:10px;
    font-size:13px;
    color:#7d7d7d;
}

@media (max-width:768px){
    .artist-geo-box{
        padding:12px;
        border-radius:14px;
    }

    .artist-geo-box__title{
        font-size:18px;
        margin-bottom:8px;
    }

    .artist-geo-box__item{
        padding:13px 0;
    }

    .artist-geo-box__left{
        gap:10px;
    }

    .artist-geo-box__rank{
        font-size:15px;
        min-width:16px;
    }

    .artist-geo-box__country{
        font-size:15px;
    }

    .artist-geo-box__count{
        font-size:15px;
    }

    .artist-geo-box__change{
        font-size:12px;
    }

    .artist-geo-box__note{
        font-size:12px;
    }
}