.gallery__slider-wrap {
  position: relative;
}

.gallery__slider {
  padding: 20px;
}

.gallery-item__text-wrap {
  position: relative;
}

.gallery .slider-btn-prev {
  left: 45px;
}
.gallery .slider-btn-next {
  right: 45px;
}

.gallery .swiper-pagination {
  margin-top: 20px;
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item {
  border-radius: 10px;
  max-height: 400px;
  overflow: hidden;
  cursor: pointer;
  background-color: var(--gallery-item-bg);
  box-shadow: 4px 4px 18px rgba(0, 0, 0, 0.15);
}
.gallery-item img {
  max-width: 100%;
  height: 100%;
  width: 100%;
  height: 186px;
  object-fit: cover;
}

.gallery-item h2 {
  padding: 10px 14px;
  font-family: "Inter";
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  min-height: 62px;
  color: var(--gallery-item);
  transition: color 0.1s;
}

.gallery-item:hover h2 {
  color: var(--primary);
}
