footer {
  background: #213785;
  color: rgba(255, 255, 255, 0.88);
  padding: 18px 0 14px;
}

.footer-simple {
  font-size: 12px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
}

.footer-simple p {
  margin: 0;
}

.footer-simple p + p {
  margin-top: 2px;
}

.news-links {
  background: #f1f2f6;
  padding: 52px 0 60px;
}

.news-links-grid {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

.news-link-col {
  position: relative;
  width: calc((100% - 170px) / 6);
  min-width: 0;
  padding: 0 12px;
  display: grid;
  align-content: flex-start;
  gap: 9px;
  color: #6f7684;
  border-left: 1px solid #d7dbe6;
}

.news-link-col:first-child {
  border-left: none;
}

.news-link-col h3 {
  margin: 0;
  color: #262d3b;
  font-size: 24px;
  font-weight: 400;
}

.news-link-col a {
  font-size: 16px;
  line-height: 1.55;
  color: #6f7684;
  white-space: nowrap;
}

.news-link-col a:hover {
  color: #1c3d99;
}

[data-scroll-rise] {
  opacity: 0;
  transform: translateY(34px);
  transition: transform 0.95s ease, opacity 0.95s ease;
  transition-delay: var(--rise-delay, 0s);
}

[data-scroll-rise].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.news-links [data-scroll-rise] {
  opacity: 1;
  transform: none;
  transition: none;
}

@media (max-width: 640px) {
  .news-links-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .news-links {
    padding: 36px 0 42px;
  }

  .news-link-col {
    width: auto;
    border-left: none;
    border: 1px solid #d7dbe6;
    padding: 14px;
    gap: 6px;
  }

  .news-link-col h3 {
    font-size: 22px;
  }

  .news-link-col a {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .news-links-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
