/* BEGIN b-card-1 */
.b-card-1 {
  display: block;
  margin-bottom: 20px;
}
.b-card-1::after {
  content: '';
  display: table;
  clear: both;
}
.b-card-1 .b_thumb {
  float: left;
  margin-right: 15px;
  width: 300px;
  border-radius: 12px;
}
.b-card-1 .b_title {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
  color: var(--primary-color);
  padding-top: 8px;
  margin-bottom: 13px;
  -webkit-transition: 0.3s color ease-in-out;
  -o-transition: 0.3s color ease-in-out;
  transition: 0.3s color ease-in-out;
}
.b-card-1:hover .b_title {
  color: var(--secondary-color);
}
.b-card-1 .b_source {
  margin-bottom: 10px;
}
.b-card-1 .b_source li {
  display: inline-block;
  font-size: 15px;
}
.b-card-1 .b_source li:first-child {
  margin-right: 20px;
  /* text-transform: uppercase; */
}
.b-card-1 .b_desc {
  text-align: justify;
  color: #444;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 15px;
  line-height: 1.5;
}
.b-card-1 .b_btn {
      display: inline-flex;
      align-items: center;
      font-size: 14px;
      font-weight: 800;
      line-height: 1.3333333333;
      text-transform: uppercase;
      color: #918d8d;
      border-bottom: 2px solid var(--secondary-color);
      padding-bottom: 2px;
      letter-spacing: 1px;
      margin-top: 16px;
}
span.fa::before {
  color: var(--secondary-color);
}
@media (max-width: 479px) {
  .b-card-1 .b_thumb {
    width: 150px;
  }
  .b-card-1 .b_title {
    font-size: 15px;
  }
  .b-card-1 .b_source {
    display: none;
  }
  .b-card-1 .b_desc {
    display: none;
  }
}

/* END b-card-1 */
