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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  background: #fff;
  color: #0d1723;

  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Arial,
    sans-serif;

  font-size: 16px;
  line-height: 1.6;
}

body.clutch-nav-open {
  overflow: hidden;
}

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

a {
  color: #155eef;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

.clutch-page-rail {
  width: min(calc(100% - 64px), 1230px);
  margin-inline: auto;
  padding: 64px 0 100px;
}

.clutch-reading-rail {
  width: min(calc(100% - 64px), 820px);
  margin-inline: auto;
  padding: 72px 0 100px;
}

.clutch-entry-content > :first-child {
  margin-top: 0;
}

.clutch-entry-content h1,
.clutch-entry-content h2,
.clutch-entry-content h3,
.clutch-article-header h1 {
  color: #0d1723;
  line-height: 1.08;
}

.clutch-entry-content h1 {
  font-size: clamp(40px, 5vw, 64px);
}

.clutch-entry-content h2 {
  margin-top: 42px;
  font-size: 30px;
}

.clutch-entry-content h3 {
  margin-top: 32px;
  font-size: 22px;
}

.clutch-entry-content p {
  max-width: 900px;
}

.clutch-index-entry {
  padding: 28px 0;
  border-bottom: 1px solid #dde3e8;
}

.clutch-index-entry h2 {
  margin: 0 0 10px;
}

.clutch-index-entry h2 a {
  color: #0d1723;
  text-decoration: none;
}

.clutch-eyebrow {
  color: #155eef;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
}

.clutch-outline-button {
  display: inline-flex;
  margin-top: 22px;
  padding: 11px 15px;

  border: 1.5px solid #155eef;
  border-radius: 4px;

  color: #155eef;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-decoration: none;
}

@media (max-width: 959px) {
  .clutch-page-rail,
  .clutch-reading-rail {
    width: calc(100% - 36px);
    padding: 48px 0 70px;
  }
}

/* HOMEPAGE RAIL ALIGNMENT V1
   Header and homepage body share the same 1230px / 32px rail.
*/

.clutch-front-page .clutch-wrap {
  width: min(calc(100% - 64px), 1230px) !important;
  max-width: 1230px !important;
  margin-inline: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

@media (max-width: 959px) {
  .clutch-front-page .clutch-wrap {
    width: calc(100% - 36px) !important;
  }
}
