@charset "UTF-8";
/* ----- Список статей (стр базы знаний)  ----- */
.kb-item {
  border-radius: 2px;
  border: 1px solid #f3f3f3;
  -webkit-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
  transition: all 0.1s linear;
}

.kb-item:hover {
  -webkit-box-shadow: 0 0 24px rgba(0, 0, 0, 0.13);
          box-shadow: 0 0 24px rgba(0, 0, 0, 0.13);
}

.kb-item:not(:last-child) {
  margin-bottom: 23px;
}

.kb-item__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.kb-item a:hover {
  color: inherit;
}

.kb-item-title {
  font-size: 15px;
  font-weight: 700;
}

.kb-item__img {
  height: 301px;
  height: 201px;
  overflow: hidden;
}

.kb-item__content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 100%;
  padding: 15px 60px 15px 40px;
}

.kb-item__content .kb-item-title {
  margin-bottom: 12px;
}

.kb-item__txt {
  margin-bottom: 12px;
  line-height: 1.7;
}

.kb-mark {
  padding: 6px 22px;
  display: inline-block;
  background: #f7f8fa;
  border: 1px solid #f3f3f3;
  border-radius: 30px;
  font-size: 12px;
  color: rgba(137, 137, 137, 0.6);
}

@media screen and (max-width: 1199px) {
  .kb-item__img {
    display: none;
  }
  .kb-item__content {
    padding: 30px;
  }
}

@media screen and (max-width: 767px) {
  .kb-item__content {
    padding: 20px 15px;
  }
}
