:root {
  color-scheme: dark;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  background: #000;
  color: #fff;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background: #000;
  color: #fff;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.page {
  width: min(calc(100% - 80px), 980px);
  min-height: 100vh;
  margin: 0 auto;
  padding: clamp(42px, 8vw, 82px) 0;
}

.blog-name {
  max-width: 860px;
  margin: 0 auto;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 800;
  line-height: 1.15;
}

.post {
  max-width: 860px;
  margin: clamp(64px, 11vw, 120px) auto 0;
}

.post + .post {
  margin-top: clamp(96px, 14vw, 160px);
}

h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(2.1rem, 6vw, 4.7rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

time {
  display: block;
  margin-top: 14px;
  color: rgb(255 255 255 / 50%);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
}

.post p,
.post ol {
  max-width: 760px;
  margin: 0;
  font-size: clamp(1.08rem, 2.2vw, 1.5rem);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0;
}

.post ol {
  padding-left: 1.35em;
}

.post li + li {
  margin-top: 0.35em;
}

.post em {
  color: rgb(255 255 255 / 50%);
}

.post-image {
  width: min(100%, 440px);
  margin: clamp(44px, 7vw, 64px) auto 0;
}

.post-image img {
  display: block;
  width: 100%;
  height: auto;
}

.post-image figcaption {
  margin-top: 12px;
  color: rgb(255 255 255 / 50%);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.post-intro {
  padding-top: clamp(36px, 6vw, 52px);
}

.post p + p,
.post p + ol,
.post ol + p {
  margin-top: 1.35em;
}

@media (max-width: 360px) {
  .page {
    width: calc(100% - 48px);
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 2.55rem;
  }

  .post p,
  .post ol {
    font-size: 1.18rem;
  }
}
