.btb{
  display:inline-flex;
  align-items:center;
  gap:14px;
  padding:10px 14px;
  border-radius:0;
  background:#0b5a52;
  max-width:100%;
}

.btb__avatars{
  display:flex;
  align-items:center;
  flex-shrink:0;
}

.btb__avatar{
  width:42px;
  height:42px;
  border-radius:999px;
  border:3px solid #e7ecec;
  background:#bfc3c7;
  overflow:hidden;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.btb__avatar + .btb__avatar{
  margin-left:-12px;
}

.btb__avatar--overflow{
  font-size:12px;
  font-weight:700;
  color:#1f2937;
}

.btb__avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.btb__text{
  color:#d7efb6;
  font-size:35px;
  line-height:1.2;
  overflow-wrap:anywhere;
  word-break:break-word;
}

@media (max-width: 768px){
  .btb{
    padding:8px 10px;
    gap:10px;
  }

  .btb__avatar{
    width:34px;
    height:34px;
    border-width:2px;
  }

  .btb__avatar + .btb__avatar{
    margin-left:-10px;
  }

  .btb__text{
    font-size:18px;
  }
}
