.mxd-footer__brand {
  width: 100%;
  padding: clamp(2rem, 6vw, 4rem) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mxd-footer__brand-shell {
  display: inline-flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  color: var(--mxd-footer-brand-color, currentColor);
}

.mxd-footer__brand-text {
  font-family: var(--mxd-footer-brand-font, inherit);
  font-size: clamp(4rem, 14vw, 12rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  text-transform: lowercase;
  line-height: 0.9;
  white-space: nowrap;
}

.mxd-footer__brand-dot {
  width: clamp(0.75rem, 2.5vw, 1.5rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: currentColor;
  transform: translateY(clamp(0.2rem, 1vw, 0.5rem));
  flex-shrink: 0;
}

.mxd-footer__brand-shell::before,
.mxd-footer__brand-shell::after {
  content: '';
  display: block;
  height: 1px;
  width: clamp(32px, 10vw, 80px);
  background-color: currentColor;
  opacity: 0.2;
}

@media (max-width: 768px) {
  .mxd-footer__brand {
    padding: clamp(1.5rem, 8vw, 2.5rem) 0;
  }

  .mxd-footer__brand-shell {
    gap: clamp(0.75rem, 4vw, 1.5rem);
  }

  .mxd-footer__brand-shell::before,
  .mxd-footer__brand-shell::after {
    display: none;
  }
}
