html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

#mc-widget-hub-error {
  display: none;
  box-sizing: border-box;
  min-height: 100%;
  padding: 32px 24px;
  background: #ffffff;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: #1e2d52;
  align-items: center;
  justify-content: center;
}

#mc-widget-hub-error[data-visible="true"] {
  display: flex;
}

.mc-error {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vw, 72px);
  width: 100%;
  max-width: 1040px;
}

.mc-error__art {
  flex: 0 0 auto;
  width: min(38vw, 340px);
  height: auto;
}

.mc-error__text {
  text-align: left;
}

.mc-error__title {
  margin: 0;
  font-size: clamp(48px, 9vw, 112px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
}

.mc-error__message {
  margin: 0.35em 0 0;
  font-size: clamp(19px, 3.6vw, 42px);
  font-weight: 400;
  line-height: 1.25;
}

@media (max-width: 720px) {
  .mc-error {
    flex-direction: column;
    gap: 24px;
  }

  .mc-error__art {
    width: min(62vw, 260px);
  }

  .mc-error__text {
    text-align: center;
  }
}
