.bls-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.bls-item {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  column-gap: 34px;
  align-items: start;
}

.bls-thumb-link {
  display: block;
  text-decoration: none;
}

.bls-thumb-wrap {
  width: 80px;
  height: 80px;
  overflow: hidden;
  border-radius: 4px;
  background: #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bls-thumb-wrap.has-image {
  background: transparent;
}

.bls-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bls-placeholder {
  width: 34px;
  height: 34px;
  color: rgba(255,255,255,0.9);
}

.bls-placeholder svg {
  width: 100%;
  height: 100%;
  display: block;
}

.bls-content {
  min-width: 0;
  padding-top: 2px;
}

.bls-label {
  margin: 0 0 6px;
  font-size: 14px;
  line-height: 1.35;
  color: #111;
  font-weight: 400;
}

.bls-title {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 400;
  color: #111;
}

.bls-title a {
  color: inherit;
  text-decoration: none;
}

.bls-title a:hover,
.bls-title a:focus {
  text-decoration: underline;
}

.bls-empty {
  font-size: 16px;
  color: #333;
}

@media (max-width: 640px) {
  .bls-item {
    grid-template-columns: 72px minmax(0, 1fr);
    column-gap: 20px;
  }

  .bls-thumb-wrap {
    width: 72px;
    height: 72px;
  }

  .bls-list {
    gap: 28px;
  }
}
