/*
 * Theme base styles. The visual design is fully driven by plasmic.css
 * (ported from the production Next.js build), so this file only keeps
 * neutral helpers that must not override Plasmic typography or colors.
 */

*,
:before,
:after {
  box-sizing: border-box;
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
}

iframe {
  max-width: 100%;
}

input {
  outline: none;
}

textarea:focus-visible {
  outline: 0;
}

button {
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px;
}

body * {
  white-space: normal;
}


