.cover {
  background-color: var(--blue-primary-color);
  border-radius: 15px;
  color: rgb(255, 255, 255);
  display: flex;
  height: 555px;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding: 0 90px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}
.cover .title {
  font-size: 65px;
  font-weight: 700;
  line-height: 110%;
  margin-bottom: 25px;
  max-width: 400px;
}
.cover .description {
  font-size: 20px;
  line-height: 150%;
  margin-bottom: 25px;
  max-width: 500px;
}
.cover .suggest-news-button:hover {
  background-color: rgb(243, 243, 243);
}
.cover .suggest-news-button:active {
  box-shadow: rgba(0, 0, 0, 0.25) 0 0 0;
  translate: 3px 3px;
}
.cover img {
  width: 640px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .cover .title {
    font-size: 60px;
    margin-bottom: 20px;
  }
  .cover .description {
    font-size: 18px;
  }
  .cover img {
    width: 600px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cover {
    height: 420px;
    padding: 0 70px;
  }
  .cover .title {
    font-size: 50px;
    margin-bottom: 20px;
  }
  .cover .description {
    font-size: 16px;
  }
  .cover img {
    width: 500px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cover {
    padding: 0 60px;
    height: 350px;
    margin-bottom: 30px;
  }
  .cover .title {
    font-size: 40px;
    margin-bottom: 20px;
  }
  .cover .description {
    font-size: 14px;
  }
  .cover img {
    width: 300px;
  }
}
@media (max-width: 767px) {
  .cover {
    flex-direction: column-reverse;
    overflow: hidden;
    text-align: center;
    padding: 40px;
    height: auto;
    margin-bottom: 30px;
  }
  .cover .title {
    font-size: 40px;
    margin-bottom: 20px;
  }
  .cover .description {
    font-size: 15px;
  }
  .cover img {
    max-width: 300px;
  }
}
@media (max-width: 575px) {
  .cover {
    padding: 30px;
  }
  .cover img {
    max-width: 250px;
  }
}

.page-title {
  font-size: clamp(25px, 3.5vw, 40px);
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 20px;
  line-height: 130%;
}

.pagination > li > a,
.pagination > li > span {
  color: var(--blue-primary-color) !important;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  color: var(--blue-primary-color) !important;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  background-color: var(--blue-primary-color) !important;
  border-color: var(--blue-primary-color) !important;
  color: white !important;
}

.news-list-block {
  margin-bottom: 60px;
}

/*# sourceMappingURL=style.css.map */
