/**
 * Footer del Theme.
 */

.mp-site-footer {
  background: var(--mp-dark);
  color: #CBD5E1;
  margin-top: auto;
}

.mp-site-footer__inner {
  display: grid;
  grid-template-columns: 1.2fr repeat(2, 1fr);
  gap: 32px 40px;
  padding: 48px 24px 32px;
}

.mp-site-footer__brand-link {
  display: inline-block;
  line-height: 0;
  margin-bottom: 12px;
}
.mp-site-footer__tagline {
  font-size: 14px;
  color: #94A3B8;
  margin: 0;
  max-width: 280px;
}

.mp-site-footer__col-title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #E2E8F0;
  margin: 0 0 12px;
}
.mp-site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mp-site-footer__list a {
  display: block;
  padding: 4px 0;
  color: #CBD5E1;
  text-decoration: none;
  font-size: 14px;
}
.mp-site-footer__list a:hover { color: var(--mp-white); }

.mp-site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 20px 0;
}

.mp-site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  font-size: 13px;
}

.mp-site-footer__copy { margin: 0; color: #94A3B8; }

.mp-site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}
.mp-site-footer__links a {
  color: #94A3B8;
  text-decoration: none;
}
.mp-site-footer__links a:hover { color: var(--mp-white); }

.mp-made-by__link {
  display: inline-flex;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--mp-white);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--mp-radius-sm);
  text-decoration: none;
}
.mp-made-by__link:hover { background: var(--mp-primary); border-color: var(--mp-primary); }
