.news-list {
  --max-width: 420px;
  --display: block;
  --gap: 0;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
  display: var(--display);
  flex-wrap: wrap;
  gap: var(--gap);
}
@media (min-width: 992px) {
  .news-list {
    --max-width: 1710px;
    --display: flex;
    --gap: 0 30px;
  }
}
@media (min-width: 1500px) {
  .news-list {
    --gap: 50px 90px;
  }
}

.news-item {
  --items-between: 30px;
  --tags-paddings: 0 22px;
  --tags-gap: 16px;
  --content-paddings: 15px 22px 22px;
  --name-offset-bottom: 15px;
  --text-offset-bottom: 20px;
  --link-color: #46B7B2;
  --thumb-circle-width: 182px;
  --thumb-square-width: 200px;
  --thumb-square-height: 215px;
  --thumb-rhombus-width: 180px;
  --thumb-rhombus-height: 200px;
  width: 100%;
  max-width: 500px;
  margin-bottom: var(--items-between);
  display: flex;
  flex-direction: column;
  flex: 0 1 auto;
  transition: all 250ms ease-in-out;
}
@media (min-width: 992px) {
  .news-item {
    --items-between: 0;
    --tags-paddings: 0 33px;
    --tags-gap: 25px;
    --content-paddings: 15px 33px 33px;
    --name-offset-bottom: 20px;
    --text-offset-bottom: 30px;
  }
}
@media (min-width: 1500px) {
  .news-item {
    --thumb-circle-width: 290px;
    --thumb-square-width: 310px;
    --thumb-square-height: 330px;
    --thumb-rhombus-width: 300px;
    --thumb-rhombus-height: 315px;
  }
}
@media (hover) {
  .news-item:hover {
    transform: scale(1.1);
  }
}
.news-item__top {
  display: flex;
  justify-content: flex-end;
  position: relative;
}
.news-item__thumb {
  display: block;
  text-decoration: none;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #f1f1f1;
}
.news-item__thumb.is-circle {
  width: var(--thumb-circle-width);
  height: var(--thumb-circle-width);
  clip-path: circle(50% at 50%);
}
.news-item__thumb.is-square {
  width: var(--thumb-square-width);
  height: var(--thumb-square-height);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}
.news-item__thumb.is-rhombus {
  width: var(--thumb-rhombus-width);
  height: var(--thumb-rhombus-height);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}
.news-item__tags {
  width: 75%;
  padding: var(--tags-paddings);
  display: flex;
  position: absolute;
  left: 0;
  bottom: 0;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 300;
  color: #383C48;
  gap: var(--tags-gap);
}
.news-item__content {
  padding: var(--content-paddings);
  flex-grow: 1;
  background-color: #fff;
  box-shadow: 0 6px 4px 0 rgba(0, 0, 0, 0.25);
}
.news-item__name {
  margin-bottom: var(--name-offset-bottom);
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 500;
}
.news-item__name a {
  text-decoration: none;
  transition: all 150ms;
}
.news-item__name a:hover {
  color: var(--link-color);
}
.news-item__text {
  margin-bottom: var(--text-offset-bottom);
  line-height: 1.3;
  font-size: 16px;
}
.news-item__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 500;
  color: var(--link-color);
}
.news-item__bottom a {
  text-decoration: none;
  color: inherit;
  transition: all 150ms;
}
.news-item__bottom a:hover {
  color: #3fa5a0;
}
.news-item__bottom a svg {
  margin-left: 10px;
}

.news-pagenavi {
  width: 100%;
  display: flex;
  text-align: center;
  justify-content: center;
}
.news-pagenavi .btn-bordered:not(:hover):not(.btn-loading) {
  color: #519E9D !important;
}
@media (min-width: 992px) {
  .news-pagenavi {
    padding: 60px 0 30px;
    justify-content: flex-start;
  }
}
