/* ===== Footer ===== */
.wd-footer {
  background-color: var(--wd-bg-dark);
  color: var(--wd-text-muted);
  padding: 4rem 0 2rem;
}

.wd-footer-inner {
  max-width: var(--wd-container-max);
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
}

/* Brand column */
.wd-footer-brand {
  padding-right: 1rem;
}

.wd-footer-brand img {
  max-height: 35px;
  margin-bottom: 1rem;
}

.wd-footer-brand .wd-logo {
  color: var(--wd-text-white);
  margin-bottom: 1rem;
  display: inline-flex;
}

.wd-footer-brand p {
  font-size: var(--wd-font-size-sm);
  color: var(--wd-text-muted);
  line-height: 1.7;
}

/* Footer columns */
.wd-footer h4 {
  color: var(--wd-text-white);
  font-size: 1rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.wd-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wd-footer li {
  margin-bottom: 0.5rem;
}

.wd-footer a {
  color: var(--wd-text-muted);
  font-size: var(--wd-font-size-sm);
  text-decoration: none;
  transition: var(--wd-transition-fast);
}

.wd-footer a:hover {
  color: var(--wd-text-white);
  text-decoration: none;
}

/* Coming soon badge in footer */
.wd-footer-coming-soon {
  display: inline-block;
  background-color: var(--wd-warning);
  color: var(--wd-heading-color);
  font-size: 0.5625rem;
  font-weight: 700;
  padding: 0.0625rem 0.375rem;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-left: 0.375rem;
  vertical-align: middle;
}

/* Footer bottom */
.wd-footer-bottom {
  max-width: var(--wd-container-max);
  margin: 0 auto;
  padding: 2rem 1rem 0;
  margin-top: 2rem;
  border-top: 1px solid var(--wd-border-color-dark);
  text-align: center;
}

.wd-footer-bottom p {
  font-size: var(--wd-font-size-xs);
  color: var(--wd-text-muted);
  margin: 0;
}

.wd-footer-credit {
  margin-top: 0.5rem !important;
  font-size: var(--wd-font-size-xs);
}

.wd-footer-credit a {
  color: var(--wd-text-muted);
  text-decoration: underline;
  transition: var(--wd-transition-fast);
}

.wd-footer-credit a:hover {
  color: var(--wd-text-white);
}

/* Social links */
.wd-footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.wd-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--wd-radius-circle);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--wd-text-muted);
  transition: var(--wd-transition);
}

.wd-footer-social a:hover {
  background-color: var(--wd-primary);
  color: var(--wd-text-white);
}

.wd-footer-social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
