.infoCards {
  display: grid;
  gap: 16px;
}

.infoCards__item {
  border: 1px solid #e5e5e5;
  background: #fff;
}

.infoCards__link {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  align-items: stretch;
}

.infoCards__thumb {
  position: relative;
  overflow: hidden;
  background: #f2f2f2;
}

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

.infoCards__badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 6px 10px;
  font-size: 13px;
  line-height: 1;
  background: rgba(130,130,130,0.85);
  color: #fff;
  border-radius: 4px;
}

.infoCards__body {
  padding: 16px 16px 16px 0;
  display: grid;
  gap: 10px;
  align-content: center;
}

.infoCards__title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.infoCards__date {
  font-size: 14px;
  color: #666;
}

@media (max-width: 767px) {
  .infoCards__link {
    grid-template-columns: 120px 1fr;
    gap: 12px;
  }
  .infoCards__body {
    padding: 12px 12px 12px 0;
  }
  .infoCards__title {
    font-size: 16px;
  }
}