.sezione-evidenza-custom {
  background: #f5f7fa;
  padding: 24px 0;
}

.container-evidenza {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.sezione-evidenza-custom h2 {
  margin: 0 0 14px 0;
  font-size: 32px;
  font-weight: 600;
  color: #f7f7f7;
}

.news-slider-area {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-slider-wrapper {
  width: 100%;
  overflow: hidden;
}

.news-slider {
  display: flex;
  gap: 18px;
  scroll-behavior: smooth;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0;
}

.news-slider::-webkit-scrollbar {
  display: none;
}

.news-box {
  flex: 0 0 calc((100% - 54px) / 4);
  min-width: calc((100% - 54px) / 4);
  background: #fff;
  border-radius: 14px;
  padding: 14px 16px;
  box-sizing: border-box;
  min-height: 95px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.news-box h3 {
  font-size: 17px;
  margin: 0 0 6px 0;
  color: #1c1c1c;
  line-height: 1.3;
}

.news-box p {
  font-size: 13px;
  line-height: 1.4;
  color: #555;
  margin: 0 0 10px 0;
}

.news-box a {
  color: #0d6efd;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
}

.news-box a:hover {
  text-decoration: underline;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border: 2px solid #1c1c1c;
  border-radius: 50%;
  background: #0d6efd;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn.prev {
  left: -28px;
}

.slider-btn.next {
  right: -28px;
}

@media (max-width: 992px) {
  .news-box {
    flex: 0 0 calc((100% - 18px) / 2);
    min-width: calc((100% - 18px) / 2);
  }
}

@media (max-width: 992px) {
  .news-box {
    flex: 0 0 calc((100% - 36px) / 3);
    min-width: calc((100% - 36px) / 3);
  }
}

@media (max-width: 576px) {
  .news-box {
    flex: 0 0 calc((100% - 36px) / 3);
    min-width: calc((100% - 36px) / 3);
  }

  .slider-btn.prev {
    left: -10px;
  }

  .slider-btn.next {
    right: -10px;
  }
}