:root {
  --mkl-color-primary: #0f2742;
  --mkl-color-primary-deep: #001227;
  --mkl-color-secondary: #1155cc;
  --mkl-color-surface: #f7f9ff;
  --mkl-color-surface-muted: #f1f4f9;
  --mkl-color-border: #c4c6ce;
  --mkl-color-text: #181c20;
  --mkl-color-muted: #44474d;
  --mkl-container: 1200px;
  --mkl-gutter: 32px;
  --mkl-section-y: 100px;
  --mkl-font: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--mkl-font);
  font-size: 16px;
  line-height: 1.625;
  color: var(--mkl-color-text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.skip-link,
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  top: 12px;
  left: 12px;
  z-index: 1000;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  color: #fff;
  background: var(--mkl-color-primary);
}

.site-main {
  min-height: 50vh;
}

.placeholder-template,
.blog-template {
  max-width: var(--mkl-container);
  margin: 0 auto;
  padding: calc(var(--mkl-section-y) + 80px) var(--mkl-gutter) var(--mkl-section-y);
}

.placeholder-template__content {
  max-width: 720px;
}

.placeholder-template h1,
.blog-template h1 {
  margin: 0 0 24px;
  color: var(--mkl-color-primary);
  font-size: 40px;
  line-height: 1.2;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  text-decoration: none;
  font-weight: 700;
}

.button--primary {
  color: #fff;
  background: var(--mkl-color-primary);
}

@media (max-width: 767px) {
  :root {
    --mkl-gutter: 20px;
    --mkl-section-y: 60px;
  }

  .placeholder-template h1,
  .blog-template h1 {
    font-size: 32px;
  }
}
