/*
Theme Name: Kalenastudios
Theme URI: https://kalenastudios.com/
Author: Denis Jungkind
Description: WordPress theme that renders the exported Kalenastudios HTML pages as native WordPress pages.
Version: 1.0.0
Requires at least: 6.4
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: kalenastudios
*/

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: #111111;
  background: #ffffff;
  font-family: "DM Sans", system-ui, sans-serif;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body.kalena-page {
  position: relative;
  overflow-x: hidden;
}

body.kalena-page img,
body.kalena-page video,
body.kalena-page iframe,
body.kalena-page canvas,
body.kalena-page svg {
  max-width: 100%;
}

.kalena-default {
  max-width: 880px;
  margin: 0 auto;
  padding: 96px 24px;
}

.kalena-default__title {
  margin: 0 0 20px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
}

@media (max-width: 767px) {
  html,
  body,
  body.kalena-page {
    overflow-x: clip;
  }

  body.kalena-page > * {
    max-width: 100%;
  }
}