.bst {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  grid-column-gap: 40px;
  grid-row-gap: 60px;
}
@media (max-width: 1023.98px) {
  .bst {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 24px;
    grid-row-gap: 30px;
  }
}
@media (max-width: 575.98px) {
  .bst {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
}
.bst-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
}
@media (max-width: 767.98px) {
  .bst-item {
    gap: 7px;
  }
}
@media (hover: hover) {
  .bst-item:hover .bst-item__pict img {
    transform: scale(1.07);
  }
  .bst-item:hover .bst-item__title,
  .bst-item:hover .bst-item__link {
    text-shadow: 0 0 1px;
  }
}
.bst-item__pict {
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 575.98px) {
  .bst-item__pict {
    position: relative;
    height: auto;
    padding-bottom: 63.254%;
  }
  .bst-item__pict img {
    position: absolute;
    top: 0;
    left: 0;
  }
}
.bst-item__pict img {
  transition: transform var(--anim300);
  will-change: transform;
}
.bst-item__title {
  align-self: flex-start;
  transition: text-shadow var(--anim150);
  font: 300 32px/1.1 var(--secfont);
}
@media (max-width: 767.98px) {
  .bst-item__title {
    font-size: 30px;
  }
}
.bst-item__link {
  align-self: flex-start;
  margin-top: auto;
  font-size: 16px;
  line-height: 1.3;
  color: var(--seryy);
  transition: text-shadow var(--anim150);
}