.site-footer{
  padding:70px 0 30px;
  border-top:1px solid var(--line);
  background:#050505
}
.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:50px
}
.footer-logo{
  width:125px;
  margin-bottom:20px
}
.site-footer h3{
  font-size:15px;
  letter-spacing:0
}
.site-footer ul{
  list-style:none;
  padding:0;
  margin:0
}
.site-footer li{
  margin:9px 0
}
.site-footer a:hover{
  color:var(--light)
}
.footer-bottom{
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding-top:35px;
  margin-top:35px;
  border-top:1px solid var(--line);
  font-size:12px
}
.footer-bottom-links{
  display:flex;
  gap:20px
}

/* V9 footer redesign */
.site-footer {
  position: relative;
  padding: 82px 0 30px;
  overflow: hidden;
  background: #050505;
  border-top: 1px solid #202020;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,165,23,.68), transparent);
}

.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.65fr .8fr 1fr .8fr;
  gap: 54px;
}

.footer-grid > div:first-child {
  max-width: 430px;
}

.footer-wordmark {
  margin-bottom: 22px;
}

.site-footer h3 {
  margin-bottom: 20px;
  color: #eee;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.site-footer ul {
  display: grid;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin: 0;
}

.site-footer p,
.site-footer li,
.site-footer a {
  font-size: 12px;
  line-height: 1.7;
}

.site-footer a {
  transition: color .22s ease, transform .22s ease;
}

.site-footer a:hover {
  color: #ffa517;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding-top: 28px;
  margin-top: 48px;
  border-top: 1px solid #222;
  font-size: 11px;
}

.footer-bottom > span a {
  color: #eee;
}

.footer-bottom > span a:hover {
  color: #ffa517;
}

.footer-bottom-links {
  display: flex;
  gap: 18px;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding-top: 62px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}


.site-footer.gradient-surface {
  border-top: 0 !important;
}
