/* Responsive information footer for the homepage and FAQ copy. */
.footer-information {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 48px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid #31506d;
}
.footer-information p {
  margin: 0;
  font-size: .9rem;
  line-height: 1.7;
  color: #90a8bb;
}
.footer-information a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-information a:hover { color: #c7d7e3; }
.footer-information a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}
@media (max-width: 700px) {
  .footer-information { grid-template-columns: 1fr; }
}

.footer-operator {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.footer-operator-logo {
  display: inline-block;
}
.footer-operator-logo img {
  width: auto;
  height: 24px;
}

