.press-news {
  padding: 66px 0 96px;
  background-color: var(--light-fon, #F5FAFF);
}
@media (width <= 767px) {
  .press-news {
    padding: 40px 0;
  }
}
.press-news .container {
  max-width: 1600px;
  margin: 0 auto;
}
.press-news__header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}
@media (width <= 991px) {
  .press-news__header {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
.press-news__header h2 {
  margin: 0;
}
.press-news__filters {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
@media (width <= 991px) {
  .press-news__filters {
    justify-content: center;
  }
}
.press-news__filter {
  padding: 8px 14px;
  border-radius: 12px;
  color: var(--greyblue, #687284);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  cursor: pointer;
  transition: var(--animation-duration) ease-in-out;
}
.press-news__filter.active, .press-news__filter:hover {
  background-color: var(--blue-accent, #3C5A78);
  color: var(--default-primary-1, #FEFEFE);
}
.press-news__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
@media (width <= 991px) {
  .press-news__cards {
    gap: 20px;
  }
}
.press-news .news-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  width: calc((100% - 96px) / 4);
  border: 1px solid var(--grey-stroke, #E8EBEF);
  background: var(--default-primary-1, #FEFEFE);
  border-radius: 12px;
  text-decoration: none;
}
.press-news .news-card:hover {
  box-shadow: rgba(14, 63, 126, 0.04) 0 0 0 1px, rgba(42, 51, 69, 0.04) 0 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0 3px 3px -1.5px, rgba(42, 51, 70, 0.04) 0 6px 6px -3px, rgba(14, 63, 126, 0.04) 0 12px 12px -6px, rgba(14, 63, 126, 0.04) 0 24px 24px -12px;
}
.press-news .news-card:hover .press-news .news-card__title {
  color: var(--blue-accent, #3C5A78);
}
@media (width <= 1279px) {
  .press-news .news-card {
    width: calc((100% - 64px) / 3);
  }
}
@media (width <= 991px) {
  .press-news .news-card {
    width: calc((100% - 20px) / 2);
  }
}
@media (width <= 575px) {
  .press-news .news-card {
    width: 100%;
  }
}
.press-news .news-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 20px;
}
.press-news .news-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.press-news .news-card__tag {
  padding: 4px 8px;
  background: var(--blue-accent, #3C5A78);
  color: var(--default-primary-1, #FEFEFE);
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.43;
  border-radius: 4px;
}
.press-news .news-card__date {
  color: var(--greyblue, #687284);
  text-align: right;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.33;
}
.press-news .news-card__content {
  margin-bottom: 52px;
  flex-grow: 1;
}
@media (width <= 1023px) {
  .press-news .news-card__content {
    margin-bottom: 36px;
  }
}
.press-news .news-card__title {
  margin: 0 0 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--default-primary-2, #030D16);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.56;
  height: 84px;
}
@media (width <= 575px) {
  .press-news .news-card__title {
    height: auto;
  }
}
.press-news .news-card__excerpt p {
  margin: 0;
  color: var(--dark-grey-stroke-secondary-text, #303A43);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.43;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.press-news .news-card .button {
  color: var(--blue-accent, #3C5A78);
}
.press-news .news-card .button .icon {
  margin-top: 0;
}