.recent-news {
  padding-bottom: clamp(50px, 50 * (100vw - 393px) / 887 + 50px, 100px);
}

.recent-news-title-wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: clamp(32px, 28 * (100vw - 393px) / 887 + 32px, 60px);
}

.recent-news-title {
  color: var(--text-dark);
  font-family: var(--font-family);
  font-size: clamp(32px, 22 * (100vw - 393px) / 887 + 32px, 54px);
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 59.4px */
}

.recent-news-paginetion-wrapper {
  display: flex;
  gap: 20px;
}

.recent-news-path {
  transition: stroke var(--time-function);
}

.recent-news-swiper-button-prev {
  display: flex;
  height: clamp(45px, 25 * (100vw - 393px) / 887 + 45px, 70px);
  width: clamp(45px, 25 * (100vw - 393px) / 887 + 45px, 70px);
  justify-content: center;
  align-items: center;
  background-color: inherit;
  border-radius: 50%;
  border: 3px solid var(--background);
  box-shadow: 4px 7px 12px 0px rgba(0, 92, 111, 0.2);
}
.recent-news-swiper-button-prev:hover {
  background-color: var(--background);
}
.recent-news-swiper-button-prev:hover .recent-news-path {
  stroke: #fff;
}
.recent-news-swiper-button-prev:disabled {
  pointer-events: none;
  opacity: 0.5;
}

.recent-news-swiper-button-next {
  display: flex;
  height: clamp(45px, 25 * (100vw - 393px) / 887 + 45px, 70px);
  width: clamp(45px, 25 * (100vw - 393px) / 887 + 45px, 70px);
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 3px solid var(--background);
  background-color: var(--background);
  box-shadow: 4px 7px 12px 0px rgba(29, 32, 31, 0.2);
}
.recent-news-swiper-button-next:hover {
  background-color: inherit;
}
.recent-news-swiper-button-next:hover .recent-news-path {
  stroke: var(--background);
}
.recent-news-swiper-button-next:disabled {
  pointer-events: none;
  opacity: 0.5;
}

.recent-news-swiper-button-icon {
  width: clamp(18.6px, 10.4 * (100vw - 393px) / 887 + 18.6px, 29px);
  height: clamp(19.9px, 11.1 * (100vw - 393px) / 887 + 19.9px, 31px);
}

.recent-news-swiper-container {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.recent-news-list {
  display: flex;
  padding-bottom: 15px;
}

.recent-news-item {
  border-radius: 12px;
  background: #f2fafc;
  height: auto;
  transition: all var(--time-function);
}
.recent-news-item:hover {
  box-shadow: 4px 6px 12px 0px rgba(29, 32, 31, 0.2);
}

.recent-news-link-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.recent-news-link-wrapper:hover .recent-news-read-button, .recent-news-link-wrapper:focus .recent-news-read-button {
  background: var(--background);
  box-shadow: 4px 6px 12px 0px rgba(29, 32, 31, 0.2);
}
.recent-news-link-wrapper:hover .recent-news-read-button-prg, .recent-news-link-wrapper:focus .recent-news-read-button-prg {
  color: var(--text-white);
}
.recent-news-link-wrapper:hover .recent-news-read-button-icon, .recent-news-link-wrapper:focus .recent-news-read-button-icon {
  opacity: 1;
}

.recent-news-link-img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  transition: all var(--time-function);
  height: clamp(118px, 81 * (100vw - 393px) / 887 + 118px, 199px);
}

.recent-news-item-content-wrapper {
  padding: 8px clamp(12px, 8 * (100vw - 393px) / 887 + 12px, 20px) clamp(12px, 8 * (100vw - 393px) / 887 + 12px, 20px);
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 8 * (100vw - 393px) / 887 + 8px, 16px);
  flex: 1;
  height: auto;
}

.recent-news-link-date {
  color: var(--text-secondary-dark);
  font-family: var(--font-family);
  font-size: clamp(10px, 6 * (100vw - 393px) / 887 + 10px, 16px);
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
}

.recent-news-link-title {
  color: var(--text-dark);
  font-family: var(--font-family);
  font-size: clamp(14px, 4 * (100vw - 393px) / 887 + 14px, 18px);
  font-style: normal;
  font-weight: 900;
  line-height: 150%; /* 27px */
}

.recent-news-read-button {
  width: 100%;
  height: clamp(44px, 11 * (100vw - 393px) / 887 + 44px, 55px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: inherit;
  border-radius: 12px;
  border: 1px solid var(--background);
  transition: all var(--time-function);
  margin-top: auto;
}

.recent-news-read-button-prg {
  position: relative;
  color: var(--background);
  font-family: var(--font-family);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 27px */
  transition: all var(--time-function);
}

.recent-news-read-button-icon {
  position: absolute;
  right: -27px;
  opacity: 0;
  top: 50%;
  transform: translate(0, -42%);
  transition: all var(--time-function);
}
/*# sourceMappingURL=recent-news.css.map */
