.chathost {
    display: flex;
    background: #F8F8FE;
    padding: 20px;
}

.chathost .bs-card {
    box-shadow: none;
    background: #F8F8FE;
}

.chathost .bs-card:hover {
    box-shadow: none;
}

.chathost__info {
    font-family: 'Red Hat Display', serif;
    font-style: normal;
    margin-left: 20px;
}

.chathost__title {
    font-weight: 900;
    font-size: 16px;
    line-height: 21px;
    color: #2F2F32;
}

.chathost__description {
    font-weight: 600;
    font-size: 16px;
    line-height: 21px;
    color: #2F2F32;
    margin: 16px 0;
}

@media only screen and (max-width: 640px) {
    .chathost {
        flex-direction: column;
        padding: 0;
    }

    .chathost .bs-card {
        max-width: none;
    }

    .chathost__info {
        padding: 20px;
        margin-left: 0;
    }
}