/* Shared footer presentation */
body.premium .site-footer {
  display: block;
  margin: clamp(52px, 8vw, 96px) clamp(24px, 4vw, 48px) 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 28px;
  color: rgba(255, 255, 255, .72);
  background: #102f22;
  box-shadow: 0 24px 60px rgba(15, 38, 27, .14);
}

body.premium .footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr);
  gap: clamp(40px, 8vw, 110px);
  align-items: start;
  padding: clamp(30px, 5vw, 54px);
}

body.premium .footer-identity {
  max-width: 610px;
}

body.premium .footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: #fff;
  text-decoration: none;
}

body.premium .footer-logo-mark {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 15px;
  color: #d8ebdf;
  background: rgba(255, 255, 255, .08);
}

body.premium .footer-logo-mark svg {
  width: 25px;
  height: 25px;
}

body.premium .footer-logo > span:last-child {
  display: grid;
  line-height: 1.2;
}

body.premium .footer-logo strong {
  color: #fff;
  font-size: 1rem;
  letter-spacing: -.02em;
}

body.premium .footer-logo small {
  margin-top: 4px;
  color: rgba(255, 255, 255, .48);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

body.premium .footer-identity > p {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .66);
  font-size: .93rem;
  line-height: 1.7;
}

body.premium .footer-navigation > span,
body.premium .footer-sources > span {
  display: block;
  margin-bottom: 13px;
  color: rgba(255, 255, 255, .42);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

body.premium .footer-navigation > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 22px;
}

body.premium .footer-navigation a {
  color: rgba(255, 255, 255, .82);
  font-size: .86rem;
  font-weight: 680;
  text-decoration: none;
  transition: color .18s ease, transform .18s ease;
}

body.premium .footer-navigation a:hover {
  color: #fff;
  transform: translateX(2px);
}

body.premium .footer-meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, auto);
  gap: 30px;
  align-items: center;
  padding: 20px clamp(30px, 5vw, 54px);
  border-top: 1px solid rgba(255, 255, 255, .08);
  background: rgba(0, 0, 0, .08);
}

body.premium .footer-warning,
body.premium .footer-sources {
  margin: 0;
  color: rgba(255, 255, 255, .5);
  font-size: .75rem;
  line-height: 1.55;
}

body.premium .footer-warning {
  max-width: 650px;
  text-align: left;
}

body.premium .footer-sources {
  text-align: right;
}

body.premium .footer-sources > span {
  display: inline;
  margin: 0 9px 0 0;
}

@media (max-width: 760px) {
  body.premium .site-footer {
    margin: 46px 16px 0;
    border-radius: 22px;
  }

  body.premium .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 28px 24px 30px;
  }

  body.premium .footer-navigation > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px 18px;
  }

  body.premium .footer-meta {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px 24px 24px;
  }

  body.premium .footer-warning,
  body.premium .footer-sources {
    text-align: left;
  }

  body.premium .footer-sources > span {
    display: block;
    margin: 0 0 7px;
  }
}

@media (max-width: 430px) {
  body.premium .footer-navigation > div {
    grid-template-columns: 1fr;
  }
}
