.article-slider {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;

  width: 100%;
}

.article-slider__slides {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.article-slider__slide {
  flex-shrink: 0;
  width: 100%;
  /* height: 100%; */
  position: relative;
  transition-property: transform;
  background: rgb(72, 117, 117);
}

.article-slider__pagination {
  display: none;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  gap: 20px;
}

.article-slider__pagination .article-slider-pagination-bullet {
  width: 46px;
  height: 46px;
  cursor: pointer;
  border-radius: 50%;
}

.article-slider__pagination .article-slider-pagination-bullet-active {
  background: gray;
}

.article-slider__below {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.article-slider__below-link {
  color: #c6b701;
  font-size: 16px;
}

@media screen and (max-width: 576px) {
  .article-slider__below-link {
    font-size: 12px;
    margin: 0 8px;
    text-align: center;
  }
}

.article-slider__prev,
.article-slider__next {
  width: 46px;
  height: 46px;
  cursor: pointer;
  z-index: 1;
}

.article-slider__prev {
  left: 20px;
}

.article-slider__next {
  right: 20px;
}

/* styles for arcticle-slider item */

.article-slider .item-with-buttons {
  background: #ebeaea;
  height: 100%;
}

.article-slider .item-with-buttons .img {
  height: 160px;
  background: no-repeat center center / cover;
}

.article-slider .item-with-buttons .content {
  color: black;
  padding: 0 10px 60px;
  line-height: 1.5;
}

.article-slider .item-with-buttons .content b {
  display: block;
  margin: 10px 0 7px;
  font-size: 16px;
}

.article-slider .item-with-buttons .content p {
  margin: 7px 0;
  font-size: 14px;
}

.article-slider .item-with-buttons .preview-item-buttons {
  display: flex;
  justify-content: space-around;
  align-items: center;
  bottom: 14px;
  left: 0;
  position: absolute;
  right: 0;
}