/* Footer base */

.ps-site-footer {
  width: 100%;
  padding: 72px 0 28px;
  background: var(--ps-bg);
  border-top: 1px solid var(--ps-border);
  color: var(--ps-muted);
  font-family: var(--ps-font);
}

.ps-site-footer__inner {
  width: min(1140px, calc(100% - 48px));
  margin: 0 auto;
}

.ps-site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px 28px;
  padding-bottom: 42px;
}

.ps-site-footer__logo {
  display: inline-flex;
  margin-bottom: 16px;
  text-decoration: none !important;
}

.ps-site-footer__logo-img {
  height: 42px;
  width: auto;
  max-width: 210px;
}

.ps-site-footer__logo-text {
  color: var(--ps-heading);
  font-size: 18px;
  font-weight: 700;
}

.ps-site-footer__text {
  margin: 0;
  max-width: 360px;
  color: var(--ps-muted);
  font-size: 14px;
  line-height: 1.65;
}

.ps-site-footer__title {
  margin: 0 0 16px;
  color: var(--ps-heading);
  font-size: 15px;
  font-weight: 600;
}

.ps-site-footer__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ps-site-footer__list li {
  margin: 0 0 10px;
}

.ps-site-footer__list a {
  color: var(--ps-muted) !important;
  font-size: 14px !important;
  text-decoration: none !important;
}

.ps-site-footer__list a:hover {
  color: var(--ps-primary) !important;
}

.ps-site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 22px;
  border-top: 1px solid var(--ps-border);
}

.ps-site-footer__copy,
.ps-site-footer__visits {
  margin: 0;
  color: var(--ps-muted);
  font-size: 12px;
}

@media (max-width: 767px) {
  .ps-site-footer__grid {
    grid-template-columns: 1fr;
  }
}
