/**
 * Mootsmog site footer — company / contact / social.
 * Desktop: one row (left · center · right). Mobile: stacked.
 */

.ms-site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px 20px;
  width: 100%;
  max-width: 940px;
  margin: 28px auto 8px;
  padding: 14px 18px 20px;
  box-sizing: border-box;
  color: var(--muted, #7a6a52);
  font-size: 0.86rem;
  line-height: 1.4;
}

.ms-site-footer-left,
.ms-site-footer-center,
.ms-site-footer-right {
  flex: 1 1 0;
  min-width: 0;
}

.ms-site-footer-left {
  text-align: left;
}

.ms-site-footer-center {
  text-align: center;
}

.ms-site-footer-right {
  text-align: right;
}

.ms-site-footer a {
  color: #e76f51;
  font-weight: 700;
  text-decoration: none;
}

.ms-site-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .ms-site-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 18px 16px 24px;
  }

  .ms-site-footer-left,
  .ms-site-footer-center,
  .ms-site-footer-right {
    flex: 0 0 auto;
    text-align: center;
    width: 100%;
  }
}
