
.rotator{
    color: #222;
    margin-top: 40px;
    margin-bottom: 40px;
}
.rotator__title{
    color: #343435;
    font-family: "Commissioner", sans-serif;
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 40px;
    line-height: 30px;
}
.rotator_item-ancor{
    font-family: "Commissioner", sans-serif;
    color: #222;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    line-height: 17px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;

}
.rotator_items{
    display: flex;
    flex-wrap:wrap;
    gap: 8px;
}
.rotator__link{
    display: flex;
    padding:16px;
    font-size: 15px;
    border-radius: 4px;
    border: 1px solid #EEE;
    background: #FFF;
    color: #333;
    font-weight: 500;
    flex-basis:24.5%;
    align-items:center;
    overflow:hidden;
    min-height:83px;
    max-height:86px;
}
.rotator.rotator--mobile{
    margin-top: 40px;
}
.rotator_item-img{
    width: 50px;
    height: 50px;
    border-radius: 8px;
    margin:0;
    margin-right: 12px;
    object-fit:cover;
}

@media(max-width: 992px){
    .rotator__link{
        flex-basis:32%;
    }
    /*.rotator__link{*/
    /*    flex-basis:100%;*/
    /*}*/
    /*.rotator_items{*/
    /*    flex-direction:column;*/
    /*}*/
}
@media(max-width: 768px){
    .rotator__link{
        flex-basis:49%;
    }
}

@media(max-width: 600px){
    .rotator__link{
        flex-basis:100%;
    }
}