.section-slider__all--mobile {
  display: none;
}
.section-slider__swiper.swiper {
  padding: 4px 4px 8px 4px;
  margin-top: 16px;
}
.slider-card {
  border-radius: 8px;
  border: 1px solid var(--stroke-grey);
  padding: 13px 12px 11px;
  display: flex;
  flex-direction: column;
  height: 375px;
  max-height: 375px;
  box-sizing: border-box;
  background-color: #fff;
  transition:
    background-color .2s linear,
    border-color .2s linear,
    box-shadow .2s linear;
}

.slider-card:hover {
  /*background-color: var(--inactive-grey-new);*/
  /*background-color: rgba(194, 204, 214, 0.5);*/
  border-color: transparent;
  box-shadow: 2px 2px 12px 0 rgba(0,0,0,0.15);
}

.slider-card__body {
  flex-grow: 1;
}
.slider-card__picture {
  height: 231px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
}
.slider-card__picture img{
  height: 100%;
  width: 100%;
  object-fit: contain;
  border-radius: 6px;
  background-color: #fff;
}
.slider-card__name {
  margin-top: 8px;
  color: var(--text-black);
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
}
.slider-card__fake-link {
  width: max-content;
  /*margin-left: auto;*/
  padding: 12px 18px;
  font-size: 14px;
  line-height: var(--f16);
}
.slider-card .slider-card__fake-link:hover{
  background-color: var(--main);
  color: var(--white);
  box-shadow: none;
}

@media (max-width: 920px) {
  .slider-card {
    height: 310px;
    max-height: 310px;
  }
  .slider-card__picture {
    height: 182px;
  }
  .slider-card__name {
    font-size: 12px;
    line-height: 14px;
  }
  .slider-card__fake-link {
    padding: 8px 10px;
    font-size: 12px;
    line-height: 14px;
  }
}

@media (max-width: 480px) {
  .slider-card {
    height: 283px;
    max-height: 283px;
    padding: 6px;
  }
  .slider-card__picture {
    height: 171px;
  }
  .slider-card__name {
    font-size: 10px;
    line-height: 12px;
  }
  .slider-card__fake-link {
    width: 100%;
    padding: 12px 17px;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
  }
  .section-slider__all--desktop {
    display: none;
  }
  .section-slider__all--mobile {
    display: block;
    position: relative;
    top: 1px;
  }
}