.ps-site-footer {
  background: #0f2047;
  color: rgba(255,255,255,0.92);
  margin-top: 36px;
}
.ps-site-footer__inner {
  max-width: var(--ps-container);
  margin: 0 auto;
  padding: 28px 20px;
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) minmax(220px, .8fr);
  gap: 24px;
  align-items: start;
}
.ps-site-footer__brand strong {
  display: block;
  font-size: 20px;
  margin-bottom: 8px;
}
.ps-site-footer__brand p {
  margin: 0 0 14px;
  color: rgba(255,255,255,0.75);
}
.ps-site-footer__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}
.ps-site-footer__contact a,
.ps-site-footer__contact span,
.ps-site-footer__links a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
}
.ps-site-footer__links {
  display: grid;
  justify-content: end;
  gap: 10px;
}
.ps-site-footer__links a:hover,
.ps-site-footer__contact a:hover {
  color: #fff;
}
.ps-site-footer__meta {
  border-top: 1px solid rgba(255,255,255,0.10);
  max-width: var(--ps-container);
  margin: 0 auto;
  padding: 14px 20px 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 18px;
  font-size: 14px;
  color: rgba(255,255,255,0.72);
}
@media (max-width: 820px) {
  .ps-site-footer__inner {
    grid-template-columns: 1fr;
  }
  .ps-site-footer__links {
    justify-content: start;
  }
  .ps-site-footer__meta {
    flex-direction: column;
  }
}
