/* Minimal shell for proxy-served BARE_HTML CMS pages (no Next.js runtime). */

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

body.cms-bare-document {
  margin: 0;
  min-height: 100dvh;
  font-family: Roboto, "Open Sans", system-ui, sans-serif;
  background: #fff;
  color: #212b36;
}

.cms-page-shell--bare {
  min-height: 100dvh;
  background: #fff;
}

.cms-page {
  margin: 0 auto;
  max-width: 100%;
  padding: 0;
}

.cms-content {
  color: inherit;
  font-size: 14px;
  line-height: 1.65;
  overflow-wrap: break-word;
}

.cms-content img,
.cms-content video,
.cms-content iframe {
  max-width: 100%;
  height: auto;
}

.cms-content table {
  width: 100%;
  border-collapse: collapse;
}

.cms-content table td,
.cms-content table th {
  border: 1px solid #e5e5e5;
  padding: 8px 10px;
  vertical-align: top;
}

.cms-content a {
  color: #d91605;
}