.news-swiper {
  padding-block: 3rem;
  overflow: hidden;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.news-swiper__container {
  display: flex;
  flex-direction: column;
  gap: 2.7rem;
  min-width: 0;
  box-sizing: border-box;
}

.news-swiper__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .news-swiper__header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.news-swiper__header-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.6rem;
}
@media (min-width: 768px) {
  .news-swiper__header-actions {
    gap: 0.7rem;
  }
}

.news-swiper__title {
  color: #033324;
  font-family: "Nohemi", sans-serif;
  font-size: 3rem;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: 0.12rem;
  color: #033324;
  margin: 0;
}
@media (min-width: 768px) {
  .news-swiper__title {
    color: #033324;
    font-family: "Nohemi", sans-serif;
    font-size: 4rem;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: 0.16rem;
  }
}

.news-swiper__swiper {
  overflow: hidden;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .news-swiper__swiper {
    margin-inline: 0;
  }
}

.news-swiper__nav {
  display: none;
}
@media (min-width: 768px) {
  .news-swiper__nav {
    display: flex;
    gap: 0.7rem;
    align-items: center;
    flex-shrink: 0;
  }
}

.news-swiper__nav-button {
  display: flex;
  width: 3.1rem;
  height: 3.1rem;
  padding: 0.9455rem 1.0636rem 0.9455rem 1.4182rem;
  justify-content: center;
  align-items: center;
  background-color: #cdcdcd;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  position: static;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  margin: 0;
  background-image: none;
}
.news-swiper__nav-button::after, .news-swiper__nav-button::before {
  display: none;
  content: none;
}
.news-swiper__nav-button svg {
  display: none;
}
.news-swiper__nav-button:hover {
  opacity: 0.9;
  transform: scale(1.05);
}
.news-swiper__nav-button.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}
.news-swiper__nav-button--prev {
  padding: 0.9455rem 1.4182rem 0.9455rem 1.0636rem;
}
.news-swiper__nav-button--prev .news-swiper__nav-icon {
  transform: scaleX(-1);
}
.rtl .news-swiper__nav-button--prev .news-swiper__nav-icon {
  transform: scaleX(1);
}
.rtl .news-swiper__nav-button--next .news-swiper__nav-icon {
  transform: scaleX(-1);
}

.news-swiper__nav-icon {
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
}

.news-swiper__swiper .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.news-swiper__swiper .swiper-slide {
  width: 100%;
  height: auto;
  flex-shrink: 0;
  box-sizing: border-box;
}

.news-swiper__swiper .news-swiper-card {
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

.news-swiper__swiper .swiper-pagination {
  margin-block-start: 2.5rem;
  position: relative;
}
.news-swiper__swiper .swiper-pagination .swiper-pagination-bullet {
  width: 0.8rem;
  height: 0.8rem;
  background-color: #e2e2e2;
  opacity: 1;
  transition: background-color 0.2s ease;
}
.news-swiper__swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #00852c;
}
