.company-list-item {
    margin-top: 15px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 15px;
}
.company-list-item .item-flex {
    display: flex;
    flex-direction: column;
}
.company-list-item .item-person {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.company-list-item .item-image {
    margin-right:10px;
    border: 2px solid transparent;
    width:60px;
    height:60px;
}
.company-list-item .item-image img {
    width:60px;
    height:60px;
    max-width:60px;
    border-radius:5px;
}
.company-list-item .item-company {
    text-transform:uppercase;
    color:#333;
    font-weight:600;
}
.company-list-item .item-post {
    color:#bababa;
    font-size:13px;
    margin-bottom: 10px;
}
.company-list-item .item-btn {
    margin-top: auto;
    background-color: #5db5da !important;
    color: #fff !important;
}
.company-list-item .item-btn:hover {
    background-color: #f39324 !important;
}

/* скрываем баннер у компании Hosted Buyers */
#company_view>.info-alert {
    display: none;
}

@media screen and (max-width: 1400px){
    .company-list-item {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media screen and (max-width: 992px){
    .company-list-item {
        grid-template-columns: 1fr 1fr;
    }
    .company-list-item .item-image {
        width:45px;
        height:45px;
    }
    .company-list-item .item-image img {
        width:45px;
        height:45px;
        max-width:45px;
    }
}